PHP code example of shopware / opentelemetry
1. Go to this page and download the library: Download shopware/opentelemetry library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
shopware / opentelemetry example snippets
use Shopware\Core\Profiling\Profiler;
$value = Profiler::trace('<name>', function () {
return $myFunction();
});
bash
OTEL_PHP_DISABLED_INSTRUMENTATIONS=shopware
bash
OTEL_SERVICE_NAME=shopware
OTEL_PHP_AUTOLOAD_ENABLED=true
OTEL_METRICS_EXPORTER=otlp
OTEL_EXPORTER_OTLP_PROTOCOL=grpc
OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317
OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE=delta