========

Supervisor

WARNING!!!!

  • This gem is extremely rough. There are no tests of any kind. Use at your own risk!

Delayed Jobs Administration for the Masses!

Built for/by Contently by thoughpunch

Description

supervisor is a Sinatra-based web front-end for managing Delayed Jobs heavily inspired by the excellent delayed_job_web gem.

What makes supervisor unique is that it can be run in one of two modes. 'Gem' mode runs the mounted Sinatra app inside your Rails app via a route. 'Stand Alone' mode can be run from the same server or even a different location, provided that you configure the database settings to connect to the instance that is storing the delayed jobs. It's a Sinatra app, it's a Gem, it's a Sinatra app inside a gem!

Installation

gem install 'supervisor'

Usage

Gem Mode

  • Mount the Sinatra app in your route.rb file like so:
  • match "/jobs" => Supervisor::App, :anchor => false

Stand Alone Mode

  • Cloning the entire repo into a directory and run the following command will start the stand-alone Sinatra app.
  • ruby supervisor_app.rb`

RoadMap

The overall goal is to allow full management of Delayed Jobs workers and tasks from both inside and outside a Rails App. To do so might require stubbing enough Rails functionality that Delayed::Worker and Delayed::Command can run without error.

  1. Make fully functional as stand alone app
    1. Ensure can use any ActiveRecord-supported database
  2. Add PID/Daemon monitoring for Delayed Job Deamons
    1. Ability to restart jobs if not running from outside Rails app
  3. Delayed Job log parsing/tailing
    1. Tail all delayed_job logs in the view via JS like so
  4. Ability to edit jobs on the fly, individually or in bulk
    1. Change PID, queue, run_at
  5. Delayed Jobs statistics and processing numbers
    1. Store jobs total and jobs per second while app is running, maybe store in YAML?
    2. Use request-log-analyzer for past dj stats (Note: Current version can not parse logs from Delayed Job v3.0 and later)
    3. Realtime Graphs and charts
  6. Write Tests
    1. Integration tests for Sinatra App, unit tests for all modules and classes.
    2. Version lock all gems after testing

Contributing

  1. Fork it
  2. Writer tests or extend functionality from the roadmap
  3. Submit a pull request