search_dashboards
Search Grafana dashboards using a query string to find relevant monitoring dashboards with details like title, UID, folder, tags, and URL.
Instructions
Search for Grafana dashboards by a query string. Returns a list of matching dashboards with details like title, UID, folder, tags, and URL.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The query to search for |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "The query to search for",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}