commit | 62d647d6464db43c61d9a0137995b7633a1183d1 | [log] [tgz] |
---|---|---|
author | MCP Jenkins <jenkins@ci.mcp.mirantis.net> | Wed Oct 02 01:30:15 2024 +0000 |
committer | MCP Jenkins <jenkins@ci.mcp.mirantis.net> | Wed Oct 02 01:30:15 2024 +0000 |
tree | 46e666e34fb7415b6d7b98259cb6836d140d833c | |
parent | f594e9dc40e56e4cdf22c31fbb528572c9162b66 [diff] |
Rebuild Docker image Change-Id: Ia955b592e79f0100497b655ac9ca7f22d4e82b57
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
Install pip-tools (pip example):
pip install pip-tools
Generate new dependencies (or first update direct dependencies in requirements.in):
pip-compile --upgrade requirements.in