mirror of
https://github.com/alerta/alerta-contrib.git
synced 2025-03-17 22:12:38 +00:00
25 lines
390 B
Python
25 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"
|
||
|
}
|
||
|
]
|