commit | 915f3cfd2e2fe84c454b05206e9d9eb09810f805 | [log] [tgz] |
---|---|---|
author | Michal Kobus <mkobus@mirantis.com> | Mon Dec 10 20:09:41 2018 +0100 |
committer | Michal Kobus <mkobus@mirantis.com> | Tue Dec 11 14:24:35 2018 +0100 |
tree | bd325227069eed9f926bd8950cbaaab4a0bafa59 | |
parent | 73d335260422842be27e1c976c021164082113ed [diff] |
Add time-limited caching Update: - add caching 2MB size max, kept for 5 minutes - add re-auth for Salesforce connection error - remove unused "status" from create_case method Change-Id: I84bec7ce86ef389ddfcad2d26613f135b80b682e Related-bug: PROD-25695 (PROD:25695)
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