You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|`otel.service.name`| Specify logical service name. Takes precedence over `service.name` defined with `otel.resource.attributes`. |`unknown_service:java`|
147
-
|`otel.resource.attributes`| Specify resource attributes in the following format: `key1=val1,key2=val2,key3=val3`. ||
148
-
|`otel.experimental.resource.disabled-keys`| Specify resource attribute keys to filter. This option is experimental and subject to change or removal.||
149
-
|`otel.java.enabled.resource.providers`| Comma-separated list of `ResourceProvider` fully qualified class names to enable. **[1]** If unset, all resource providers are enabled. ||
150
-
|`otel.java.disabled.resource.providers`| Comma-separated list of `ResourceProvider` fully qualified class names to disable. **[1]**||
|`otel.service.name`| Specify logical service name. Takes precedence over `service.name` defined with `otel.resource.attributes`. |`unknown_service:java`|
147
+
|`otel.resource.attributes`| Specify resource attributes in the following format: `key1=val1,key2=val2,key3=val3`. ||
148
+
|`otel.resource.disabled-keys`| Specify resource attribute keys to filter. ||
149
+
|`otel.java.enabled.resource.providers`| Comma-separated list of `ResourceProvider` fully qualified class names to enable. **[1]** If unset, all resource providers are enabled. ||
150
+
|`otel.java.disabled.resource.providers`| Comma-separated list of `ResourceProvider` fully qualified class names to disable. **[1]**||
|`otel.traces.exporter`| Comma-separated list of span exporters. Known values include `otlp`, `zipkin`, `console`, `logging-otlp`, `none`. **[1]**|`otlp`|
266
-
|`otel.metrics.exporter`| Comma-separated list of metric exporters. Known values include `otlp`, `prometheus`, `none`. **[1]**|`otlp`|
267
-
|`otel.logs.exporter`| Comma-separated list of log record exporters. Known values include `otlp`, `console`, `logging-otlp`, `none`. **[1]**|`otlp`|
268
-
|`otel.java.experimental.exporter.memory_mode`| If `reusable_data`, enable reusable memory mode (on exporters which support it) to reduce allocations. Known values include `reusable_data`, `immutable_data`. This option is experimental and subject to change or removal. **[2]**|`immutable_data`|
|`otel.traces.exporter`| Comma-separated list of span exporters. Known values include `otlp`, `zipkin`, `console`, `logging-otlp`, `none`. **[1]**|`otlp`|
266
+
|`otel.metrics.exporter`| Comma-separated list of metric exporters. Known values include `otlp`, `prometheus`, `none`. **[1]**|`otlp`|
267
+
|`otel.logs.exporter`| Comma-separated list of log record exporters. Known values include `otlp`, `console`, `logging-otlp`, `none`. **[1]**|`otlp`|
268
+
|`otel.java.exporter.memory_mode`| If `reusable_data`, enable reusable memory mode (on exporters which support it) to reduce allocations. Known values include `reusable_data`, `immutable_data`. **[2]**|`reusable_data`|
269
269
270
270
**[1]**: Known exporters and artifacts (see
271
271
[span exporter](../sdk/#spanexporter),
@@ -277,10 +277,12 @@ Properties for setting exporters:
`OtlpHttp{Signal}Exporter`, `OtlpStdout{Signal}Exporter`, and
284
286
`PrometheusHttpServer`.
285
287
286
288
Properties for `otlp` span, metric, and log exporters:
@@ -306,7 +308,7 @@ Properties for `otlp` span, metric, and log exporters:
306
308
|`otel.exporter.otlp.{signal}.timeout`| The maximum waiting time, in milliseconds, allowed to send each OTLP {signal} batch. |`10000`|
307
309
|`otel.exporter.otlp.metrics.temporality.preference`| The preferred output aggregation temporality. Options include `DELTA`, `LOWMEMORY`, and `CUMULATIVE`. If `CUMULATIVE`, all instruments will have cumulative temporality. If `DELTA`, counter (sync and async) and histograms will be delta, up down counters (sync and async) will be cumulative. If `LOWMEMORY`, sync counter and histograms will be delta, async counter and up down counters (sync and async) will be cumulative. |`CUMULATIVE`|
308
310
|`otel.exporter.otlp.metrics.default.histogram.aggregation`| The preferred default histogram aggregation. Options include `BASE2_EXPONENTIAL_BUCKET_HISTOGRAM` and `EXPLICIT_BUCKET_HISTOGRAM`. |`EXPLICIT_BUCKET_HISTOGRAM`|
309
-
|`otel.experimental.exporter.otlp.retry.enabled`| If `true`, retry on when transient errors occur. **[2]**|`false`|
311
+
|`otel.java.exporter.otlp.retry.enabled`| If `true`, retry on when transient errors occur. **[2]**|`true`|
310
312
311
313
**NOTE:** The text placeholder `{signal}` refers to the supported
312
314
[OpenTelemetry Signal](/docs/concepts/signals/). Valid values include `traces`,
0 commit comments