0
0
Fork 0
mirror of https://github.com/alerta/alerta-contrib.git synced 2025-03-16 21:43:30 +00:00
alerta_alerta-contrib/integrations/syslog/settings.py
2015-01-26 11:55:20 +00:00

24 lines
390 B
Python

ENDPOINT = "http://localhost:8080"
API_KEY = None
PARSER_DIR = 'parsers'
PARSERS = [
{
"priority": "kern.*",
"resource": "foo"
},
{
"priority": "user.*",
"parser": "UserLogParser"
},
{
"priority": "mail.*",
"parser": "MailLogParser"
},
{
"priority": "local0.*",
"parser": "Local0Parser"
}
]