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

Mark cardinality limits as Stable #4222

Merged
merged 7 commits into from
Oct 7, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ release.
([#4188](https:/open-telemetry/opentelemetry-specification/pull/4188))
- Clarify that `Enabled` only applies to synchronous instruments.
([#4211](https:/open-telemetry/opentelemetry-specification/pull/4211))
- Mark cardinality limits as stable.
([#TBD](https:/open-telemetry/opentelemetry-specification/pull/TBD))

### Logs

Expand Down
5 changes: 2 additions & 3 deletions specification/metrics/sdk.md
Original file line number Diff line number Diff line change
Expand Up @@ -403,8 +403,7 @@ The SDK MUST accept the following stream configuration parameters:
If the user does not provide an `exemplar_reservoir` value, the
`MeterProvider` MUST apply a [default exemplar
reservoir](#exemplar-defaults).
* **Status**: [Development](../document-status.md) -
`aggregation_cardinality_limit`: A positive integer value defining the
* `aggregation_cardinality_limit`: A positive integer value defining the
maximum number of data points allowed to be emitted in a collection cycle by
a single instrument. See [cardinality limits](#cardinality-limits), below.

Expand Down Expand Up @@ -778,7 +777,7 @@ of metrics across successive collections.

### Cardinality limits

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

SDKs SHOULD support being configured with a cardinality limit. The number of
unique combinations of attributes is called cardinality. For a given metric, the
Expand Down
Loading