get_dashboard_property
Extract specific dashboard components using JSONPath expressions to efficiently retrieve targeted data from Grafana dashboards while minimizing data transfer.
Instructions
Get specific parts of a dashboard using JSONPath expressions to minimize context window usage
Input Schema
Name | Required | Description | Default |
---|---|---|---|
jsonPath | Yes | JSONPath expression to extract specific data | |
uid | Yes | The UID of the dashboard |
Input Schema (JSON Schema)
{
"properties": {
"jsonPath": {
"description": "JSONPath expression to extract specific data",
"type": "string"
},
"uid": {
"description": "The UID of the dashboard",
"type": "string"
}
},
"required": [
"uid",
"jsonPath"
],
"type": "object"
}