mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2025-02-09 15:27:11 +00:00
lib/storage: do not increment vm_slow_metric_name_loads_total
counter for metric_ids which shouldnt be prefetched, since this may mislead users
This commit is contained in:
parent
dc16cdd1ca
commit
2a8f1e6931
1 changed files with 1 additions and 1 deletions
|
@ -877,11 +877,11 @@ func (s *Storage) prefetchMetricNames(tsids []TSID) error {
|
|||
metricIDs = append(metricIDs, metricID)
|
||||
tsidsMap[metricID] = &tsids[i]
|
||||
}
|
||||
atomic.AddUint64(&s.slowMetricNameLoads, uint64(len(metricIDs)))
|
||||
if len(metricIDs) < 500 {
|
||||
// It is cheaper to skip pre-fetching and obtain metricNames inline.
|
||||
return nil
|
||||
}
|
||||
atomic.AddUint64(&s.slowMetricNameLoads, uint64(len(metricIDs)))
|
||||
|
||||
// Pre-fetch metricIDs.
|
||||
sort.Sort(metricIDs)
|
||||
|
|
Loading…
Reference in a new issue