mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-23 20:37:12 +01:00
21 lines
278 B
Plaintext
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 %}
|