← Back to Browse
DevOps
HealthPulse
Comprehensive API health monitoring with uptime tracking, latency alerts, and status pages.
★★★★★ 4.5
198 reviews
7.4k
installs
v1.6.0
MIT
Install
npx skilldock install health-pulse
About
HealthPulse monitors your API endpoints with configurable check intervals, multi-region probes, and intelligent alerting. Generates public status pages, tracks uptime SLA, sends alerts via Slack/email/PagerDuty, and provides historical incident reports.
Usage Example
const { monitor } = require("health-pulse");
monitor({
endpoints: [
{ url: "/health", interval: "30s", timeout: "5s" },
{ url: "/api/users", method: "GET", expect: 200 }
],
alerts: {
slack: process.env.SLACK_WEBHOOK,
threshold: 3 // alert after 3 consecutive failures
},
statusPage: "/status"
});