0
0
Fork 0
mirror of https://github.com/alerta/alerta-contrib.git synced 2025-03-17 22:12:38 +00:00
alerta_alerta-contrib/integrations/syslog/settings.py

25 lines
390 B
Python
Raw Normal View History

2014-10-13 11:21:16 +00:00
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"
}
]