uptime-monitoring

aj-geddes/useful-ai-prompts · updated Apr 8, 2026

$npx skills add https://github.com/aj-geddes/useful-ai-prompts --skill uptime-monitoring
0 commentsdiscussion
summary

Set up comprehensive uptime monitoring with health checks, status pages, and incident tracking to ensure visibility into service availability.

skill.md

Uptime Monitoring

Table of Contents

Overview

Set up comprehensive uptime monitoring with health checks, status pages, and incident tracking to ensure visibility into service availability.

When to Use

  • Service availability tracking
  • Health check implementation
  • Status page creation
  • Incident management
  • SLA monitoring

Quick Start

Minimal working example:

// Node.js health check
const express = require("express");
const app = express();

app.get("/health", (req, res) => {
  res.json({
    status: "ok",
    timestamp: new Date().toISOString(),
    uptime: process.uptime(),
  });
});

app.get("/health/deep", async (req, res) => {
  const health = {
    status: "ok",
    checks: {
      database: "unknown",
      cache: "unknown",
      externalApi: "unknown",
    },
  };

  try {
    const dbResult = await db.query("SELECT 1");
    health.checks.database = dbResult ? "ok" : "error";
// ... (see reference guides for full implementation)

Reference Guides

Detailed implementations in the references/ directory:

Guide Contents
Health Check Endpoints Health Check Endpoints
Python Health Checks Python Health Checks
Uptime Monitor with Heartbeat Uptime Monitor with Heartbeat
Public Status Page API Public Status Page API
Kubernetes Health Probes Kubernetes Health Probes

Best Practices

✅ DO

  • Implement comprehensive health checks
  • Check all critical dependencies
  • Use appropriate timeout values
  • Track response times
  • Store check history
  • Monitor uptime trends
  • Alert on status changes
  • Use standard HTTP status codes

❌ DON'T

  • Check only application process
  • Ignore external dependencies
  • Set timeouts too low
  • Alert on every failure
  • Use health checks for load balancing
  • Expose sensitive information

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
general reviews

Ratings

4.833 reviews
  • Chinedu Sanchez· Dec 24, 2024

    uptime-monitoring reduced setup friction for our internal harness; good balance of opinion and flexibility.

  • Chinedu Jackson· Sep 25, 2024

    uptime-monitoring fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Amina Haddad· Sep 17, 2024

    uptime-monitoring has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Piyush G· Sep 9, 2024

    Solid pick for teams standardizing on skills: uptime-monitoring is focused, and the summary matches what you get after install.

  • Shikha Mishra· Aug 28, 2024

    uptime-monitoring is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Ishan Menon· Aug 16, 2024

    uptime-monitoring has been reliable in day-to-day use. Documentation quality is above average for community skills.

  • Amina Yang· Aug 8, 2024

    uptime-monitoring fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • James Ndlovu· Jul 27, 2024

    uptime-monitoring is among the better-maintained entries we tried; worth keeping pinned for repeat workflows.

  • Rahul Santra· Jul 19, 2024

    uptime-monitoring fits our agent workflows well — practical, well scoped, and easy to wire into existing repos.

  • Min Liu· Jul 7, 2024

    Solid pick for teams standardizing on skills: uptime-monitoring is focused, and the summary matches what you get after install.

showing 1-10 of 33

1 / 4