Add wait 30s for auth error

- prevent auth requests flood (like with wrong credentials)
- makes easier log tracking

Change-Id: Id0e9c33a78d4623b08c6f5e24eb220d2c908f689
Related-bug: PROD-29246 (PROD:29246)
1 file changed
tree: 80d31321b8ad05b5f0f35c3fde2a0c37d878bb21
  1. sf_notifier/
  2. .gitignore
  3. .gitreview
  4. LICENSE
  5. README.md
  6. requirements.txt
  7. run-func-tests.sh
  8. run-tests.sh
  9. setup.py
  10. test-requirements.txt
  11. tox.ini
README.md

sf-notifier

Prometheus Alertmanager webhook receiver sending alert notification to Salesforce.

Development

Setup

Install Python dependencies:

$ virtualenv venv
$ venv/bin/pip install -e .
$ source sf_notifier/vars/development

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/bin/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