8982b2424f5f3027a57d986f87c9fe05c864fe66
[sdc.git] /
1 ###########################################
2 # Note the conventions of the field values:
3 # type can be one of: CONFIG_ERROR, SYSTEM_ERROR, DATA_ERROR, CONNECTION_PROBLEM
4 # severity can be one of: WARN, ERROR, FATAL
5 # alarmSeverity can be one of: CRITICAL,MAJOR,MINOR,INFORMATIONAL,NONE
6 # code is a unique integer in range of 3003-9999 (3000-3002 are occupied for internal usage)
7 # The above enumeration values are out-of-the-box and can be changed in code. 
8 # In case of config and code mismatch, the appropriate error will be printed to log
9 #
10 # Range of FE codes - 8000-9999
11
12
13 errors:
14     FeHealthCheckConnectionError: {
15         type: CONNECTION_PROBLEM,
16         code: ASDC_8000,
17         severity: ERROR,
18         description: "Connection error during FE Health Check",
19         alarmSeverity: CRITICAL
20     }
21     FeHttpLoggingError: {
22         type: SYSTEM_ERROR,
23         code: ASDC_8001,
24         severity: ERROR,
25         description: "Error when logging FE HTTP request/response",
26         alarmSeverity: MINOR
27     }
28     FePortalServletError: {
29         type: SYSTEM_ERROR,
30         code: ASDC_8002,
31         severity: ERROR,
32         description: "Error when trying to access FE Portal page",
33         alarmSeverity: MAJOR
34     }
35     FeHealthCheckGeneralError: {
36         type: SYSTEM_ERROR,
37         code: ASDC_8004,
38         severity: ERROR,
39         description: "General error during FE Health Check",
40         alarmSeverity: CRITICAL
41     }
42     FeHealthCheckRecovery: {
43         type: RECOVERY,
44         code: ASDC_8005,
45         severity: INFO,
46         description: "BE Health Check Recovery",
47         alarmSeverity: INFORMATIONAL
48     }