Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Elliott <[email protected]>
  • Loading branch information
joe-elliott committed Nov 19, 2024
1 parent 2117185 commit f863eda
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions pkg/tempopb/pool/pool.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,11 @@ import (
"github.com/prometheus/client_golang/prometheus/promauto"
)

var (
metricAllocOutPool = promauto.NewCounter(prometheus.CounterOpts{
Namespace: "tempo",
Name: "ingester_prealloc_miss_bytes_total",
Help: "The total number of alloc'ed bytes that missed the sync pools.",
})
)
var metricAllocOutPool = promauto.NewCounter(prometheus.CounterOpts{
Namespace: "tempo",
Name: "ingester_prealloc_miss_bytes_total",
Help: "The total number of alloc'ed bytes that missed the sync pools.",
})

// Pool is a linearly bucketed pool for variably sized byte slices.
type Pool struct {
Expand Down

0 comments on commit f863eda

Please sign in to comment.