get_dashboard_summary
Retrieve a compact summary of a Grafana dashboard including title, panel count, panel types, variables, and metadata by providing the dashboard UID.
Instructions
Get a compact summary of a dashboard including title, panel count, panel types, variables, and other metadata
Input Schema
Name | Required | Description | Default |
---|---|---|---|
uid | Yes | The UID of the dashboard |
Input Schema (JSON Schema)
{
"properties": {
"uid": {
"description": "The UID of the dashboard",
"type": "string"
}
},
"required": [
"uid"
],
"type": "object"
}