Replace all your server cron jobs with a single Cronicle dashboard so you can see job status, live logs, and history in a browser without SSH access.
Run the same scheduled job across a group of servers with automatic failover if the primary scheduler goes down.
Write a custom plugin in Python or Ruby that Cronicle calls on a schedule, passing parameters as JSON and reading back progress and status.
Trigger jobs via REST API from your CI pipeline or external systems instead of waiting for a fixed cron schedule.
Requires Node.js on the server, multi-server failover needs network access between nodes and shared configuration.
Cronicle is a task scheduler and runner for servers, designed to replace the traditional cron system with a more capable and user-friendly alternative. It runs as a Node.js application and provides a web-based interface for creating, scheduling, and monitoring jobs, so you can manage scheduled tasks through a browser rather than editing configuration files on the server. The system can span multiple servers. One server acts as the primary, keeping time and assigning jobs to worker servers. Other servers sit idle until the primary sends them work. If the primary goes down, a designated backup server automatically takes over. Servers in the cluster can be grouped and tagged, and events can target a specific group rather than a single machine. Jobs can be simple shell commands or custom plugins written in any programming language that can read from standard input and write to standard output. Cronicle passes job parameters to plugins as JSON and reads back progress and status the same way. This makes it straightforward to write a plugin in Python, Ruby, Perl, or any other language without needing a specific SDK. The web interface shows real-time job status with a live log viewer, CPU and memory usage tracking per job, historical statistics with performance graphs, and support for scheduling events across multiple timezones. Long-running events can optionally be queued rather than run in parallel. External systems can receive notifications via web hooks, and a REST API allows programmatic scheduling and triggering of events using API keys for authentication. The README notes that a successor project called xyOps has been released by the same author, and Cronicle will continue receiving maintenance updates (primarily bug fixes and security patches) going forward.
← jhuckaby on gitmyhub — every repo by this author, as a profile.
Verify against the repo before relying on details.