diff --git a/CHANGELOG.md b/CHANGELOG.md index a254eb0a637..2c65f676b6a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,8 @@ release. ([#3943](https://github.com/open-telemetry/opentelemetry-specification/pull/3943)) - Add option to disable target info metric to Prometheus exporters. ([#3872](https://github.com/open-telemetry/opentelemetry-specification/pull/3872)) +- Add synchronous gauge entry to sum monotonic table. + ([#3977](https://github.com/open-telemetry/opentelemetry-specification/pull/3977)) ### Logs diff --git a/specification/metrics/sdk.md b/specification/metrics/sdk.md index 280c5ae8b4f..e25056a8891 100644 --- a/specification/metrics/sdk.md +++ b/specification/metrics/sdk.md @@ -560,13 +560,14 @@ The Sum Aggregation informs the SDK to collect data for the The monotonicity of the aggregation is determined by the instrument type: -| Instrument Kind | `SumType` | -| --- | --- | -| [Counter](./api.md#counter) | Monotonic | -| [UpDownCounter](./api.md#updowncounter) | Non-Monotonic | -| [Histogram](./api.md#histogram) | Monotonic | -| [Asynchronous Gauge](./api.md#asynchronous-gauge) | Non-Monotonic | -| [Asynchronous Counter](./api.md#asynchronous-counter) | Monotonic | +| Instrument Kind | `SumType` | +|-------------------------------------------------------------------|---------------| +| [Counter](./api.md#counter) | Monotonic | +| [UpDownCounter](./api.md#updowncounter) | Non-Monotonic | +| [Histogram](./api.md#histogram) | Monotonic | +| [Gauge](./api.md#gauge) | Non-Monotonic | +| [Asynchronous Gauge](./api.md#asynchronous-gauge) | Non-Monotonic | +| [Asynchronous Counter](./api.md#asynchronous-counter) | Monotonic | | [Asynchronous UpDownCounter](./api.md#asynchronous-updowncounter) | Non-Monotonic | This Aggregation does not have any configuration parameters.