mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 20:37:12 +01:00
12ac255dae
The context message can be extended by calling Donef. If there is no need to extend the message, then just call Done.
26 lines
598 B
Plaintext
26 lines
598 B
Plaintext
{% stripspace %}
|
|
|
|
{% import (
|
|
"github.com/VictoriaMetrics/VictoriaMetrics/lib/querytracer"
|
|
) %}
|
|
|
|
LabelsResponse generates response for /api/v1/labels .
|
|
See https://prometheus.io/docs/prometheus/latest/querying/api/#getting-label-names
|
|
{% func LabelsResponse(labels []string, qt *querytracer.Tracer) %}
|
|
{
|
|
"status":"success",
|
|
"data":[
|
|
{% for i, label := range labels %}
|
|
{%q= label %}
|
|
{% if i+1 < len(labels) %},{% endif %}
|
|
{% endfor %}
|
|
]
|
|
{% code
|
|
qt.Printf("generate response for %d labels", len(labels))
|
|
qt.Done()
|
|
%}
|
|
{%= dumpQueryTrace(qt) %}
|
|
}
|
|
{% endfunc %}
|
|
{% endstripspace %}
|