commit | 73d335260422842be27e1c976c021164082113ed | [log] [tgz] |
---|---|---|
author | Michal Kobus <mkobus@mirantis.com> | Mon Dec 10 11:41:13 2018 +0100 |
committer | Michal Kobus <mkobus@mirantis.com> | Mon Dec 10 15:32:09 2018 +0100 |
tree | 9228b9d973eb866ea551b6699d76fcb4ec2e58f1 | |
parent | 23ba2f7e898af721d84878a85bdf60fd13e3414f [diff] |
Add configuring hashing func via SF_NOTIFIER_ALERT_ID_HASH_FUNC env var Change-Id: I7c4a2592a85825d75fe0c18c18789fcfc3d0ceff Related-bug: PROD-25673 (PROD:25673)
Prometheus Alertmanager webhook receiver sending alert notification to Salesforce.
Install Python dependencies:
$ virtualenv venv $ venv/bin/pip install -e . $ source sf_notifier/vars/development
Add to settings/development.py
credentials for your Salesforce customer (not engineering) account:
SF_CONFIG = { 'AUTH_URL': 'xxx', 'USERNAME': 'xxx', 'PASSWORD': 'xxx', 'ORGANIZATION_ID': 'xxx', 'ENVIRONMENT_ID': 'xxx', 'SANDBOX_ENABLED': True }
You may also specify environment variables to override Python settings:
export SFDC_AUTH_URL="xxx" export SFDC_USERNAME="xxx" export SFDC_PASSWORD="xxx" export SFDC_ORGANIZATION_ID="xxx" export SFDC_ENVIRONMENT_ID="xxx" export SFDC_SANDBOX_ENABLED=true
Run server:
$ venv/bin/uwsgi --http 127.0.0.1:5000 --wsgi-file sf_notifier/server.py --callable app_dispatch
Check in browser:
http://127.0.0.1:5000/metrics