mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-12-19 07:01:02 +01:00
18 lines
311 B
Plaintext
18 lines
311 B
Plaintext
{% stripspace %}
|
|
|
|
// FieldNamesResponse formats /select/logsql/field_names response
|
|
{% func FieldNamesResponse(names []string) %}
|
|
{
|
|
"names":[
|
|
{% if len(names) > 0 %}
|
|
{%q= names[0] %}
|
|
{% for _, v := range names[1:] %}
|
|
,{%q= v %}
|
|
{% endfor %}
|
|
{% endif %}
|
|
]
|
|
}
|
|
{% endfunc %}
|
|
|
|
{% endstripspace %}
|