commit | 4fda16299e6cfa3964308899cc7e15e7f7c4fe36 | [log] [tgz] |
---|---|---|
author | MCP Jenkins <jenkins@ci.mcp.mirantis.net> | Fri Oct 20 01:30:07 2023 +0000 |
committer | MCP Jenkins <jenkins@ci.mcp.mirantis.net> | Fri Oct 20 01:30:07 2023 +0000 |
tree | 872b7816f031110c27a75efcdb445537139cef1e | |
parent | f6dcbb0956f255c1c2f0f4e256ab59b445011c8e [diff] |
Rebuild Docker image Change-Id: I436e0af31b4e3f6b3d820ea97aaf78919fefebe3
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