Call the ping URL at the end of your Python script or Celery task.
import requests
# your job logic here
requests.get("https://crondash.dev/ping/YOUR_KEY", timeout=5)Wrap in a try/except so a network issue doesn't break your job.
try:
requests.get("https://crondash.dev/ping/YOUR_KEY", timeout=5)
except Exception:
pass # don't let ping failure break the jobCronDash is in early access. Drop your email and we'll send you credentials.
More docs