Skip to content

Commit

Permalink
Fix missing constant in 2.9.x
Browse files Browse the repository at this point in the history
  • Loading branch information
grobinson-grafana committed Jun 21, 2024
1 parent 273c8c9 commit 236480b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ingester/metrics.go
Original file line number Diff line number Diff line change
Expand Up @@ -231,7 +231,7 @@ func newIngesterMetrics(r prometheus.Registerer) *ingesterMetrics {
Buckets: prometheus.ExponentialBuckets(0.01, 4, 6),
}),
chunksFlushFailures: promauto.With(r).NewCounter(prometheus.CounterOpts{
Namespace: constants.Loki,
Namespace: "loki",
Name: "ingester_chunks_flush_failures_total",
Help: "Total number of flush failures.",
}),
Expand Down

0 comments on commit 236480b

Please sign in to comment.