prometheus_label_values
Retrieve all values for a specified Prometheus label to streamline metric analysis and monitoring. This tool enables precise querying and enhances integration with monitoring infrastructure.
Instructions
Get all values for a specific Prometheus label
Input Schema
| Name | Required | Description | Default | 
|---|---|---|---|
| label | Yes | label name to get values for | 
Input Schema (JSON Schema)
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "additionalProperties": false,
  "properties": {
    "label": {
      "description": "label name to get values for",
      "type": "string"
    }
  },
  "required": [
    "label"
  ],
  "type": "object"
}