mirror of
https://github.com/VictoriaMetrics/VictoriaMetrics.git
synced 2024-11-21 14:44:00 +00:00
12 lines
327 B
Text
12 lines
327 B
Text
|
{% stripspace %}
|
||
|
ErrorResponse generates error response for /api/v1/query.
|
||
|
See https://prometheus.io/docs/prometheus/latest/querying/api/#format-overview
|
||
|
{% func ErrorResponse(statusCode int, err error) %}
|
||
|
{
|
||
|
"status":"error",
|
||
|
"errorType":"{%d statusCode %}",
|
||
|
"error": {%q= err.Error() %}
|
||
|
}
|
||
|
{% endfunc %}
|
||
|
{% endstripspace %}
|