0
0
Fork 0
mirror of https://github.com/alerta/alerta.git synced 2025-01-24 17:29:39 +00:00
alerta_alerta/examples/plugins/forwarder/mlm-2.conf
Nick Satterly 1538a97717
Add forwarder plugin for federated Alerta (#1161)
* Add alerts and action forwarder plugin for federated setups

* Add tests for forwarder plugin
2020-04-30 21:26:49 +02:00

18 lines
557 B
Text

# DEBUG=True
LOG_LEVEL='INFO'
BASE_URL='http://mlm2.local.alerta.io:10002'
DATABASE_URL='postgres:///mlm2'
PLUGINS=['forwarder']
FWD_DESTINATIONS = [
(
'http://mom1.local.alerta.io:9001',
{'key': '07648181-3a9d-40fd-9d22-5f7457402adf', 'secret': 'YzdmZGUyYmVhOTAxY2U2MmVlM2Y1YWQwNmEyMjNiOTYK'},
['alerts', 'actions']
),
(
'http://mom2.local.alerta.io:9002',
{'key': '57814c53-d92d-4706-b1e3-3c8377f4cf03', 'secret': 'ZDg3Yjg0MTM2ODJkZDgyNzE3MjE5MzFlYTdiYzI0YzQK'},
['alerts', 'actions']
),
]