mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
a9ea3fee38
The context message can be extended by calling Donef. If there is no need to extend the message, then just call Done.
26 lines
743 B
Text
26 lines
743 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(isPartial bool, labelValues []string, qt *querytracer.Tracer) %}
|
|
{
|
|
"status":"success",
|
|
"isPartial":{% if isPartial %}true{% else %}false{% endif %},
|
|
"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 %}
|