mirror of
https://github.com/prometheus/prometheus.git
synced 2025-03-05 20:59:13 -08:00
Implement GetAllMetricNames() for memory storage.
This commit is contained in:
parent
6bb5ffdb5e
commit
11bb94a7e5
|
@ -348,8 +348,20 @@ func (s memorySeriesStorage) Close() (err error) {
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s memorySeriesStorage) GetAllMetricNames() ([]string, error) {
|
func (s memorySeriesStorage) GetAllMetricNames() (metrics []string, err error) {
|
||||||
panic("not implemented")
|
metricSet := map[string]bool{}
|
||||||
|
for _, series := range s.fingerprintToSeries {
|
||||||
|
if metricName, ok := series.metric["name"]; !ok {
|
||||||
|
err = fmt.Errorf("Found timeseries without metric name label: %v", series.metric)
|
||||||
|
} else {
|
||||||
|
metricSet[string(metricName)] = true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
for metricName := range metricSet {
|
||||||
|
metrics = append(metrics, metricName)
|
||||||
|
}
|
||||||
|
sort.Strings(metrics)
|
||||||
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s memorySeriesStorage) ForEachSample(builder IteratorsForFingerprintBuilder) (err error) {
|
func (s memorySeriesStorage) ForEachSample(builder IteratorsForFingerprintBuilder) (err error) {
|
||||||
|
|
Loading…
Reference in a new issue