mit einem Klick
grafana
Grafana dashboard and alert management
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Menü
Grafana dashboard and alert management
Mit Codex oder Claude installieren Kopieren Sie diesen Prompt, fügen Sie ihn in Codex, Claude oder einen anderen Assistant ein und lassen Sie die Skill-Seite prüfen und installieren.
Basierend auf der SOC-Berufsklassifikation
Docker container and image management with native docker CLI integration. Use when you need to manage containers, images, networks, volumes, or run Docker Compose.
Video and audio processing using FFmpeg inside a secure Docker container
Image manipulation and conversion using ImageMagick inside a secure Docker container
MongoDB database client with Docker-based mongosh CLI
MySQL database client with Docker-based mysql CLI
PostgreSQL CLI client (psql) for database operations running inside a Docker container
| name | grafana |
| version | 1.0.0 |
| description | Grafana dashboard and alert management |
| author | Skill Engine |
Manage Grafana dashboards, alerts, and data sources through the API.
skill install ./examples/wasm-skills/grafana-skill
skill config grafana \
--set GRAFANA_URL=https://grafana.example.com \
--set GRAFANA_API_KEY=your_api_key
List all dashboards with optional filtering.
Parameters:
folder (optional, string): Filter by folder nametag (optional, string): Filter by tagquery (optional, string): Search querylimit (optional, number): Maximum results (default: 100)Example:
skill run grafana list-dashboards
skill run grafana list-dashboards --folder "Production"
skill run grafana list-dashboards --query "kubernetes"
Get dashboard details including panels.
Parameters:
uid (required, string): Dashboard UIDExample:
skill run grafana get-dashboard --uid abc123
List alert rules.
Parameters:
state (optional, string): Filter by state: firing, pending, inactivefolder (optional, string): Filter by folderlimit (optional, number): Maximum results (default: 100)Example:
skill run grafana list-alerts
skill run grafana list-alerts --state firing
Get details of a specific alert rule.
Parameters:
uid (required, string): Alert rule UIDExample:
skill run grafana get-alert --uid alert-xyz
Create a silence for an alert.
Parameters:
matchers (required, string): Label matchers (e.g., alertname=High CPU)duration (required, string): Silence duration (e.g., 1h, 30m, 2d)comment (optional, string): Reason for silencecreatedBy (optional, string): Creator nameExample:
skill run grafana silence-alert --matchers "alertname=HighCPU" --duration "1h" --comment "Maintenance"
Query a data source directly.
Parameters:
datasource (required, string): Data source name or UIDquery (required, string): Query string (PromQL, SQL, etc.)from (optional, string): Start time (default: 1h ago)to (optional, string): End time (default: now)Example:
skill run grafana query-datasource --datasource "Prometheus" --query "rate(http_requests_total[5m])"
List configured data sources.
Example:
skill run grafana list-datasources
List dashboard folders.
Example:
skill run grafana list-folders