Skip to content

Commit 17bda0b

Browse files
authored
Add synchronous gauge entry to sum monotonic table (#3977)
Related to #3893. The table has entries for all the instrument types but I forgot to add an entry for synchronous gauge in #3540. Fixing.
1 parent aafb77a commit 17bda0b

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@ release.
1717
([#3943](https://github.com/open-telemetry/opentelemetry-specification/pull/3943))
1818
- Add option to disable target info metric to Prometheus exporters.
1919
([#3872](https://github.com/open-telemetry/opentelemetry-specification/pull/3872))
20+
- Add synchronous gauge entry to sum monotonic table.
21+
([#3977](https://github.com/open-telemetry/opentelemetry-specification/pull/3977))
2022

2123
### Logs
2224

specification/metrics/sdk.md

+8-7
Original file line numberDiff line numberDiff line change
@@ -560,13 +560,14 @@ The Sum Aggregation informs the SDK to collect data for the
560560

561561
The monotonicity of the aggregation is determined by the instrument type:
562562

563-
| Instrument Kind | `SumType` |
564-
| --- | --- |
565-
| [Counter](./api.md#counter) | Monotonic |
566-
| [UpDownCounter](./api.md#updowncounter) | Non-Monotonic |
567-
| [Histogram](./api.md#histogram) | Monotonic |
568-
| [Asynchronous Gauge](./api.md#asynchronous-gauge) | Non-Monotonic |
569-
| [Asynchronous Counter](./api.md#asynchronous-counter) | Monotonic |
563+
| Instrument Kind | `SumType` |
564+
|-------------------------------------------------------------------|---------------|
565+
| [Counter](./api.md#counter) | Monotonic |
566+
| [UpDownCounter](./api.md#updowncounter) | Non-Monotonic |
567+
| [Histogram](./api.md#histogram) | Monotonic |
568+
| [Gauge](./api.md#gauge) | Non-Monotonic |
569+
| [Asynchronous Gauge](./api.md#asynchronous-gauge) | Non-Monotonic |
570+
| [Asynchronous Counter](./api.md#asynchronous-counter) | Monotonic |
570571
| [Asynchronous UpDownCounter](./api.md#asynchronous-updowncounter) | Non-Monotonic |
571572

572573
This Aggregation does not have any configuration parameters.

0 commit comments

Comments
 (0)