commit | b373a1f861ece095f2e36b84c2b00b4ebf3652a0 | [log] [tgz] |
---|---|---|
author | Oleksii Molchanov <omolchanov@mirantis.com> | Thu Feb 03 18:22:18 2022 +0200 |
committer | Oleksii Molchanov <omolchanov@mirantis.com> | Thu Feb 03 18:22:18 2022 +0200 |
tree | 8403d4200b9693eb97dbdba70c136359d2e832b4 | |
parent | a069a1a6586a0761dfb80ceb3d290092a5716626 [diff] |
Update docker image Related-Prod: PROD-36767 Change-Id: Ifcff6cd0aef732e3d13af72a5b5b612c2954358c
Prometheus Alertmanager webhook receiver sending alert notification to Salesforce.
Install Python dependencies:
$ virtualenv venv -p python3 $ source venv/bin/activate (venv)$ source sf_notifier/vars/development (venv)$ pip install --upgrade pip (venv)$ pip install -e .
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)$ 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