mirror of
https://github.com/prometheus/prometheus.git
synced 2024-12-25 13:44:05 -08:00
Fix typo in posting stats. (#6343)
Signed-off-by: Tim Bart <tbart@cloudflare.com>
This commit is contained in:
parent
e825282dd1
commit
2e77f3a52b
|
@ -96,12 +96,12 @@ func (p *MemPostings) Stats(label string) *PostingsStats {
|
|||
|
||||
metrics := &maxHeap{}
|
||||
labels := &maxHeap{}
|
||||
labelValueLenght := &maxHeap{}
|
||||
labelValueLength := &maxHeap{}
|
||||
labelValuePairs := &maxHeap{}
|
||||
|
||||
metrics.init(maxNumOfRecords)
|
||||
labels.init(maxNumOfRecords)
|
||||
labelValueLenght.init(maxNumOfRecords)
|
||||
labelValueLength.init(maxNumOfRecords)
|
||||
labelValuePairs.init(maxNumOfRecords)
|
||||
|
||||
for n, e := range p.m {
|
||||
|
@ -117,7 +117,7 @@ func (p *MemPostings) Stats(label string) *PostingsStats {
|
|||
labelValuePairs.push(Stat{Name: n + "=" + name, Count: uint64(len(values))})
|
||||
size += uint64(len(name))
|
||||
}
|
||||
labelValueLenght.push(Stat{Name: n, Count: size})
|
||||
labelValueLength.push(Stat{Name: n, Count: size})
|
||||
}
|
||||
|
||||
p.mtx.RUnlock()
|
||||
|
@ -125,7 +125,7 @@ func (p *MemPostings) Stats(label string) *PostingsStats {
|
|||
return &PostingsStats{
|
||||
CardinalityMetricsStats: metrics.get(),
|
||||
CardinalityLabelStats: labels.get(),
|
||||
LabelValueStats: labelValueLenght.get(),
|
||||
LabelValueStats: labelValueLength.get(),
|
||||
LabelValuePairsStats: labelValuePairs.get(),
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue