flexget.components.notify.notifiers.cronitor module#
- class flexget.components.notify.notifiers.cronitor.Cronitor[source]#
Bases:
objectSend messages via cronitor.
- Example::
cronitor: ABC123
- Or:
- cronitor:
monitor_code: ABC123 on_start: yes on_abort: no message: Ping host: foo.bar auth_key: secret
- base_url = 'https://cronitor.link/{monitor_code}/{status}'#
- schema = {'oneOf': [{'additionalProperties': False, 'properties': {'auth_key': {'type': 'string'}, 'host': {'type': 'string'}, 'message': {'type': 'string'}, 'monitor_code': {'type': 'string'}, 'on_abort': {'type': 'boolean'}, 'on_start': {'type': 'boolean'}}, 'required': ['monitor_code'], 'type': 'object'}, {'type': 'string'}]}#