mirror of
https://github.com/prometheus/prometheus
synced 2024-12-26 16:43:21 +00:00
Document info-level annotations in query response
Fixes https://github.com/prometheus/prometheus/issues/14135 Signed-off-by: Julius Volz <julius.volz@gmail.com>
This commit is contained in:
parent
480fefd089
commit
0f0b3d82e1
@ -25,8 +25,10 @@ Other non-`2xx` codes may be returned for errors occurring before the API
|
|||||||
endpoint is reached.
|
endpoint is reached.
|
||||||
|
|
||||||
An array of warnings may be returned if there are errors that do
|
An array of warnings may be returned if there are errors that do
|
||||||
not inhibit the request execution. All of the data that was successfully
|
not inhibit the request execution. An additional array of info-level
|
||||||
collected will be returned in the data field.
|
annotations may be returned for potential query issues that may or may
|
||||||
|
not be false positives. All of the data that was successfully collected
|
||||||
|
will be returned in the data field.
|
||||||
|
|
||||||
The JSON response envelope format is as follows:
|
The JSON response envelope format is as follows:
|
||||||
|
|
||||||
@ -40,9 +42,11 @@ The JSON response envelope format is as follows:
|
|||||||
"errorType": "<string>",
|
"errorType": "<string>",
|
||||||
"error": "<string>",
|
"error": "<string>",
|
||||||
|
|
||||||
// Only if there were warnings while executing the request.
|
// Only set if there were warnings while executing the request.
|
||||||
// There will still be data in the data field.
|
// There will still be data in the data field.
|
||||||
"warnings": ["<string>"]
|
"warnings": ["<string>"],
|
||||||
|
// Only set if there were info-level annnotations while executing the request.
|
||||||
|
"infos": ["<string>"]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user