-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.py
More file actions
34 lines (24 loc) · 830 Bytes
/
constants.py
File metadata and controls
34 lines (24 loc) · 830 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
THRESHOLD_STATUS_OK = 1
THRESHOLD_STATUS_WARNING = 3
THRESHOLD_STATUS_CRITICAL = 4
STATUS_GOOD = 'good'
STATUS_WARNING = 'warning'
STATUS_CRITICAL = 'critical'
URL_CLOUD_HEALTH = 'http://status.cloudhealthtech.com'
SOURCE_CLOUD_HEALTH = 'Cloudhealthtech'
URL_SUMOLOGIC = 'http://status.us1.sumologic.com/'
SOURCE_SUMOLOGIC = 'Sumologic'
URL_OKTA = 'https://trust.okta.com'
SOURCE_OKTA = 'Okta'
URL_NETSUITE = 'https://status.netsuite.com/'
SOURCE_NETSUITE = 'Netsuite'
URL_AWS = 'https://status.aws.amazon.com/'
SOURCE_AWS = 'Aws Global'
URL_APICA = 'http://status.apicasystem.com/'
SOURCE_APICA = 'Apica'
URL_ADOBE = 'http://status.adobe.com/'
SOURCE_ADOBE = 'Adobe'
URL_AZURE = 'https://azure.microsoft.com/en-us/status/'
SOURCE_AZURE = 'Azure'
URL_GOOGLE = 'https://status.cloud.google.com/'
SOURCE_GOOGLE = 'Google'