Refactoring Consolidation Service
[sdc.git] / common-app-api / src / main / java / org / openecomp / sdc / common / log / api / ILogConfiguration.java
1 package org.openecomp.sdc.common.log.api;
2
3 public interface ILogConfiguration {
4     String MDC_KEY_REQUEST_ID = "RequestId";
5     String MDC_SERVICE_INSTANCE_ID = "ServiceInstanceId";
6     String MDC_SERVICE_NAME = "ServiceName";
7     String MDC_INSTANCE_UUID = "InstanceUUID";
8     String MDC_SERVER_IP_ADDRESS = "ServerIPAddress";
9     String MDC_SERVER_FQDN = "ServerFQDN";
10     String MDC_REMOTE_HOST = "RemoteHost";
11     String MDC_AUDIT_MESSAGE = "AuditMessage";
12     String MDC_ALERT_SEVERITY = "AlertSeverity";
13     String MDC_AUDIT_BEGIN_TIMESTAMP = "AuditBeginTimestamp";
14     String MDC_METRIC_BEGIN_TIMESTAMP = "MetricBeginTimestamp";
15     String MDC_END_TIMESTAMP = "EndTimestamp";
16     String MDC_PARTNER_NAME = "PartnerName";
17     String MDC_STATUS_CODE = "StatusCode";
18     String MDC_RESPONSE_CODE = "ResponseCode";
19     String MDC_RESPONSE_DESC = "ResponseDescription";
20     String MDC_ELAPSED_TIME = "ElapsedTime";
21     String MDC_PROCESS_KEY = "ProcessKey";
22     String MDC_TARGET_ENTITY = "TargetEntity";
23     String MDC_TARGET_SERVICE_NAME = "TargetServiceName";
24     String MDC_TARGET_VIRTUAL_ENTITY = "TargetVirtualEntity";
25     String MDC_ERROR_CATEGORY = "ErrorCategory";
26     String MDC_ERROR_CODE = "ErrorCode";
27     String MDC_ERROR_DESC = "ErrorDescription";
28     String MDC_CLASS_NAME = "ClassName";
29     String MDC_OPT_FIELD1 = "CustomField1";
30     String MDC_OPT_FIELD2 = "CustomField2";
31     String MDC_OPT_FIELD3 = "CustomField3";
32     String MDC_OPT_FIELD4 = "CustomField4";
33 }