Skip to content

Commit 275f7e7

Browse files
authored
Log recoverable remote write errors as warnings (prometheus#8412)
Signed-off-by: Chris Marchbanks <[email protected]>
1 parent fc8004e commit 275f7e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

storage/remote/queue_manager.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1064,7 +1064,7 @@ func sendWriteRequestWithBackoff(ctx context.Context, cfg config.QueueConfig, s
10641064

10651065
// If we make it this far, we've encountered a recoverable error and will retry.
10661066
onRetry()
1067-
level.Debug(l).Log("msg", "failed to send batch, retrying", "err", err)
1067+
level.Warn(l).Log("msg", "Failed to send batch, retrying", "err", err)
10681068

10691069
time.Sleep(time.Duration(backoff))
10701070
backoff = backoff * 2

0 commit comments

Comments
 (0)