From 67977af9cea5a17aae018259422f63113e6044d2 Mon Sep 17 00:00:00 2001 From: Vi <1149443+mistodon@users.noreply.github.com> Date: Mon, 18 Jul 2022 16:51:12 +0100 Subject: [PATCH] Update README --- processor/cumulativetodeltaprocessor/README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/processor/cumulativetodeltaprocessor/README.md b/processor/cumulativetodeltaprocessor/README.md index 6807646066f1..c7ebee1231b4 100644 --- a/processor/cumulativetodeltaprocessor/README.md +++ b/processor/cumulativetodeltaprocessor/README.md @@ -9,7 +9,7 @@ ## Description -The cumulative to delta processor (`cumulativetodeltaprocessor`) converts monotonic, cumulative sum metrics to monotonic, delta sum metrics. Non-monotonic sums are excluded. +The cumulative to delta processor (`cumulativetodeltaprocessor`) converts monotonic, cumulative sum and histogram metrics to monotonic, delta metrics. Non-monotonic sums are excluded. ## Configuration @@ -31,7 +31,7 @@ processors: # processor name: cumulativetodelta cumulativetodelta: - # list the exact cumulative sum metrics to convert to delta + # list the exact cumulative sum or histogram metrics to convert to delta include: metrics: - @@ -47,8 +47,8 @@ processors: # processor name: cumulativetodelta cumulativetodelta: - # Convert cumulative sum metrics to delta - # if and only if 'metric' is in the name + # Convert cumulative sum or histogram metrics to delta + # if and only if 'metric' is in the name include: metrics: - "*metric*" @@ -60,8 +60,8 @@ processors: # processor name: cumulativetodelta cumulativetodelta: - # Convert cumulative sum metrics to delta - # if and only if 'metric' is not in the name + # Convert cumulative sum or histogram metrics to delta + # if and only if 'metric' is not in the name exclude: metrics: - "*metric*" @@ -73,7 +73,7 @@ processors: # processor name: cumulativetodelta cumulativetodelta: # If include/exclude are not specified - # convert all cumulative sum metrics to delta + # convert all cumulative sum or histogram metrics to delta ``` ## Warnings