From 749e825020f8cf630a845b936628c57312c6a639 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Tue, 26 Jul 2022 20:40:19 +0300 Subject: [PATCH] lib/pushmetrics: `make fmt` --- lib/pushmetrics/pushmetrics.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pushmetrics/pushmetrics.go b/lib/pushmetrics/pushmetrics.go index 4a95aa630..8b533db84 100644 --- a/lib/pushmetrics/pushmetrics.go +++ b/lib/pushmetrics/pushmetrics.go @@ -14,7 +14,7 @@ import ( var ( pushURL = flagutil.NewArray("pushmetrics.url", "Optional URL to push metrics exposed at /metrics page. See https://docs.victoriametrics.com/#push-metrics . "+ "By default metrics exposed at /metrics page aren't pushed to any remote storage") - pushInterval = flag.Duration("pushmetrics.interval", 10*time.Second, "Interval for pushing metrics to -pushmetrics.url") + pushInterval = flag.Duration("pushmetrics.interval", 10*time.Second, "Interval for pushing metrics to -pushmetrics.url") pushExtraLabel = flagutil.NewArray("pushmetrics.extraLabel", "Optional labels to add to metrics pushed to -pushmetrics.url . "+ `For example, -pushmetrics.extraLabel='instance="foo"' adds instance="foo" label to all the metrics pushed to -pushmetrics.url`) )