prometheus_metric_metadata
Retrieve detailed metadata for a specified Prometheus metric to enable precise monitoring and analysis within the Prometheus-MCP server environment.
Instructions
Get metadata for a specific Prometheus metric
Input Schema
Name | Required | Description | Default |
---|---|---|---|
metric | Yes | metric name to get metadata for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"metric": {
"description": "metric name to get metadata for",
"type": "string"
}
},
"required": [
"metric"
],
"type": "object"
}