ecf6234cfe
Since this is a change to the table schema for all services using the ping adapter, you will have to delete the tables relating to them. - elstat.blueprints: add incidents blueprint (WIP) - elstat.blueprints: add decorators.py - elstat.blueprints: add errors.py - elstat.manager: add incidents & incident_stages tables - run: add handler for ApiError
22 lines
438 B
Python
22 lines
438 B
Python
PORT = 8069
|
|
|
|
PASSWORD = '123456'
|
|
|
|
SERVICES = {
|
|
'elixire': {
|
|
'description': "elixi.re's backend",
|
|
'adapter': 'http',
|
|
'adapter_args': {
|
|
'url': 'https://elixi.re/api/hello'
|
|
},
|
|
'poll': 10
|
|
},
|
|
'dabian': {
|
|
'description': 'elixi.re main server',
|
|
'adapter': 'ping',
|
|
'adapter_args': {
|
|
'address': '192.168.1.1'
|
|
},
|
|
'poll': 15
|
|
}
|
|
}
|