VictoriaMetrics/app/vlselect/logsql/streams_response.qtpl

18 lines
311 B
Plaintext
Raw Normal View History

2024-05-22 21:01:20 +02:00
{% stripspace %}
// StreamsResponse formats /select/logsql/streams response
{% func StreamsResponse(streams []string) %}
{
"streams":[
{% if len(streams) > 0 %}
{%q= streams[0] %}
{% for _, v := range streams[1:] %}
,{%q= v %}
{% endfor %}
{% endif %}
]
}
{% endfunc %}
{% endstripspace %}