{
  "schemaVersion": "1.0",
  "item": {
    "slug": "monitoring",
    "name": "Monitoring",
    "source": "tencent",
    "type": "skill",
    "category": "数据分析",
    "sourceUrl": "https://clawhub.ai/ivangdavila/monitoring",
    "canonicalUrl": "https://clawhub.ai/ivangdavila/monitoring",
    "targetPlatform": "OpenClaw"
  },
  "install": {
    "downloadMode": "redirect",
    "downloadUrl": "/downloads/monitoring",
    "sourceDownloadUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=monitoring",
    "sourcePlatform": "tencent",
    "targetPlatform": "OpenClaw",
    "installMethod": "Manual import",
    "extraction": "Extract archive",
    "prerequisites": [
      "OpenClaw"
    ],
    "packageFormat": "ZIP package",
    "includedAssets": [
      "SKILL.md",
      "alerting.md",
      "apm.md",
      "logs.md",
      "prometheus.md",
      "simple.md"
    ],
    "primaryDoc": "SKILL.md",
    "quickSetup": [
      "Download the package from Yavira.",
      "Extract the archive and review SKILL.md first.",
      "Import or place the package into your OpenClaw setup."
    ],
    "agentAssist": {
      "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
      "steps": [
        "Download the package from Yavira.",
        "Extract it into a folder your agent can access.",
        "Paste one of the prompts below and point your agent at the extracted folder."
      ],
      "prompts": [
        {
          "label": "New install",
          "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
        },
        {
          "label": "Upgrade existing",
          "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
        }
      ]
    },
    "sourceHealth": {
      "source": "tencent",
      "status": "healthy",
      "reason": "direct_download_ok",
      "recommendedAction": "download",
      "checkedAt": "2026-04-23T16:43:11.935Z",
      "expiresAt": "2026-04-30T16:43:11.935Z",
      "httpStatus": 200,
      "finalUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
      "contentType": "application/zip",
      "probeMethod": "head",
      "details": {
        "probeUrl": "https://wry-manatee-359.convex.site/api/v1/download?slug=4claw-imageboard",
        "contentDisposition": "attachment; filename=\"4claw-imageboard-1.0.1.zip\"",
        "redirectLocation": null,
        "bodySnippet": null
      },
      "scope": "source",
      "summary": "Source download looks usable.",
      "detail": "Yavira can redirect you to the upstream package for this source.",
      "primaryActionLabel": "Download for OpenClaw",
      "primaryActionHref": "/downloads/monitoring"
    },
    "validation": {
      "installChecklist": [
        "Use the Yavira download entry.",
        "Review SKILL.md after the package is downloaded.",
        "Confirm the extracted package contains the expected setup assets."
      ],
      "postInstallChecks": [
        "Confirm the extracted package includes the expected docs or setup files.",
        "Validate the skill or prompts are available in your target agent workspace.",
        "Capture any manual follow-up steps the agent could not complete."
      ]
    },
    "downloadPageUrl": "https://openagent3.xyz/downloads/monitoring",
    "agentPageUrl": "https://openagent3.xyz/skills/monitoring/agent",
    "manifestUrl": "https://openagent3.xyz/skills/monitoring/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/monitoring/agent.md"
  },
  "agentAssist": {
    "summary": "Hand the extracted package to your coding agent with a concrete install brief instead of figuring it out manually.",
    "steps": [
      "Download the package from Yavira.",
      "Extract it into a folder your agent can access.",
      "Paste one of the prompts below and point your agent at the extracted folder."
    ],
    "prompts": [
      {
        "label": "New install",
        "body": "I downloaded a skill package from Yavira. Read SKILL.md from the extracted folder and install it by following the included instructions. Tell me what you changed and call out any manual steps you could not complete."
      },
      {
        "label": "Upgrade existing",
        "body": "I downloaded an updated skill package from Yavira. Read SKILL.md from the extracted folder, compare it with my current installation, and upgrade it while preserving any custom configuration unless the package docs explicitly say otherwise. Summarize what changed and any follow-up checks I should run."
      }
    ]
  },
  "documentation": {
    "source": "clawhub",
    "primaryDoc": "SKILL.md",
    "sections": [
      {
        "title": "Complexity Levels",
        "body": "LevelToolsSetup TimeBest ForMinimalUptimeRobot, Healthchecks.io15 minSide projects, MVPsStandardUptime Kuma, Sentry, basic Grafana1-2 hoursSmall teams, startupsProfessionalPrometheus, Grafana, Loki, Alertmanager1-2 daysProduction systemsEnterpriseDatadog, New Relic, or full OSS stackOngoingLarge-scale operations"
      },
      {
        "title": "The Three Pillars",
        "body": "PillarWhat It AnswersToolsMetrics\"How is the system performing?\"Prometheus, Grafana, DatadogLogs\"What happened?\"Loki, ELK, CloudWatchTraces\"Why is this request slow?\"Jaeger, Tempo, Sentry"
      },
      {
        "title": "Quick Start by Use Case",
        "body": "\"I just want to know if it's down\"\n→ UptimeRobot (free) or Uptime Kuma (self-hosted). See simple.md.\n\n\"I need to debug production errors\"\n→ Sentry with your framework SDK. 5-minute setup. See apm.md.\n\n\"I want real observability\"\n→ Prometheus + Grafana + Loki. See prometheus.md.\n\n\"I need to centralize logs\"\n→ Loki for simple, ELK for complex queries. See logs.md."
      },
      {
        "title": "Applications (RED Method)",
        "body": "Rate — requests per second\nErrors — error rate by endpoint\nDuration — latency (p50, p95, p99)"
      },
      {
        "title": "Infrastructure (USE Method)",
        "body": "Utilization — CPU, memory, disk usage\nSaturation — queue depth, load average\nErrors — hardware/system errors"
      },
      {
        "title": "Alerting Principles",
        "body": "DoDon'tAlert on symptoms (user impact)Alert on causes (CPU high)Include runbook linkRequire investigation to understandSet appropriate severityMake everything P1Require actionAlert on \"interesting\" metrics\n\nAlert fatigue kills monitoring. If alerts are ignored, you have no monitoring.\n\nFor alert configuration, severities, and on-call setup, see alerting.md."
      },
      {
        "title": "Cost Comparison",
        "body": "SolutionMonthly Cost (small)Monthly Cost (medium)UptimeRobotFree$7Uptime Kuma$5 (VPS)$5 (VPS)SentryFree / $26$80Grafana CloudFree tier$50+Datadog$15/host$23/host + featuresSelf-hosted stack$10-20 (VPS)$50-100 (VPS)"
      },
      {
        "title": "Common Mistakes",
        "body": "Starting with Prometheus/Grafana when Uptime Kuma would suffice\nNo alerting (dashboards nobody watches)\nToo many alerts (alert fatigue → ignored)\nMissing runbooks (alert fires, nobody knows what to do)\nNot monitoring from outside (only internal checks)\nStoring logs forever (cost explodes)"
      }
    ],
    "body": "Complexity Levels\nLevel\tTools\tSetup Time\tBest For\nMinimal\tUptimeRobot, Healthchecks.io\t15 min\tSide projects, MVPs\nStandard\tUptime Kuma, Sentry, basic Grafana\t1-2 hours\tSmall teams, startups\nProfessional\tPrometheus, Grafana, Loki, Alertmanager\t1-2 days\tProduction systems\nEnterprise\tDatadog, New Relic, or full OSS stack\tOngoing\tLarge-scale operations\nThe Three Pillars\nPillar\tWhat It Answers\tTools\nMetrics\t\"How is the system performing?\"\tPrometheus, Grafana, Datadog\nLogs\t\"What happened?\"\tLoki, ELK, CloudWatch\nTraces\t\"Why is this request slow?\"\tJaeger, Tempo, Sentry\nQuick Start by Use Case\n\n\"I just want to know if it's down\" → UptimeRobot (free) or Uptime Kuma (self-hosted). See simple.md.\n\n\"I need to debug production errors\" → Sentry with your framework SDK. 5-minute setup. See apm.md.\n\n\"I want real observability\" → Prometheus + Grafana + Loki. See prometheus.md.\n\n\"I need to centralize logs\" → Loki for simple, ELK for complex queries. See logs.md.\n\nWhat to Monitor\nApplications (RED Method)\nRate — requests per second\nErrors — error rate by endpoint\nDuration — latency (p50, p95, p99)\nInfrastructure (USE Method)\nUtilization — CPU, memory, disk usage\nSaturation — queue depth, load average\nErrors — hardware/system errors\nAlerting Principles\nDo\tDon't\nAlert on symptoms (user impact)\tAlert on causes (CPU high)\nInclude runbook link\tRequire investigation to understand\nSet appropriate severity\tMake everything P1\nRequire action\tAlert on \"interesting\" metrics\n\nAlert fatigue kills monitoring. If alerts are ignored, you have no monitoring.\n\nFor alert configuration, severities, and on-call setup, see alerting.md.\n\nCost Comparison\nSolution\tMonthly Cost (small)\tMonthly Cost (medium)\nUptimeRobot\tFree\t$7\nUptime Kuma\t$5 (VPS)\t$5 (VPS)\nSentry\tFree / $26\t$80\nGrafana Cloud\tFree tier\t$50+\nDatadog\t$15/host\t$23/host + features\nSelf-hosted stack\t$10-20 (VPS)\t$50-100 (VPS)\nCommon Mistakes\nStarting with Prometheus/Grafana when Uptime Kuma would suffice\nNo alerting (dashboards nobody watches)\nToo many alerts (alert fatigue → ignored)\nMissing runbooks (alert fires, nobody knows what to do)\nNot monitoring from outside (only internal checks)\nStoring logs forever (cost explodes)"
  },
  "trust": {
    "sourceLabel": "tencent",
    "provenanceUrl": "https://clawhub.ai/ivangdavila/monitoring",
    "publisherUrl": "https://clawhub.ai/ivangdavila/monitoring",
    "owner": "ivangdavila",
    "version": "1.0.0",
    "license": null,
    "verificationStatus": "Indexed source record"
  },
  "links": {
    "detailUrl": "https://openagent3.xyz/skills/monitoring",
    "downloadUrl": "https://openagent3.xyz/downloads/monitoring",
    "agentUrl": "https://openagent3.xyz/skills/monitoring/agent",
    "manifestUrl": "https://openagent3.xyz/skills/monitoring/agent.json",
    "briefUrl": "https://openagent3.xyz/skills/monitoring/agent.md"
  }
}