elstat/config.example.py

21 lines
417 B
Python
Raw Normal View History

2018-07-07 22:06:32 +00:00
PORT = 8069
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
},
'dabian': {
'description': 'elixi.re main server',
'adapter': 'ping',
'adapter_args': {
'address': '192.168.1.1'
},
'poll': 15
}
}