@@ -12,7 +12,7 @@ interface Variables
1212{
1313 /**
1414 * General SDK Configuration
15- * @see https://github.com/open-telemetry/opentelemetry-specification/blob/main /specification/sdk-environment-variables.md#general-sdk-configuration
15+ * @see https://github.com/open-telemetry/opentelemetry-specification/blob/v1.24.0 /specification/configuration /sdk-environment-variables.md#general-sdk-configuration
1616 */
1717 public const OTEL_RESOURCE_ATTRIBUTES = 'OTEL_RESOURCE_ATTRIBUTES ' ;
1818 public const OTEL_SERVICE_NAME = 'OTEL_SERVICE_NAME ' ;
@@ -23,35 +23,35 @@ interface Variables
2323 public const OTEL_SDK_DISABLED = 'OTEL_SDK_DISABLED ' ;
2424 /**
2525 * Batch Span Processor
26- * @see https://github.com/open-telemetry/opentelemetry-specification/blob/main /specification/sdk-environment-variables.md#batch-span-processor
26+ * @see https://github.com/open-telemetry/opentelemetry-specification/blob/v1.24.0 /specification/configuration /sdk-environment-variables.md#batch-span-processor
2727 */
2828 public const OTEL_BSP_SCHEDULE_DELAY = 'OTEL_BSP_SCHEDULE_DELAY ' ;
2929 public const OTEL_BSP_EXPORT_TIMEOUT = 'OTEL_BSP_EXPORT_TIMEOUT ' ;
3030 public const OTEL_BSP_MAX_QUEUE_SIZE = 'OTEL_BSP_MAX_QUEUE_SIZE ' ;
3131 public const OTEL_BSP_MAX_EXPORT_BATCH_SIZE = 'OTEL_BSP_MAX_EXPORT_BATCH_SIZE ' ;
3232 /**
3333 * Batch LogRecord Processor
34- * @see https://github.com/open-telemetry/opentelemetry-specification/blob/main /specification/configuration/sdk-environment-variables.md#batch-logrecord-processor
34+ * @see https://github.com/open-telemetry/opentelemetry-specification/blob/v1.24.0 /specification/configuration/sdk-environment-variables.md#batch-logrecord-processor
3535 */
3636 public const OTEL_BLRP_SCHEDULE_DELAY = 'OTEL_BLRP_SCHEDULE_DELAY ' ;
3737 public const OTEL_BLRP_EXPORT_TIMEOUT = 'OTEL_BLRP_EXPORT_TIMEOUT ' ;
3838 public const OTEL_BLRP_MAX_QUEUE_SIZE = 'OTEL_BLRP_MAX_QUEUE_SIZE ' ;
3939 public const OTEL_BLRP_MAX_EXPORT_BATCH_SIZE = 'OTEL_BLRP_MAX_EXPORT_BATCH_SIZE ' ;
4040 /**
4141 * Attribute Limits
42- * @see https://github.com/open-telemetry/opentelemetry-specification/blob/main /specification/sdk-environment-variables.md#attribute-limits
42+ * @see https://github.com/open-telemetry/opentelemetry-specification/blob/v1.24.0 /specification/configuration /sdk-environment-variables.md#attribute-limits
4343 */
4444 public const OTEL_ATTRIBUTE_VALUE_LENGTH_LIMIT = 'OTEL_ATTRIBUTE_VALUE_LENGTH_LIMIT ' ;
4545 public const OTEL_ATTRIBUTE_COUNT_LIMIT = 'OTEL_ATTRIBUTE_COUNT_LIMIT ' ;
4646 /**
4747 * LogRecord limits
48- * @see https://github.com/open-telemetry/opentelemetry-specification/blob/main /specification/sdk-environment-variables.md#logrecord-limits
48+ * @see https://github.com/open-telemetry/opentelemetry-specification/blob/v1.24.0 /specification/configuration /sdk-environment-variables.md#logrecord-limits
4949 */
5050 public const OTEL_LOGRECORD_ATTRIBUTE_VALUE_LENGTH_LIMIT = 'OTEL_LOGRECORD_ATTRIBUTE_VALUE_LENGTH_LIMIT ' ;
5151 public const OTEL_LOGRECORD_ATTRIBUTE_COUNT_LIMIT = 'OTEL_LOGRECORD_ATTRIBUTE_COUNT_LIMIT ' ;
5252 /**
5353 * Span Limits
54- * @see https://github.com/open-telemetry/opentelemetry-specification/blob/main /specification/sdk-environment-variables.md#span-limits-
54+ * @see https://github.com/open-telemetry/opentelemetry-specification/blob/v1.24.0 /specification/configuration/ sdk-environment-variables.md#span-limits
5555 */
5656 public const OTEL_SPAN_ATTRIBUTE_VALUE_LENGTH_LIMIT = 'OTEL_SPAN_ATTRIBUTE_VALUE_LENGTH_LIMIT ' ;
5757 public const OTEL_SPAN_ATTRIBUTE_COUNT_LIMIT = 'OTEL_SPAN_ATTRIBUTE_COUNT_LIMIT ' ;
@@ -61,7 +61,7 @@ interface Variables
6161 public const OTEL_LINK_ATTRIBUTE_COUNT_LIMIT = 'OTEL_LINK_ATTRIBUTE_COUNT_LIMIT ' ;
6262 /**
6363 * OTLP Exporter
64- * @see https://github.com/open-telemetry/opentelemetry-specification/blob/main /specification/protocol/exporter.md#configuration-options
64+ * @see https://github.com/open-telemetry/opentelemetry-specification/blob/v1.24.0 /specification/protocol/exporter.md#configuration-options
6565 */
6666 // Endpoint
6767 public const OTEL_EXPORTER_OTLP_ENDPOINT = 'OTEL_EXPORTER_OTLP_ENDPOINT ' ;
@@ -100,27 +100,28 @@ interface Variables
100100 public const OTEL_EXPORTER_OTLP_LOGS_PROTOCOL = 'OTEL_EXPORTER_OTLP_LOGS_PROTOCOL ' ;
101101 /**
102102 * Zipkin Exporter
103- * @see https://github.com/open-telemetry/opentelemetry-specification/blob/main /specification/sdk-environment-variables.md#zipkin-exporter
103+ * @see https://github.com/open-telemetry/opentelemetry-specification/blob/v1.24.0 /specification/configuration /sdk-environment-variables.md#zipkin-exporter
104104 */
105105 public const OTEL_EXPORTER_ZIPKIN_ENDPOINT = 'OTEL_EXPORTER_ZIPKIN_ENDPOINT ' ;
106106 public const OTEL_EXPORTER_ZIPKIN_TIMEOUT = 'OTEL_EXPORTER_ZIPKIN_TIMEOUT ' ;
107107 public const OTEL_EXPORTER_ZIPKIN_PROTOCOL = 'OTEL_EXPORTER_ZIPKIN_PROTOCOL ' ;
108108 /**
109109 * Prometheus Exporter
110- * @see https://github.com/open-telemetry/opentelemetry-specification/blob/main /specification/sdk-environment-variables.md#prometheus-exporter
110+ * @see https://github.com/open-telemetry/opentelemetry-specification/blob/v1.24.0 /specification/configuration /sdk-environment-variables.md#prometheus-exporter
111111 */
112112 public const OTEL_EXPORTER_PROMETHEUS_HOST = 'OTEL_EXPORTER_PROMETHEUS_HOST ' ;
113113 public const OTEL_EXPORTER_PROMETHEUS_PORT = 'OTEL_EXPORTER_PROMETHEUS_PORT ' ;
114114 /**
115115 * Exporter Selection
116- * @see https://github.com/open-telemetry/opentelemetry-specification/blob/main /specification/sdk-environment-variables.md#exporter-selection
116+ * @see https://github.com/open-telemetry/opentelemetry-specification/blob/v1.24.0 /specification/configuration /sdk-environment-variables.md#exporter-selection
117117 */
118118 public const OTEL_TRACES_EXPORTER = 'OTEL_TRACES_EXPORTER ' ;
119119 public const OTEL_METRICS_EXPORTER = 'OTEL_METRICS_EXPORTER ' ;
120120 public const OTEL_LOGS_EXPORTER = 'OTEL_LOGS_EXPORTER ' ;
121121 /**
122122 * Metrics SDK Configuration
123- * @see https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/sdk-environment-variables.md#metrics-sdk-configuration
123+ * @see https://github.com/open-telemetry/opentelemetry-specification/blob/v1.24.0/specification/configuration/sdk-environment-variables.md#metrics-sdk-configuration
124+ * @see https://github.com/open-telemetry/opentelemetry-specification/blob/v1.24.0/specification/configuration/sdk-environment-variables.md#periodic-exporting-metricreader
124125 */
125126 public const OTEL_METRICS_EXEMPLAR_FILTER = 'OTEL_METRICS_EXEMPLAR_FILTER ' ;
126127 public const OTEL_METRIC_EXPORT_INTERVAL = 'OTEL_METRIC_EXPORT_INTERVAL ' ;
@@ -133,6 +134,7 @@ interface Variables
133134 */
134135 public const OTEL_PHP_TRACES_PROCESSOR = 'OTEL_PHP_TRACES_PROCESSOR ' ;
135136 public const OTEL_PHP_LOGS_PROCESSOR = 'OTEL_PHP_LOGS_PROCESSOR ' ;
137+ public const OTEL_PHP_LOG_DESTINATION = 'OTEL_PHP_LOG_DESTINATION ' ;
136138 public const OTEL_PHP_DETECTORS = 'OTEL_PHP_DETECTORS ' ;
137139 public const OTEL_PHP_AUTOLOAD_ENABLED = 'OTEL_PHP_AUTOLOAD_ENABLED ' ;
138140 public const OTEL_PHP_INTERNAL_METRICS_ENABLED = 'OTEL_PHP_INTERNAL_METRICS_ENABLED ' ; //whether the SDK should emit its own metrics
0 commit comments