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

[exporter/datadogexporter] Correct default value for send_count_sum_metrics #6130

Merged
Show file tree
Hide file tree
Changes from all 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
2 changes: 1 addition & 1 deletion exporter/datadogexporter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,4 +98,4 @@ There are a number of optional settings for configuring how to send your metrics
| `delta_ttl` | Maximum number of seconds values from cumulative monotonic metrics are kept in memory. | 3600 |
| `report_quantiles` | Whether to report quantile values for summary type metrics. | `true` |
| `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` |
| `histograms::send_count_sum_metrics` | Whether to report sum and count for histograms as separate metrics. | `true` |
| `histograms::send_count_sum_metrics` | Whether to report sum and count for histograms as separate metrics. | `false` |
4 changes: 2 additions & 2 deletions exporter/datadogexporter/example/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -108,10 +108,10 @@ exporters:
#
# mode: distributions

## @param send_count_sum_metrics - boolean - optional - default: true
## @param send_count_sum_metrics - boolean - optional - default: false
## Whether to report sum and count as separate histogram metrics.
#
# send_count_sum_metrics: true
# send_count_sum_metrics: false

## @param traces - custom object - optional
## Trace exporter specific configuration.
Expand Down