From 267b58dc6abf4e5554a7b872ace9fa60e72057bf Mon Sep 17 00:00:00 2001 From: mmahacek Date: Mon, 28 Oct 2024 10:44:33 -0700 Subject: [PATCH] Doc: Update Micrometer notes --- docs/metrics.asciidoc | 1 + 1 file changed, 1 insertion(+) diff --git a/docs/metrics.asciidoc b/docs/metrics.asciidoc index 75f11c59f2..4a8e8a3943 100644 --- a/docs/metrics.asciidoc +++ b/docs/metrics.asciidoc @@ -461,6 +461,7 @@ For example, `DistributionSummary.builder("order").register(...).record(orderPri * When using `CountingMode.CUMULATIVE`, you can use TSVB's "Positive Rate" aggregation to convert the counter to a rate. But you have to remember to group by a combination of dimensions that uniquely identify the time series. This may be a combination of `host.name` and `service.name`, or the `kubernetes.pod.id`. +* Micrometer metrics can be disabled by using the <> setting. [float]