PrometheusResponse

PrometheusResponse
PrometheusResponse

Standard Prometheus response.

JSON Example
{
    "status": "string",
    "data": {},
    "pageInfo": {
        "nextPageToken": "eyJuYW1lIjoiY3B1LnVzYWdlIiwidGltZXN0YW1wIjoxNjAwMDAwMDAwfQ==",
        "pageSize": 50
    },
    "errorType": "string",
    "error": "string",
    "warnings": [
        "string"
    ],
    "infos": [
        "string"
    ]
}
status
Required

API execution status.

Possible values are : success, error,
object
data
Required

Loose object reference for circumventing OpenAPI Generator's oneOf() problem for client SDK

pageInfo
Optional

Pagination metadata for paginated responses. Only present for paginated APIs.

string
errorType
Optional

Type of an error. This field is set only if status is "error". The data field may still hold additional data.

string
error
Optional

Error while querying to the metrics. This field is set only if status is "error". The data field may still hold additional data.

array of string
warnings
Optional

Warnings generated during API execution. This field is set only if there were warnings while executing the request. The data field will still hold additional data.

array of string
infos
Optional

Info generated during API execution. This field is set only if there were info-level messages while executing the request.