Token导航 LogoToken导航TokenDH.com
研究检索敏感数据github未标认证来源可访问许可证需确认审计通过

grafanagrafana 搜索

Agent Skill

grafana 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

416

周安装

17

GitHub Stars

4

下载量

135
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:grafana(grafana 搜索)
来源仓库:https://github.com/alphaonedev/openclaw-graph
仓库路径:skills/grafana
安装命令:
npx skills add https://github.com/alphaonedev/openclaw-graph --skill grafana
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/alphaonedev/openclaw-graph --skill grafana

简介

用于可视化监控数据,支持多种数据源仪表盘构建。grafana 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

  • 适合系统性能指标展示、日志聚合和告警规则配置场景。
  • 提供面板定制、变量注入和动态阈值设置等高级功能。
  • 使用前需部署 Grafana 实例并配置数据源连接参数。
  • 生产环境告警规则变更前应在沙箱环境验证触发逻辑准确性。

SKILL.md

grafana

Purpose

Grafana is an open-source platform for visualizing and querying metrics, logs, and traces from various data sources. It enables users to create interactive dashboards, set up alerts, and explore data to monitor systems effectively.

When to Use

Use Grafana when you need to build custom dashboards for real-time monitoring of infrastructure, applications, or services. It's ideal for scenarios involving observability, such as tracking Kubernetes metrics, analyzing server logs, or correlating traces in distributed systems. Avoid it for simple static reporting; opt for it when dynamic querying and visualization are required.

Key Capabilities

  • Create and manage dashboards with panels for graphs, tables, and gauges.
  • Integrate with data sources like Prometheus, Loki, Elasticsearch via plugins.
  • Set up alerting rules based on thresholds for metrics or logs.
  • Support for ad-hoc queries and exploration using query languages like PromQL.
  • Role-based access control (RBAC) for securing dashboards and data.
  • Export/import dashboards in JSON format for versioning.

Usage Patterns

To run Grafana as a server, start it with a configuration file: specify the config path and bind to a port. For automation, use the API to create dashboards programmatically. Common pattern: Ingest data from Prometheus, then query it via Grafana's UI or API. For CI/CD, embed Grafana in workflows to generate dashboards on-the-fly. Always run it in a containerized environment for scalability, e.g., using Docker with the official image.

Common Commands/API

Use the Grafana CLI for administrative tasks. To start the server: grafana-server --config /etc/grafana/grafana.ini --homepath /usr/share/grafana. For plugins, run grafana-cli plugins install <plugin-name>.

API endpoints require authentication via API keys. Set your key as an environment variable: export GRAFANA_API_KEY=$YOUR_API_KEY. Then, use curl for requests.

Example: Create a dashboard via API:

curl -H "Authorization: Bearer $GRAFANA_API_KEY" -X POST https://your-grafana-instance/api/dashboards/db -d '{"dashboard": {"id": null, "uid": null, "title": "New Dashboard", "tags": ["example"], "timezone": "browser", "panels": []}, "folderId": 0, "overwrite": false}'

Query a data source: GET https://your-grafana-instance/api/datasources/1. Config files are in INI format, e.g.:

[server]
http_port = 3000

Integration Notes

Integrate Grafana with data sources by adding them via the UI or configuration. For Prometheus, add a data source with URL: http://prometheus:9090 and enable basic auth if needed. Use environment variables for secrets, e.g., GF_SECURITY_ADMIN_PASSWORD=$ADMIN_PASSWORD. For alerting, link to notification channels like Slack or PagerDuty in the config: add under [alerting] section in grafana.ini.

To embed in other tools, use the iframe embed option for dashboards. For code integrations, import Grafana dashboards in Terraform: define a resource like resource "grafana_dashboard" "example" {config_json = file("dashboard.json")}. Ensure data sources are provisioned first via Grafana's provisioning YAML files, e.g.:

apiVersion: 1
datasources:
  - name: Prometheus
    type: prometheus
    url: http://prometheus:9090

Error Handling

Common errors include connection failures to data sources; check logs with journalctl -u grafana-server or view in the UI under Server Admin > Logs. For API errors (e.g., 401 Unauthorized), verify the API key with echo $GRAFANA_API_KEY and ensure it's not expired. Handle query errors by wrapping API calls in try-catch blocks, e.g., in Python:

import requests
try:
    response = requests.post('https://your-grafana-instance/api/dashboards/db', headers={'Authorization': f'Bearer {os.environ["GRAFANA_API_KEY"]}'}, json=data)
    response.raise_for_status()
except requests.exceptions.HTTPError as err:
    print(f"Error: {err.response.status_code} - {err.response.text}")

For configuration issues, validate grafana.ini with grafana-server --config /path/to/config.ini --verify-config.

Concrete Usage Examples

Example 1: Set up a basic Prometheus dashboard. First, start Grafana: docker run -d -p 3000:3000 grafana/grafana. Log in (default user: admin, password: admin), add a data source via UI: Go to Configuration > Data Sources > Add Prometheus with URL http://your-prometheus-url:9090. Create a dashboard: Add a panel with query up{job="prometheus"}, save it.

Example 2: Automate alert creation via API. Export your API key to env: export GRAFANA_API_KEY=your_key. Send a request to create an alert rule:

curl -H "Authorization: Bearer $GRAFANA_API_KEY" -X POST https://your-grafana-instance/api/ruler/grafana/default -d '{"name": "High CPU Alert", "condition": "A", "for": "5m", "query": {"params": ["avg", "up", "{job=\"node\"}"], "model": {}}}'

This sets up an alert for high CPU usage based on your metrics.

Graph Relationships

  • Related to: Prometheus (provides metrics data), Loki (handles logs), as part of devops-sre cluster.
  • Connects with: Elasticsearch (for log visualization), Jaeger/Zipkin (for traces).
  • Dependencies: Often paired with monitoring tools like Alertmanager for full observability workflows.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.01%
按下载量换算49

Claude

30.16%
按下载量换算41

Cursor

19.47%
按下载量换算26

Gemini CLI

8.23%
按下载量换算11

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

敏感数据

该 Skill 可能接触密钥、Token、环境变量或敏感配置,应进入高风险复核队列,默认不自动发布。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills