vm_query_range
Execute PromQL queries to retrieve time series data within a specified time range. Provide start, end timestamps, and step width to analyze metrics efficiently using VictoriaMetrics-mcp-server.
Instructions
Query time series over a time range
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end | No | End timestamp in Unix seconds | |
query | Yes | PromQL expression | |
start | No | Start timestamp in Unix seconds | |
step | No | Query resolution step width |
Input Schema (JSON Schema)
{
"properties": {
"end": {
"description": "End timestamp in Unix seconds",
"type": "number"
},
"query": {
"description": "PromQL expression",
"type": "string"
},
"start": {
"description": "Start timestamp in Unix seconds",
"type": "number"
},
"step": {
"description": "Query resolution step width",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}