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

Update accepted exporters in SDK configuration #5733

Merged
merged 4 commits into from
Dec 7, 2024
Merged
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
12 changes: 9 additions & 3 deletions content/en/docs/languages/sdk-configuration/general.md
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,8 @@ Accepted values for `OTEL_PROPAGATORS` are:

## `OTEL_TRACES_EXPORTER`

Specifies which exporter is used for traces.
Specifies which exporter is used for traces. Depending on the implementation it
may be a comma-separated list.

**Default value:** `"otlp"`

Expand All @@ -146,11 +147,13 @@ Accepted values for are:
- `"otlp"`: [OTLP][]
- `"jaeger"`: export in Jaeger data model
- `"zipkin"`: [Zipkin](https://zipkin.io/zipkin-api/)
- `"console"`: [Standard Output](/docs/specs/otel/trace/sdk_exporters/stdout/)
- `"none"`: No automatically configured exporter for traces.

## `OTEL_METRICS_EXPORTER`

Specifies which exporter is used for metrics.
Specifies which exporter is used for metrics. Depending on the implementation it
may be a comma-separated list.

**Default value:** `"otlp"`

Expand All @@ -163,11 +166,13 @@ Accepted values for `OTEL_METRICS_EXPORTER` are:
- `"otlp"`: [OTLP][]
- `"prometheus"`:
[Prometheus](https://github.com/prometheus/docs/blob/main/content/docs/instrumenting/exposition_formats.md)
- `"console"`: [Standard Output](/docs/specs/otel/metrics/sdk_exporters/stdout/)
- `"none"`: No automatically configured exporter for metrics.

## `OTEL_LOGS_EXPORTER`

Specifies which exporter is used for logs.
Specifies which exporter is used for logs. Depending on the implementation it
may be a comma-separated list.

**Default value:** `"otlp"`

Expand All @@ -178,6 +183,7 @@ Specifies which exporter is used for logs.
Accepted values for `OTEL_LOGS_EXPORTER` are:

- `"otlp"`: [OTLP][]
- `"console"`: [Standard Output](/docs/specs/otel/logs/sdk_exporters/stdout/)
- `"none"`: No automatically configured exporter for logs.

[otlp]: /docs/specs/otlp/
Loading