Azure Scheduled Task Monitoring
Azure offers several scheduling primitives — Functions timer triggers, Container Apps jobs, AKS CronJobs, and traditional VM crontabs. All four pair cleanly with crond.io.
Azure Functions timer triggers
The most common Azure pattern. Add a ping call at the end of your timer-triggered function:
For PowerShell:
Store CROND_KEYin the Function App's Application Settings (or Key Vault reference for production).
Container Apps jobs
Container Apps jobs run a container on a schedule. Use crond-agent as the entrypoint:
Pass CROND_PING_KEYvia the job's environment block (or Key Vault reference). The agent captures exit code and runtime — Container Apps jobs don't expose runtime in the portal by default, so this fills a real gap.
AKS CronJobs
For AKS, the same patterns from our Kubernetes integration apply directly — the crond-monitor Helm chart works on AKS without changes.
Azure VM crontabs
Standard Linux crontab on an Azure VM:
Networking
crond.io ingest at api.crond.io needs outbound HTTPS:
- Default Azure VM and Container Apps egress works without configuration
- VMs in private subnets behind NSGs need an outbound rule for 443 on the internet service tag
- Function Apps with VNet integration need outbound 443 to
Internetor to our static IPs (allowlist available on request)
Why monitor Azure Functions specifically
Azure Functions on Consumption plans suffer from cold-start delays on infrequently triggered timers — and occasional silent missed invocations during platform-level incidents. crond.io catches missed runs without relying on Application Insights, which only tells you about runs that started, not ones that never fired.