2019-05-22 23:16:55 +02:00
|
|
|
{% import (
|
2022-06-28 11:55:20 +02:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/storage"
|
2022-06-01 01:29:19 +02:00
|
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/querytracer"
|
2019-05-22 23:16:55 +02:00
|
|
|
) %}
|
|
|
|
|
|
|
|
{% stripspace %}
|
|
|
|
SeriesResponse generates response for /api/v1/series.
|
|
|
|
See https://prometheus.io/docs/prometheus/latest/querying/api/#finding-series-by-label-matchers
|
2022-06-28 16:36:27 +02:00
|
|
|
{% func SeriesResponse(metricNames []string, qt *querytracer.Tracer, qtDone func()) %}
|
2019-05-22 23:16:55 +02:00
|
|
|
{
|
|
|
|
"status":"success",
|
|
|
|
"data":[
|
2022-06-28 16:36:27 +02:00
|
|
|
{% code var mn storage.MetricName %}
|
|
|
|
{% for i, metricName := range metricNames %}
|
|
|
|
{% code err := mn.UnmarshalString(metricName) %}
|
|
|
|
{% if err != nil %}
|
|
|
|
{%q= err.Error() %}
|
|
|
|
{% else %}
|
|
|
|
{%= metricNameObject(&mn) %}
|
|
|
|
{% endif %}
|
|
|
|
{% if i+1 < len(metricNames) %},{% endif %}
|
2022-06-28 11:55:20 +02:00
|
|
|
{% endfor %}
|
2019-05-22 23:16:55 +02:00
|
|
|
]
|
2022-06-01 01:29:19 +02:00
|
|
|
{% code
|
2022-06-28 16:36:27 +02:00
|
|
|
qt.Printf("generate response: series=%d", len(metricNames))
|
2022-06-01 01:29:19 +02:00
|
|
|
qtDone()
|
|
|
|
%}
|
|
|
|
{%= dumpQueryTrace(qt) %}
|
2019-05-22 23:16:55 +02:00
|
|
|
}
|
|
|
|
{% endfunc %}
|
|
|
|
{% endstripspace %}
|