commit | 857365ebc4599648c1c8ce668599fa64ba90e60f | [log] [tgz] |
---|---|---|
author | aahmadzada <aahmadzada@mirantis.com> | Thu Feb 13 12:33:37 2025 +0400 |
committer | aahmadzada <aahmadzada@mirantis.com> | Thu Feb 13 16:06:48 2025 +0400 |
tree | 3d6097ab495d644a5b230bc2119e33e9654f946d | |
parent | 2174e6f1987da20dedd4cccff265cd6c63fb5db3 [diff] |
bump deps to fix CVEs - runned pip-compile --upgrade requirements.in Related-To: PRODX-49972 Related-To: PRODX-49959 Change-Id: I70f3955f92c187714a1676e0bf7761c26ff32511
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