External DocumentationTo learn more, visit the Prometheus documentation.
Actions
Get Metric Data Points
Get all data points over a specified time range according to time intervals.

Preview this Workflow on desktop
Was this page helpful?
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
| Parameter | Description |
|---|---|
| End Time | End time. |
| Query | Metric to query. |
| Start Time | Start time. |
| Time step | Time between metric data points. |
{
"status": "<string>",
"data": {
"resultType": "<string>",
"result": [
{
"metric": {
"__name__": "<string>",
"instance": "<string>",
"job": "<string>",
"quantile": "<string>"
},
"values": [
[
2059865938,
"<string>"
],
[
1680143634,
"<string>"
]
]
},
{
"metric": {
"__name__": "<string>",
"instance": "<string>",
"job": "<string>",
"quantile": "<string>"
},
"values": [
[
2812879369,
"<string>"
],
[
197626181,
"<string>"
]
]
}
]
}
}
Was this page helpful?