From f82803ae10ccd0c31292151486418328362b4bd4 Mon Sep 17 00:00:00 2001 From: Csaba Kiraly Date: Mon, 23 Feb 2026 10:32:53 +0100 Subject: [PATCH] metrics: fix usage string Signed-off-by: Csaba Kiraly --- cmd/utils/flags.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/utils/flags.go b/cmd/utils/flags.go index d6e8112bee..7c9abd4dbe 100644 --- a/cmd/utils/flags.go +++ b/cmd/utils/flags.go @@ -1018,7 +1018,7 @@ Please note that --` + MetricsHTTPFlag.Name + ` must be set to start the server. MetricsInfluxDBIntervalFlag = &cli.DurationFlag{ Name: "metrics.influxdb.interval", - Usage: "Interval in seconds between metrics reports to InfluxDB", + Usage: "Interval between metrics reports to InfluxDB (with time unit, e.g. 10s)", Value: metrics.DefaultConfig.InfluxDBInterval, Category: flags.MetricsCategory, }