7 lines
308 B
PHP
7 lines
308 B
PHP
<?php
|
|
// Configuration for Simple Otel plugin
|
|
// Set default values using environment variables or fallback to manual configuration
|
|
$otel_service_name = getenv('OTEL_SERVICE_NAME') ?: 'default-service-name';
|
|
$otel_exporter_otlp_endpoint = getenv('OTEL_EXPORTER_OTLP_ENDPOINT') ?: 'http://localhost:4317';
|
|
?>
|