Smithery Logo
MCPsSkillsDocsPricing
Login
Smithery Logo

Accelerating the Agent Economy

Resources

DocumentationPrivacy PolicySystem Status

Company

PricingAboutBlog

Connect

© 2026 Smithery. All rights reserved.

    Dexploarer

    sla-monitor-generator

    Dexploarer/sla-monitor-generator
    DevOps
    5

    About

    SKILL.md

    Install

    Install via Skills CLI

    or add to your agent
    • Claude Code
      Claude Code
    • Codex
      Codex
    • OpenClaw
      OpenClaw
    • Cursor
      Cursor
    • Amp
      Amp
    • GitHub Copilot
      GitHub Copilot
    • Gemini CLI
      Gemini CLI
    • Kilo Code
      Kilo Code
    • Junie
      Junie
    • Replit
      Replit
    • Windsurf
      Windsurf
    • Cline
      Cline
    • Continue
      Continue
    • OpenCode
      OpenCode
    • OpenHands
      OpenHands
    • Roo Code
      Roo Code
    • Augment
      Augment
    • Goose
      Goose
    • Trae
      Trae
    • Zencoder
      Zencoder
    • Antigravity
      Antigravity
    ├─
    ├─
    └─

    About

    Generate SLA/SLO/SLI monitoring configurations for reliability tracking and error budget management. Activates for SLO setup, reliability targets, and error budget configuration.

    SKILL.md

    SLA Monitor Generator

    Define and monitor Service Level Objectives (SLOs) and track error budgets.

    SLO Definition Example

    slos:
      - name: api-availability
        sli: 
          metric: http_requests_total
          filter: status < 500
        target: 99.9  # 99.9% availability
        window: 30d
        
      - name: api-latency
        sli:
          metric: http_request_duration_seconds
          percentile: 99
        target: 200  # 200ms at p99
        window: 30d
    
      - name: error-rate
        sli:
          metric: http_requests_total
          filter: status >= 500
        target: 0.1  # < 0.1% error rate
        window: 30d
    

    Prometheus AlertManager Rules

    groups:
      - name: slo-alerts
        rules:
          - alert: SLOBudgetBurnRate
            expr: |
              (
                1 - (sum(rate(http_requests_total{status!~"5.."}[5m])) 
                     / sum(rate(http_requests_total[5m])))
              ) > 0.001 * 14.4
            for: 2m
            labels:
              severity: critical
            annotations:
              summary: "Fast burn rate detected - 2% budget in 1 hour"
    

    Best Practices

    • ✅ Define SLIs based on user experience
    • ✅ Set realistic SLO targets (99.9% not 100%)
    • ✅ Track error budgets continuously
    • ✅ Alert on burn rate, not just breaches
    • ✅ Review and adjust SLOs quarterly
    Repository
    dexploarer/hyper-forge
    Files