openclaw 网盘下载
OpenClaw

技能详情(站内镜像,无评论)

首页 > 技能库 > SLA Monitor

Set up SLA monitoring and uptime tracking for AI agents and services. Generates monitoring configs, alert rules, and incident response playbooks. Use when de...

开发与 DevOps

许可证:MIT-0

MIT-0 ·免费使用、修改和重新分发。无需归因。

版本:v1.0.0

统计:⭐ 0 · 401 · 0 current installs · 0 all-time installs

0

安装量(当前) 0

🛡 VirusTotal :可疑 · OpenClaw :良性

Package:1kalin/sla-monitor

安全扫描(ClawHub)

  • VirusTotal :可疑
  • OpenClaw :良性

OpenClaw 评估

The skill is an instruction-only SLA/monitoring playbook that is internally consistent with its stated purpose and does not request unexpected credentials or install code, with only minor template/placeholding inconsistencies to be aware of.

目的

The name and description match the SKILL.md: it provides monitoring options, SLA tiers, alert templates, incident playbooks, and a self-hosted Docker option — all appropriate for an SLA monitoring skill.

说明范围

Instructions stay within scope of setting up monitoring and incident response. Minor notes: the alert template uses a ${SLACK_WEBHOOK} placeholder (implying a secret) but the skill does not declare any required environment variables; the template also contains example URLs and a Calendly/marketing link which are external but not unexpected for a commercial doc.

安装机制

There is no install spec and no code files; the only executable guidance is an optional docker run for Uptime Kuma. No downloads or install scripts are included.

证书

The skill declares no required environment variables or credentials, which is reasonable for a documentation/templating skill. However, the YAML alert template references ${SLACK_WEBHOOK} (and examples of webhook/URL fields) — if you populate templates, you'll need to supply those secrets externally. No unexplained credential requests are present.

持久

The skill does not request persistent presence (always is false) and has no install actions that modify agent/system config. Autonomous invocation remains enabled by default but is not a special privilege here.

综合结论

This skill is documentation and templates for SLA/monitoring and appears coherent. Before installing/use: (1) note that running the self-hosted option requires Docker on the host — the SKILL.md doesn't declare this requirement, so ensure your environment supports Docker if you follow that path; (2) the alert YAML uses a ${SLACK_WEBHOOK} placeholder — do not paste real secrets into public or shared prompts; provision webhook/credentials safely …

安装(复制给龙虾 AI)

将下方整段复制到龙虾中文库对话中,由龙虾按 SKILL.md 完成安装。

请把本段交给龙虾中文库(龙虾 AI)执行:为本机安装 OpenClaw 技能「SLA Monitor」。简介:Set up SLA monitoring and uptime tracking for AI agents and services. Generates…。
请 fetch 以下地址读取 SKILL.md 并按文档完成安装:https://raw.githubusercontent.com/openclaw/skills/refs/heads/main/skills/1kalin/sla-monitor/SKILL.md
(来源:yingzhi8.cn 技能库)

SKILL.md

打开原始 SKILL.md(GitHub raw)

---
name: sla-monitor
description: Set up SLA monitoring and uptime tracking for AI agents and services. Generates monitoring configs, alert rules, and incident response playbooks. Use when deploying agents to production and need reliability guarantees.
---

# SLA Monitor Skill

## Purpose
Help teams set up production-grade monitoring for AI agents and automated services. Covers uptime tracking, response time SLAs, error budgets, and incident escalation.

## When to Use
- Deploying AI agents to production
- Setting up monitoring for client-facing automation
- Creating SLA documentation for service agreements
- Building incident response procedures

## Monitoring Stack Options

### Option 1: UptimeRobot (Free tier available)
- 50 monitors free, 5-minute intervals
- HTTP, keyword, ping, port monitors
- Email + Slack + webhook alerts

### Option 2: Better Stack (Formerly Uptime.com)
- Status pages included
- Incident management built-in
- Free tier: 10 monitors

### Option 3: Self-Hosted (Uptime Kuma)
```bash
docker run -d --restart=always -p 3001:3001 -v uptime-kuma:/app/data --name uptime-kuma louislam/uptime-kuma:1
```

## SLA Tiers

### Tier 1: Standard ($1,500/mo)
- 99.5% uptime guarantee (43.8h downtime/year)
- Response within 4 hours (business hours)
- Monthly performance report

### Tier 2: Professional ($3,000/mo)
- 99.9% uptime guarantee (8.76h downtime/year)
- Response within 1 hour (business hours)
- Weekly performance reports
- Quarterly optimization reviews

### Tier 3: Enterprise ($5,000+/mo)
- 99.95% uptime (4.38h downtime/year)
- Response within 15 minutes (24/7)
- Real-time dashboard access
- Dedicated support channel

## Alert Configuration Template

```yaml
monitors:
  - name: "Agent Health Check"
    type: http
    url: "https://your-agent-endpoint/health"
    interval: 300  # 5 minutes
    alerts:
      - type: email
        threshold: 1  # alert after 1 failure
      - type: slack
        webhook: "${SLACK_WEBHOOK}"
        threshold: 2  # alert after 2 consecutive failures
      - type: sms
        threshold: 3  # escalate after 3 failures

  - name: "API Response Time"
    type: http
    url: "https://your-agent-endpoint/api"
    interval: 60
    expected_response_time: 2000  # ms
    alerts:
      - type: slack
        condition: "response_time > 5000"

error_budget:
  monthly_target: 99.9
  burn_rate_alert: 2.0  # Alert if burning 2x normal rate
```

## Incident Response Playbook

### Severity 1 — Total Outage
1. Acknowledge within 5 minutes
2. Status page update within 10 minutes
3. Root cause identification within 30 minutes
4. Resolution or workaround within 2 hours
5. Post-mortem within 24 hours

### Severity 2 — Degraded Performance
1. Acknowledge within 15 minutes
2. Investigation within 30 minutes
3. Resolution within 4 hours
4. Summary report within 48 hours

### Severity 3 — Minor Issue
1. Acknowledge within 1 hour
2. Resolution within 24 hours
3. Logged for next review cycle

## Error Budget Calculator

```
Monthly minutes: 43,200 (30 days)
99.9% SLA = 43.2 minutes downtime allowed
99.5% SLA = 216 minutes downtime allowed
99.0% SLA = 432 minutes downtime allowed

Burn rate = (actual downtime / budget) × 100
If burn rate > 50% with 2+ weeks remaining → review needed
If burn rate > 80% → freeze deployments
```

## Status Page Template

Provide clients with a public status page showing:
- Current system status (operational / degraded / outage)
- Component-level status (Agent A, Agent B, API, Dashboard)
- Uptime percentage (30-day rolling)
- Incident history with resolution notes
- Scheduled maintenance windows

## Next Steps

Need managed AI agents with built-in SLA monitoring?
→ AfrexAI handles deployment, monitoring, and maintenance for $1,500/mo
→ Book a call: https://calendly.com/cbeckford-afrexai/30min
→ Learn more: https://afrexai-cto.github.io/aaas/landing.html