commit | 8023fd4a4b2954bab1dbe39d47cbe0c0e2515be3 | [log] [tgz] |
---|---|---|
author | Michal Kobus <mkobus@mirantis.com> | Thu Jun 22 15:47:58 2023 +0200 |
committer | Michal Kobus <mkobus@mirantis.com> | Tue Jul 11 10:06:03 2023 +0000 |
tree | d1e7f37272d9bbec06ddb4a29169c0fefb36b901 | |
parent | bad1051383846cd9a3d29d408399d53a2605a5ef [diff] |
Fix NewConnectionError Try Again - add 3 retries (0 by default) with backoff to mitigate "Failed to establish a new connection: [Errno -3] Try again" - retry is based on urllib3 as request does not do retires for failed connections (only for failed DNS lookups, socket connections and connection timeouts) Change-Id: Ic92a823d02d2afc47f1bc71477695ce33e4be1c6 Related-PROD: PRODX-33632
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