wiki:JobControlPlugin

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:

Jobcontrol's 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 IdLast RunStatusNext RunConfiguration
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

15873 by rjollos on 2016-09-07 21:52:33
Remove empty directory
7879 by thanos on 2010-04-22 15:00:51
tried to add a data table
7870 by thanos on 2010-04-19 16:32:50
(more)

Author/Contributors

Author: Thanos Vassilakis
Maintainer: thanos vassilakis
Contributors:

Last modified 2 years ago Last modified on Apr 5, 2022, 6:10:02 AM

Attachments (2)

Download all attachments as: .zip