VictoriaMetrics/app/vlinsert/elasticsearch/bulk_response.qtpl
2023-06-19 22:55:12 -07:00

21 lines
278 B
Plaintext

{% stripspace %}
{% func BulkResponse(n int, tookMs int64) %}
{
"took":{%dl tookMs %},
"errors":false,
"items":[
{% for i := 0; i < n; i++ %}
{
"create":{
"status":201
}
}
{% if i+1 < n %},{% endif %}
{% endfor %}
]
}
{% endfunc %}
{% endstripspace %}