aboutsummaryrefslogtreecommitdiffstats
path: root/common-app-api/src/main/java/org/openecomp/sdc/common/ecomplog/api/IEcompLogConfiguration.java
blob: 6521ea78e183e49a3f3bd65b019cf46da2c22e6d (plain)
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
35
36
37
38
39
40
41
42
package org.openecomp.sdc.common.ecomplog.api;

public interface IEcompLogConfiguration  {
    String PROPERTY_LOGGING_FILE_NAME = "com.att.ecomplog.logging.file";
    String PROPERTY_LOGGING_FILE_PATH = "com.att.ecomplog.logging.path";
    String GENERAL_LOGGER_NAME = "com.att.ecomplog";
    String METRICS_LOGGER_NAME = "com.att.ecomplog.metrics";
    String PERF_LOGGER_NAME = "com.att.ecomplog.perf";
    String POLICY_LOGGER_NAME = "com.att.ecomplog.policy";
    String SECURITY_LOGGER_NAME = "com.att.ecomplog.security";
    String SERVER_LOGGER_NAME = "com.att.ecomplog.server";
    String AUDIT_LOGGER_NAME = "com.att.ecomplog.audit";
    String ERROR_LOGGER_NAME = "com.att.ecomplog.error";
    String DEBUG_LOGGER_NAME = "com.att.ecomplog.debug";
    String MDC_KEY_REQUEST_ID = "RequestId";
    String MDC_SERVICE_INSTANCE_ID = "ServiceInstanceId";
    String MDC_SERVICE_NAME = "ServiceName";
    String MDC_INSTANCE_UUID = "InstanceUUID";
    String MDC_SERVER_IP_ADDRESS = "ServerIPAddress";
    String MDC_SERVER_FQDN = "ServerFQDN";
    String MDC_REMOTE_HOST = "RemoteHost";
    String MDC_ALERT_SEVERITY = "AlertSeverity";
    String MDC_BEGIN_TIMESTAMP = "BeginTimestamp";
    String MDC_END_TIMESTAMP = "EndTimestamp";
    String MDC_PARTNER_NAME = "PartnerName";
    String MDC_STATUS_CODE = "StatusCode";
    String MDC_RESPONSE_CODE = "ResponseCode";
    String MDC_RESPONSE_DESC = "ResponseDescription";
    String MDC_ELAPSED_TIME = "ElapsedTime";
    String MDC_PROCESS_KEY = "ProcessKey";
    String MDC_TARGET_ENTITY = "TargetEntity";
    String MDC_TARGET_SERVICE_NAME = "TargetServiceName";
    String MDC_TARGET_VIRTUAL_ENTITY = "TargetVirtualEntity";
    String MDC_ERROR_CATEGORY = "ErrorCategory";
    String MDC_ERROR_CODE = "ErrorCode";
    String MDC_ERROR_DESC = "ErrorDescription";
    String MDC_CLASS_NAME = "ClassName";
    String MDC_OPT_FIELD1 = "CustomField1";
    String MDC_OPT_FIELD2 = "CustomField2";
    String MDC_OPT_FIELD3 = "CustomField3";
    String MDC_OPT_FIELD4 = "CustomField4";
}