elstat/config.example.py

32 lines
585 B
Python
Raw Normal View History

2018-07-07 22:06:32 +00:00
PORT = 8069
PASSWORD = '123456'
2018-07-07 22:06:32 +00:00
SERVICES = {
'elixire': {
'description': "elixi.re's backend",
'adapter': 'http',
2018-07-07 22:06:32 +00:00
'adapter_args': {
'url': 'https://elixi.re/api/hello'
2018-07-07 22:06:32 +00:00
},
'poll': 10,
'alerts': ['beep'],
2018-07-07 22:06:32 +00:00
},
'dabian': {
'description': 'elixi.re main server',
'adapter': 'ping',
'adapter_args': {
'address': '192.168.1.1'
},
'poll': 15,
'alerts': ['beep'],
}
}
ALERTS = {
'bepsi': {
'type': 'discord',
'url': 'beep boop'
2018-07-07 22:06:32 +00:00
}
}