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