From d39ba2536e1872494bee01f622ac5a3e91d159e8 Mon Sep 17 00:00:00 2001 From: Aliaksandr Valialkin Date: Fri, 7 Oct 2022 01:16:52 +0300 Subject: [PATCH] app/victoria-metrics: flagutil.NewArray -> flagutil.NewArrayString after c1fa9828b3de1a0fb9fd0e5797a6975b8cdba648 --- app/victoria-metrics/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/victoria-metrics/main.go b/app/victoria-metrics/main.go index 1ced1e53d..461d3b8c9 100644 --- a/app/victoria-metrics/main.go +++ b/app/victoria-metrics/main.go @@ -29,7 +29,7 @@ var ( "equal to -dedup.minScrapeInterval > 0. See https://docs.victoriametrics.com/#deduplication and https://docs.victoriametrics.com/#downsampling") dryRun = flag.Bool("dryRun", false, "Whether to check only -promscrape.config and then exit. "+ "Unknown config entries aren't allowed in -promscrape.config by default. This can be changed with -promscrape.config.strictParse=false command-line flag") - downsamplingPeriods = flagutil.NewArray("downsampling.period", "Comma-separated downsampling periods in the format 'offset:period'. For example, '30d:10m' instructs "+ + downsamplingPeriods = flagutil.NewArrayString("downsampling.period", "Comma-separated downsampling periods in the format 'offset:period'. For example, '30d:10m' instructs "+ "to leave a single sample per 10 minutes for samples older than 30 days. See https://docs.victoriametrics.com/#downsampling for details") )