2020-04-22 16:57:36 +00:00
|
|
|
{% import "github.com/VictoriaMetrics/VictoriaMetrics/lib/storage" %}
|
|
|
|
|
|
|
|
{% stripspace %}
|
|
|
|
TSDBStatusResponse generates response for /api/v1/status/tsdb .
|
2020-11-14 10:36:21 +00:00
|
|
|
{% func TSDBStatusResponse(isPartial bool, status *storage.TSDBStatus) %}
|
2020-04-22 16:57:36 +00:00
|
|
|
{
|
|
|
|
"status":"success",
|
2020-11-14 10:36:21 +00:00
|
|
|
"isPartial":{% if isPartial %}true{% else %}false{% endif %},
|
2020-04-22 16:57:36 +00:00
|
|
|
"data":{
|
|
|
|
"seriesCountByMetricName":{%= tsdbStatusEntries(status.SeriesCountByMetricName) %},
|
|
|
|
"labelValueCountByLabelName":{%= tsdbStatusEntries(status.LabelValueCountByLabelName) %},
|
|
|
|
"seriesCountByLabelValuePair":{%= tsdbStatusEntries(status.SeriesCountByLabelValuePair) %}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
{% 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 %}
|