mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
17 lines
338 B
Text
17 lines
338 B
Text
{% stripspace %}
|
|
|
|
// StreamLabelValuesResponse formats /select/logsql/stream_label_values response
|
|
{% func StreamLabelValuesResponse(values []string) %}
|
|
{
|
|
"values":[
|
|
{% if len(values) > 0 %}
|
|
{%q= values[0] %}
|
|
{% for _, v := range values[1:] %}
|
|
,{%q= v %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
]
|
|
}
|
|
{% endfunc %}
|
|
|
|
{% endstripspace %}
|