From 0a87dcd41687f0faf04c621dcfd0ea7863172243 Mon Sep 17 00:00:00 2001 From: Brian Brazil Date: Mon, 25 Mar 2019 18:06:38 +0000 Subject: [PATCH] cmd: Warn rather than Info when retention time wraps (#5403) Signed-off-by: Brian Brazil --- cmd/prometheus/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/prometheus/main.go b/cmd/prometheus/main.go index 2d05ee444b..3c892c8a29 100644 --- a/cmd/prometheus/main.go +++ b/cmd/prometheus/main.go @@ -292,7 +292,7 @@ func main() { panic(err) } cfg.tsdb.RetentionDuration = y - level.Info(logger).Log("msg", "time retention value is too high. Limiting to: "+y.String()) + level.Warn(logger).Log("msg", "time retention value is too high. Limiting to: "+y.String()) } }