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

Make periodic exporting MetricReader env vars stable #2658

Merged
merged 8 commits into from
Jul 15, 2022
Merged
Show file tree
Hide file tree
Changes from 7 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
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,10 @@ release.

### SDK Configuration

- Mark `OTEL_METRIC_EXPORT_INTERVAL`, `OTEL_METRIC_EXPORT_TIMEOUT`
environment variables as Stable
([#2658](https://github.com/open-telemetry/opentelemetry-specification/pull/2658))

### Telemetry Schemas

### Common
Expand Down
2 changes: 2 additions & 0 deletions spec-compliance-matrix.md
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,8 @@ Note: Support for environment variables is optional.
|OTEL_TRACES_SAMPLER_ARG | + | + | | + | + | + | | - | - | - | |
|OTEL_ATTRIBUTE_VALUE_LENGTH_LIMIT | + | - | | + | + | - | | | | - | |
|OTEL_ATTRIBUTE_COUNT_LIMIT | + | - | | + | + | - | | | | - | |
|OTEL_METRIC_EXPORT_INTERVAL | - | + | | | | | + | | | - | |
|OTEL_METRIC_EXPORT_TIMEOUT | - | - | | | | | + | | | - | |
|OTEL_METRICS_EXEMPLAR_FILTER | - | + | | | | | | | | - | |
|OTEL_EXPORTER_OTLP_METRICS_TEMPORALITY_PREFERENCE | - | + | | + | | | | | | - | |

Expand Down
7 changes: 6 additions & 1 deletion specification/sdk-environment-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ Known values for `OTEL_LOGS_EXPORTER` are:

## Metrics SDK Configuration

**Status**: [Experimental](document-status.md)
**Status**: [Mixed](document-status.md)

| Name | Description | Default | Notes |
|-----------------|---------|-------------|---------|
Expand All @@ -251,6 +251,11 @@ Known values for `OTEL_METRICS_EXEMPLAR_FILTER` are:

### Periodic exporting MetricReader

**Status**: [Stable](document-status.md)

Environment variables specific for the push metrics exporters (OTLP, stdout, in-memory)
that use [periodic exporting MetricReader](metrics/sdk.md#periodic-exporting-metricreader).

| Name | Description | Default | Notes |
| ----------------------------- | ----------------------------------------------------------------------------- | ------- | ----- |
| `OTEL_METRIC_EXPORT_INTERVAL` | The time interval (in milliseconds) between the start of two export attempts. | 60000 | |
Expand Down