From a9822dfc3e524aeb172bb89f4bddf63da84b6011 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Villemain?= Date: Thu, 12 Dec 2024 17:52:44 +0100 Subject: [PATCH] Update metrics.md - fix typo on Gauge (a-synchronous) Description of Gauge was misleading due to a typo between asynchronous and synchronous. --- content/en/docs/concepts/signals/metrics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/en/docs/concepts/signals/metrics.md b/content/en/docs/concepts/signals/metrics.md index 62569d57f920..98dddec38d5a 100644 --- a/content/en/docs/concepts/signals/metrics.md +++ b/content/en/docs/concepts/signals/metrics.md @@ -68,7 +68,7 @@ The instrument kind is one of the following: continuous changes, but only to the aggregated value (e.g., current queue size). - **Gauge**: Measures a current value at the time it is read. An example would - be the fuel gauge in a vehicle. Gauges are asynchronous. + be the fuel gauge in a vehicle. Gauges are synchronous. - **Asynchronous Gauge**: Same as the **Gauge**, but is collected once for each export. Could be used if you don't have access to the continuous changes, but only to the aggregated value.