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

Add send_distribution_sums_as_monotonic to openmetrics config spec #6247

Merged
merged 2 commits into from
Apr 3, 2020
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
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@
- name: send_distribution_buckets
description: |
Set `send_distribution_buckets` to `true` to send histograms as Datadog distribution metrics.

Learn more about distribution metrics: https://docs.datadoghq.com/developers/metrics/distributions/
value:
example: false
Expand All @@ -103,6 +103,13 @@
value:
example: false
type: boolean
- name: send_distribution_sums_as_monotonic
description: |
Set send_distribution_sums_as_monotonic to true to send histograms & summary
sum as monotonic counters (instead of gauges).
value:
example: false
type: boolean
- name: exclude_labels
description: List of labels to be excluded
value:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ instances:
## Set send_distribution_sums_as_monotonic to true to send histograms & summary
## sum as monotonic counters (instead of gauges).
#
# send_distribution_sums_as_monotonic: true
# send_distribution_sums_as_monotonic: false
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

See:

default_instance.get('send_distribution_sums_as_monotonic', False),


## @param exclude_labels - list of strings - optional
## List of labels to be excluded
Expand Down