Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adding additional PHP no code example #5747

Draft
wants to merge 3 commits into
base: main
Choose a base branch
from
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .cspell.yml
Original file line number Diff line number Diff line change
@@ -56,3 +56,8 @@ dictionaries:
- companies
words: # Valid words across all locales
- htmltest
- nyholm
- diactoros
- pecl
- excimer
- phpbox
3 changes: 3 additions & 0 deletions content/en/docs/zero-code/php.md
Original file line number Diff line number Diff line change
@@ -267,3 +267,6 @@ to collect custom telemetry data.

For more examples, see
[opentelemetry-php-contrib/examples](https://github.com/open-telemetry/opentelemetry-php-contrib/tree/main/examples).

A full working example of this can be found
[here](/content/en/docs/zero-code/php)
1 change: 1 addition & 0 deletions content/en/docs/zero-code/php/build.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
docker build -t phpbox -f dockerfile .
14 changes: 14 additions & 0 deletions content/en/docs/zero-code/php/composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"require": {
"slim/slim": "4.14",
"slim/psr7": "^1.7",
"nyholm/psr7": "^1.8",
"nyholm/psr7-server": "^1.1",
"laminas/laminas-diactoros": "^3.5",
"open-telemetry/sdk": "^1.1",
"open-telemetry/opentelemetry-auto-slim": "^1.0",
"open-telemetry/opentelemetry-auto-psr18": "^1.0",
"open-telemetry/exporter-otlp": "^1.1",
"open-telemetry/transport-grpc": "^1.1"
}
}
2,169 changes: 2,169 additions & 0 deletions content/en/docs/zero-code/php/composer.lock

Large diffs are not rendered by default.

7 changes: 7 additions & 0 deletions content/en/docs/zero-code/php/dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
FROM --platform=linux/amd64 php:8.3.13-alpine3.20
RUN apk add unzip git curl autoconf gcc g++ make linux-headers zlib-dev file
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
RUN pecl install excimer
RUN pecl install opentelemetry && docker-php-ext-enable opentelemetry
RUN pecl install grpc && docker-php-ext-enable grpc
RUN composer require slim/slim:4.14 slim/psr7 nyholm/psr7 nyholm/psr7-server laminas/laminas-diactoros open-telemetry/sdk open-telemetry/opentelemetry-auto-slim open-telemetry/opentelemetry-auto-psr18 open-telemetry/exporter-otlp open-telemetry/transport-grpc
15 changes: 15 additions & 0 deletions content/en/docs/zero-code/php/index.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
<?php
use Psr\Http\Message\ResponseInterface as Response;
use Psr\Http\Message\ServerRequestInterface as Request;
use Slim\Factory\AppFactory;

require __DIR__ . '/vendor/autoload.php';

$app = AppFactory::create();

$app->get('/', function (Request $request, Response $response, $args) {
$response->getBody()->write("Hello world!");
return $response;
});

$app->run();
4 changes: 4 additions & 0 deletions content/en/docs/zero-code/php/start.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
docker run --rm -d -p 4317:4317 -p 16686:16686 --network host jaegertracing/all-in-one:latest
docker run --rm -v ".:/app" -w "/app" --network host phpbox sh -c "composer require slim/slim:4.14 slim/psr7 nyholm/psr7 nyholm/psr7-server laminas/laminas-diactoros open-telemetry/sdk open-telemetry/opentelemetry-auto-slim open-telemetry/opentelemetry-auto-psr18 open-telemetry/exporter-otlp open-telemetry/transport-grpc"
docker run --rm -p "8000:8000" -v ".:/app" -w "/app" --network host phpbox sh -c "env OTEL_PHP_AUTOLOAD_ENABLED=true OTEL_SERVICE_NAME=app OTEL_TRACES_EXPORTER=otlp OTEL_EXPORTER_OTLP_PROTOCOL=grpc OTEL_EXPORTER_OTLP_ENDPOINT=http://0.0.0.0:4317 OTEL_PROPAGATORS=baggage,tracecontext OTEL_LOGS_LEVEL=debug php -S 0.0.0.0:8000"