원클릭으로
grafana
Generates PromQL queries and metadata for Grafana panels. Use when asked about Grafana metrics, dashboards, or visualizations.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Generates PromQL queries and metadata for Grafana panels. Use when asked about Grafana metrics, dashboards, or visualizations.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Drafts professional, "Short & Punchy" Slack messages for library announcements and project updates. Use this skill when announcing new versions, features, or improvements to Diagnostics or other libraries in general or product-facing channels.
Creates clear, concise, and well-structured technical documentation, enforcing standards like markdownlint and using Mermaid for diagrams.
Helps write impactful and professional announcements for the `#foundation-releases-feed` Slack channel. Use when Yasmin needs to announce a new release, tool, or update from the Cloud Insights Foundation team.
A skill to help study Data Structures and Algorithms. It provides clarifying questions, multiple solutions with complexity analysis in JavaScript, and test cases for a given problem.
Enforces standards for writing Markdown, including using markdownlint for formatting and Mermaid for diagrams.
| name | grafana |
| description | Generates PromQL queries and metadata for Grafana panels. Use when asked about Grafana metrics, dashboards, or visualizations. |
This skill assists in creating monitoring panels for Grafana by providing the necessary PromQL queries and associated metadata.
User Prompt:
I need a panel to see the error rate (5xx) for the
api-gateway.
Your Response:
- **Title**: API Gateway - Error Rate (5xx)
- **Description**: This panel shows the percentage of 5xx server errors for the `api-gateway` service.
- **Visualization**: Time series
- **PromQL**:
```promql
sum(rate(http_requests_total{job="api-gateway", code=~"5.."}[5m])) / sum(rate(http_requests_total{job="api-gateway"}[5m])) * 100