get_dashboard_by_uid
Retrieve a complete Grafana dashboard with all panels, variables, and settings using the dashboard's unique identifier (UID).
Instructions
Retrieves the complete dashboard, including panels, variables, and settings, for a specific dashboard identified by its UID
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"
}