npx skills add smithery/aj-geddes --skill uptime-monitoring
aj-geddes/useful-ai-prompts
uptime-monitoring
Implement uptime monitoring and status page systems for tracking service availability. Use when monitoring application uptime, creating status pages, or implementing health checks.
Installation
npx skills add aj-geddes/useful-ai-prompts --skill uptime-monitoring
Similar popular skills
Related neighbors and high-traction skills in the same topics — useful to compare before installing.
Installs, configures, and troubleshoots Network Flow Monitor agents on EC2 instances to monitor…
3.2K installsSetup Sentry AI Agent Monitoring in any project. Use when asked to monitor LLM calls, track AI …
2.8K installsTrack reviews, ratings, sentiment, and brand mentions across Google Maps, Booking.com, TripAdvi…
2.5K installsTrack and analyze portfolio company performance against plan. Ingests monthly/quarterly financi…
8 installsSetup Sentry AI Agent Monitoring in any project. Use when asked to monitor LLM calls, track AI …
808 installs>- **ANALYSIS SKILL** - Observe Aspire apps: logs, traces, metrics, resource state, telemetry e…
7 installsAlso in this package
Other skills from aj-geddes/useful-ai-prompts · top by installs.
npx skills add aj-geddes/useful-ai-prompts
More details
Agent compatibility
Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.
Also listed on
Alternate registries and mirrors of this skill.
Repository health
main
Package contents
Files included with this skill beyond the listing page.
-
skill md
SKILL.md2,444 B -
docs
SUMMARY.md2,337 B
History
- First seen on skills.sh
- First recorded snapshot · 466 installs
SKILL.md
Uptime Monitoring
Table of Contents
- [Overview](#overview)
- [When to Use](#when-to-use)
- [Quick Start](#quick-start)
- [Reference Guides](#reference-guides)
- [Best Practices](#best-practices)
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](references/health-check-endpoints.md) | Health Check Endpoints |
| [Python Health Checks](references/python-health-checks.md) | Python Health Checks |
| [Uptime Monitor with Heartbeat](references/uptime-monitor-with-heartbeat.md) | Uptime Monitor with Heartbeat |
| [Public Status Page API](references/public-status-page-api.md) | Public Status Page API |
| [Kubernetes Health Probes](references/kubernetes-health-probes.md) | 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