Everything you need to get started with QuietPulse in under 5 minutes.
Sign up with your email. It's free โ no credit card required.
In your dashboard, click "New Job" and configure:
After creating a job, you'll get a unique heartbeat URL. Call it after each successful run:
curl -s https://quietpulse.xyz/ping/your-unique-tokenIn your dashboard, you'll see two notification options. Click "Connect Telegram" to link your Telegram bot for direct personal alerts. Or configure "Webhook" to route alerts to your own systems, automation tools, or incident platforms. You can use both simultaneously.
Add the ping call at the end of your cron command:
# Backup every hour, ping on success
0 * * * * /usr/local/bin/backup.sh && curl -s https://quietpulse.xyz/ping/TOKEN
# Cleanup daily at 3am
0 3 * * * /usr/local/bin/cleanup.sh && curl -s https://quietpulse.xyz/ping/TOKEN2#!/bin/bash
set -e
# Your task here
pg_dump mydb > /backups/mydb_$(date +%Y%m%d).sql
gzip /backups/mydb_$(date +%Y%m%d).sql
# Ping QuietPulse on success
curl -sf https://quietpulse.xyz/ping/YOUR_TOKENimport requests
def my_scheduled_task():
# ... your logic here ...
pass
if __name__ == "__main__":
my_scheduled_task()
requests.get("https://quietpulse.xyz/ping/YOUR_TOKEN")async function runTask() {
// ... your logic here ...
}
await runTask();
await fetch("https://quietpulse.xyz/ping/YOUR_TOKEN");Job created but hasn't received its first ping yet.
Last ping received on time. Everything is running smoothly.
Ping is overdue but still within the grace period.
Ping missed beyond the grace period. Alert sent via your configured notification channels (Telegram and/or webhook).
Job is paused. No monitoring or alerts will be triggered.
If the ping doesn't arrive within the expected interval + grace period, QuietPulse marks the job as MISSING and sends you an alert via your configured notification channels (Telegram and/or webhook).
No. QuietPulse works with a simple HTTP GET request. If you have curl, wget, or any HTTP client, you're good to go.
Yes. The free tier includes up to 5 monitored jobs with expected intervals from 1 minute. For higher job limits, see our pricing page.
QuietPulse supports two notification channels: Telegram for direct personal alerts and Webhooks for routing alerts to your own systems, automation tools, or incident management platforms. You can use both simultaneously.