Refactoring Consolidation Service
[sdc.git] / common-app-api / src / main / java / org / openecomp / sdc / common / ecomplog / api / IEcompLogConfiguration.java
1 package org.openecomp.sdc.common.ecomplog.api;
2
3 public interface IEcompLogConfiguration  {
4     String PROPERTY_LOGGING_FILE_NAME = "com.att.ecomplog.logging.file";
5     String PROPERTY_LOGGING_FILE_PATH = "com.att.ecomplog.logging.path";
6     String GENERAL_LOGGER_NAME = "com.att.ecomplog";
7     String METRICS_LOGGER_NAME = "com.att.ecomplog.metrics";
8     String PERF_LOGGER_NAME = "com.att.ecomplog.perf";
9     String POLICY_LOGGER_NAME = "com.att.ecomplog.policy";
10     String SECURITY_LOGGER_NAME = "com.att.ecomplog.security";
11     String SERVER_LOGGER_NAME = "com.att.ecomplog.server";
12     String AUDIT_LOGGER_NAME = "com.att.ecomplog.audit";
13     String ERROR_LOGGER_NAME = "com.att.ecomplog.error";
14     String DEBUG_LOGGER_NAME = "com.att.ecomplog.debug";
15     String MDC_KEY_REQUEST_ID = "RequestId";
16     String MDC_SERVICE_INSTANCE_ID = "ServiceInstanceId";
17     String MDC_SERVICE_NAME = "ServiceName";
18     String MDC_INSTANCE_UUID = "InstanceUUID";
19     String MDC_SERVER_IP_ADDRESS = "ServerIPAddress";
20     String MDC_SERVER_FQDN = "ServerFQDN";
21     String MDC_REMOTE_HOST = "RemoteHost";
22     String MDC_ALERT_SEVERITY = "AlertSeverity";
23     String MDC_BEGIN_TIMESTAMP = "BeginTimestamp";
24     String MDC_END_TIMESTAMP = "EndTimestamp";
25     String MDC_PARTNER_NAME = "PartnerName";
26     String MDC_STATUS_CODE = "StatusCode";
27     String MDC_RESPONSE_CODE = "ResponseCode";
28     String MDC_RESPONSE_DESC = "ResponseDescription";
29     String MDC_ELAPSED_TIME = "ElapsedTime";
30     String MDC_PROCESS_KEY = "ProcessKey";
31     String MDC_TARGET_ENTITY = "TargetEntity";
32     String MDC_TARGET_SERVICE_NAME = "TargetServiceName";
33     String MDC_TARGET_VIRTUAL_ENTITY = "TargetVirtualEntity";
34     String MDC_ERROR_CATEGORY = "ErrorCategory";
35     String MDC_ERROR_CODE = "ErrorCode";
36     String MDC_ERROR_DESC = "ErrorDescription";
37     String MDC_CLASS_NAME = "ClassName";
38     String MDC_OPT_FIELD1 = "CustomField1";
39     String MDC_OPT_FIELD2 = "CustomField2";
40     String MDC_OPT_FIELD3 = "CustomField3";
41     String MDC_OPT_FIELD4 = "CustomField4";
42 }