VibeBeatby Dooitspace

VIBEBEAT GUIDE

Connect your first signal.

Start with a simple URL check, then add logs and metrics as operations require.

01

URL monitor

Enter a service name and public URL, then choose only how often to check it. Standard checks every minute and VibeBeat applies the technical settings automatically.

https://your-app.com/health
Frequency: Standard · every minute
Advanced settings: automatic
02

Heartbeat

Call this endpoint after a scheduled job completes successfully.

curl -X POST https://vibebeat.dooitspace.com/api/heartbeat/my-job \
  -H "Authorization: Bearer $INGEST_TOKEN"
03

Logs, errors, and metrics

Send JSON containing the service name and timestamp to each ingestion endpoint.

POST /api/ingest/errors
{
  "service": "your-app",
  "fingerprint": "checkout-timeout",
  "message": "Payment provider timed out",
  "timestamp": "2026-08-02T12:00:00Z"
}
04

Authentication

Ingestion and scheduler endpoints use INGEST_TOKEN and CRON_TOKEN stored as Sites secrets.