etc/fixbot-logwatch.py
author Tero Marttila <terom@fixme.fi>
Thu, 04 Feb 2010 19:41:25 +0200
changeset 41 9be5b4525e78
parent 40 b9fdb7710768
child 46 ee58a22e5baa
permissions -rw-r--r--
fixup etc/fixbot-nexus.py
from fixbot.logwatch import filters
from fixbot.logwatch.sources import *

## shared secret for API client
api_secret = "xyz"

## Path to logfiles
logwatch_dir = "logs/"

## Iterable of LogSource objects
logwatch_sources = (
    Fifo("test", logwatch_dir + "/test.fifo", (
        filters.all,
    )),
)