From 8dc9a9cd910cdfd096b40995cf56c36fd73bdc53 Mon Sep 17 00:00:00 2001 From: Ed Welch Date: Thu, 4 Jun 2020 09:09:11 -0400 Subject: [PATCH] docs: fix config error for new metrics in docs (#2163) --- docs/clients/promtail/stages/metrics.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/clients/promtail/stages/metrics.md b/docs/clients/promtail/stages/metrics.md index 380be83390..f48b1f9eeb 100644 --- a/docs/clients/promtail/stages/metrics.md +++ b/docs/clients/promtail/stages/metrics.md @@ -141,16 +141,16 @@ config: type: Counter description: "total number of log lines" prefix: my_promtail_custom_ - match_all: true config: + match_all: true action: inc log_bytes_total: type: Counter description: "total bytes of log lines" prefix: my_promtail_custom_ - match_all: true - count_entry_bytes: true config: + match_all: true + count_entry_bytes: true action: add ```