You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
* [exporter/datadog] Add `metrics::summaries::mode` setting; deprecate `metrics::report_quantiles`
* Add changelog entry
* Bump version of deprecation and removal
This won't make it into v0.48.0, so I am bumping to v0.49.0s
* Fix changelog
* Apply suggestions from code review
Co-authored-by: Kylian Serrania <kylian.serrania@datadoghq.com>
* Fix changelog after merge
Co-authored-by: Juraci Paixão Kröhling <juraci@kroehling.de>
Co-authored-by: Kylian Serrania <kylian.serrania@datadoghq.com>
Copy file name to clipboardExpand all lines: CHANGELOG.md
+2Lines changed: 2 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,7 @@
12
12
### 🚩 Deprecations 🚩
13
13
14
14
-`cumulativetodeltaprocessor`: Deprecated `metrics` configuration option in favor of `include` and `exclude` (#8952)
15
+
-`datadogexporter`: Deprecate `metrics::report_quantiles` in favor of `metrics::summaries::mode` (#8846)
15
16
16
17
### 🚀 New components 🚀
17
18
@@ -28,6 +29,7 @@
28
29
-`cmd/mdatagen`: Update generated functions to have simple parse function to handle string parsing consistently and limit code duplication across receivers (#7574)
29
30
-`attributesprocessor`: Support filter by severity (#9132)
30
31
-`processor/transform`: Add transformation of logs (#9368)
32
+
-`datadogexporter`: Add `metrics::summaries::mode` to specify export mode for summaries (#8846)
Copy file name to clipboardExpand all lines: exporter/datadogexporter/README.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -105,6 +105,6 @@ There are a number of optional settings for configuring how to send your metrics
105
105
|-|-|-|
106
106
| `send_monotonic_counter` | Cumulative monotonic metrics are sent as deltas between successive measurements. Disable this flag to send get the raw, monotonically increasing value. | `true` |
107
107
| `delta_ttl` | Maximum number of seconds values from cumulative monotonic metrics are kept in memory. | 3600 |
108
-
| `report_quantiles` | Whether to report quantile values for summary type metrics. | `true` |
108
+
| `summaries::mode` | Mode for summaries. Valid values are `noquantiles` (no quantiles metrics) and `gauges` (one metric per quantile). | `gauges` |
109
109
| `histograms::mode` | Mode for histograms. Valid values are `nobuckets` (no bucket metrics), `counters` (one metric per bucket) and `distributions` (send as Datadog distributions, recommended). | `distributions` |
110
110
| `histograms::send_count_sum_metrics` | Whether to report sum and count for histograms as separate metrics. | `false` |
0 commit comments