mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
018d2303c4
* Cardinality explorer * vmui, vmselect: updated field name, added description to spinner * make vmui-update * updated const name, make vmui-update * lib/storage: changes calculation for totalSeries values * added static files * wip * wip * wip * wip * docs/CHANGELOG.md: document cardinality explorer feature See https://github.com/VictoriaMetrics/VictoriaMetrics/issues/2233 Co-authored-by: f41gh7 <nik@victoriametrics.com> Co-authored-by: Aliaksandr Valialkin <valyala@victoriametrics.com>
30 lines
883 B
Text
30 lines
883 B
Text
{% import "github.com/VictoriaMetrics/VictoriaMetrics/lib/storage" %}
|
|
|
|
{% stripspace %}
|
|
TSDBStatusResponse generates response for /api/v1/status/tsdb .
|
|
{% func TSDBStatusResponse(status *storage.TSDBStatus) %}
|
|
{
|
|
"status":"success",
|
|
"data":{
|
|
"totalSeries": {%dul= status.TotalSeries %},
|
|
"totalLabelValuePairs": {%dul= status.TotalLabelValuePairs %},
|
|
"seriesCountByMetricName":{%= tsdbStatusEntries(status.SeriesCountByMetricName) %},
|
|
"seriesCountByLabelValuePair":{%= tsdbStatusEntries(status.SeriesCountByLabelValuePair) %},
|
|
"labelValueCountByLabelName":{%= tsdbStatusEntries(status.LabelValueCountByLabelName) %}
|
|
}
|
|
}
|
|
{% 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 %}
|