A job scheduler and monitoring plugin for Trac
Notice: This plugin is in alpha stage: this module is under development and suggestions are welcome. Please add your feature requests tickets against the JobControlPlugin component.
Description
The plugin lets you set up and manage and monitor scheduled jobs. It adds the following new Admin screens to Trac:
- Job Admin - Lists all jobs and lets you add, edit and delete jobs.
- Job Status Map - See the status of the last run of all the jobs. From here you can drill down to the run view of a particular job.
- Run View - Lists all job runs, showing you the runs status form where you can drill down to the runs log.
- Log Admin - Clean-up logs and other tasks.
Each job run environment and schedule is specified by the version of a single configuration file - a Python script - in the SCM. Therefore any changes are tracked across versions. This script is used to create the sandbox and invoke the job.
The Job Admin Screen:
The Job Edit Screen:
Here is an example of a job configuration:
from jobcontrolplugin import JobSpec, today from logging import DEBUG class MyJob(JobSpec): """ Run this script with logging in debug mode. Run every 45 minutes. Run /usr/local/etc/myscript at yesterday's date as a command argument. """ grouping = "/All Jobs/Tests" log_level = DEBUG cron = "* * * 45"; cmd = "/usr/local/etc/myscript --date=%s"; % today(-1) run = "runA, runB"; def setUp(self): pass def tearDown(self): pass def runA(self): pass @dependsOn(runA) def runB(self): pass MyJob.run()
Then check it in and make the Job record point to it:
Job Id | Last Run | Status | Next Run | Configuration |
My Job | 12:45 Today | 13:00 Today | OK | http://trac-hacks.org/browser/myjob.py?rev=6077 |
Bugs/Feature Requests
Existing bugs and feature requests for JobControlPlugin are here.
If you have any issues, create a new ticket.
Download
Not yet available.
Source
You will be able to check out alpha versions of this JobControlPlugin for Trac 0.10 from here using Subversion, or browse the source with Trac.
This plugin is not yet available for Trac version 0.12 and above.
Recent Changes
Author/Contributors
Author: Thanos Vassilakis
Maintainer: thanos vassilakis
Contributors:
Attachments (2)
-
jobcontrol-jobadmin.png (38.8 KB) - added by 15 years ago.
Jobcontrol's job Admin screen
- jobcontrol-jobedit.png (36.7 KB) - added by 15 years ago.
Download all attachments as: .zip