commit | 23ba2f7e898af721d84878a85bdf60fd13e3414f | [log] [tgz] |
---|---|---|
author | Michal Kobus <mkobus@mirantis.com> | Mon Dec 03 17:11:20 2018 +0100 |
committer | Michal Kobus <mkobus@mirantis.com> | Tue Dec 04 13:48:53 2018 +0100 |
tree | 65062c627ef43cfe790e332f842e2f439d1716bb | |
parent | ba98705b85e8658bd8cea6b21503aaa82dc0b06e [diff] |
Update case formatting: - remove env from subject - remove hardcoded advice descriptions Change-Id: I5636bc2a5f6636d4c663bb0041b7509891e9126d Related-bug: PROD-24843 (PROD:24843)
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