commit | a6da925105f9eb3d6b1ddab2ecb2f533237456f1 | [log] [tgz] |
---|---|---|
author | Oleksii Molchanov <omolchanov@mirantis.com> | Wed Apr 13 13:50:18 2022 +0300 |
committer | Oleksii Molchanov <omolchanov@mirantis.com> | Wed Apr 13 13:50:18 2022 +0300 |
tree | d6f2c724bf296b6dd8c2f13f0e23e25bfb843a9d | |
parent | b373a1f861ece095f2e36b84c2b00b4ebf3652a0 [diff] |
Update docker image Related-Prod: PROD-36850 Change-Id: Ifd72ac5e56ae81af2744bf3d71e66bf725131d24
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