mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 20:37:12 +01:00
ec7963208d
This allows filling the seriesCountByFocusLabelValue list in the /api/v1/status/tsdb response with label values for the specified focusLabel, which contain the highest number of time series. TODO: add this to Cardinality explorer at VMUI - https://docs.victoriametrics.com/#cardinality-explorer
38 lines
1.2 KiB
Plaintext
38 lines
1.2 KiB
Plaintext
{% import (
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/querytracer"
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/storage"
|
|
) %}
|
|
|
|
{% stripspace %}
|
|
TSDBStatusResponse generates response for /api/v1/status/tsdb .
|
|
{% func TSDBStatusResponse(status *storage.TSDBStatus, qt *querytracer.Tracer) %}
|
|
{
|
|
"status":"success",
|
|
"data":{
|
|
"totalSeries": {%dul= status.TotalSeries %},
|
|
"totalLabelValuePairs": {%dul= status.TotalLabelValuePairs %},
|
|
"seriesCountByMetricName":{%= tsdbStatusEntries(status.SeriesCountByMetricName) %},
|
|
"seriesCountByLabelName":{%= tsdbStatusEntries(status.SeriesCountByLabelName) %},
|
|
"seriesCountByFocusLabelValue":{%= tsdbStatusEntries(status.SeriesCountByFocusLabelValue) %},
|
|
"seriesCountByLabelValuePair":{%= tsdbStatusEntries(status.SeriesCountByLabelValuePair) %},
|
|
"labelValueCountByLabelName":{%= tsdbStatusEntries(status.LabelValueCountByLabelName) %}
|
|
}
|
|
{% code qt.Done() %}
|
|
{%= dumpQueryTrace(qt) %}
|
|
}
|
|
{% endfunc %}
|
|
|
|
{% func tsdbStatusEntries(a []storage.TopHeapEntry) %}
|
|
[
|
|
{% for i, e := range a %}
|
|
{
|
|
"name":{%q= e.Name %},
|
|
"value":{%d= int(e.Count) %}
|
|
}
|
|
{% if i+1 < len(a) %},{% endif %}
|
|
{% endfor %}
|
|
]
|
|
{% endfunc %}
|
|
|
|
{% endstripspace %}
|