Add dedup processor (#6792)

This commit is contained in:
igomura
2020-03-17 15:53:03 -07:00
committed by GitHub
parent f6ea2598e5
commit 0038205266
4 changed files with 277 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
# Dedup Processor Plugin
If a metric sends the same value over successive intervals, suppress sending
the same value to the TSD until this many seconds have elapsed. This helps
graphs over narrow time ranges still see timeseries with suppressed datapoints.
This feature can be used to reduce traffic when metric's value does not change over
time while maintain proper precision when value gets changed rapidly
### Configuration
```toml
[[processors.dedup]]
## Maximum time to suppress output
dedup_interval = "600s"
```