diff --git a/pkg/ingester-rf1/flush.go b/pkg/ingester-rf1/flush.go index f577d0b8851f..d96c54b9d75d 100644 --- a/pkg/ingester-rf1/flush.go +++ b/pkg/ingester-rf1/flush.go @@ -21,21 +21,6 @@ import ( util_log "github.com/grafana/loki/v3/pkg/util/log" ) -const ( - // Backoff for retrying 'immediate' flushes. Only counts for queue - // position, not wallclock time. - flushBackoff = 1 * time.Second - - nameLabel = "__name__" - logsValue = "logs" - - flushReasonIdle = "idle" - flushReasonMaxAge = "max_age" - flushReasonForced = "forced" - flushReasonFull = "full" - flushReasonSynced = "synced" -) - // Note: this is called both during the WAL replay (zero or more times) // and then after replay as well. func (i *Ingester) InitFlushQueues() {