CSIT Fix for SDC-2585
[sdc.git] / common-app-logging / src / main / java / org / openecomp / sdc / common / log / api / LogConfigurationConstants.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * SDC
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property. All rights reserved.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20
21 package org.openecomp.sdc.common.log.api;
22
23 public final class LogConfigurationConstants {
24
25     public static final String MDC_SERVICE_INSTANCE_ID = "ServiceInstanceID";
26     public static final String MDC_SERVER_IP_ADDRESS = "ServerIPAddress";
27     public static final String MDC_REMOTE_HOST = "RemoteHost";
28     public static final String MDC_AUDIT_MESSAGE = "AuditMessage";
29     public static final String MDC_END_TIMESTAMP = "EndTimestamp";
30     public static final String MDC_ELAPSED_TIME = "ElapsedTime";
31     public static final String MDC_PROCESS_KEY = "ProcessKey";
32     public static final String MDC_TARGET_VIRTUAL_ENTITY = "TargetVirtualEntity";
33     public static final String MDC_ERROR_CATEGORY = "ErrorCategory";
34     public static final String MDC_ERROR_CODE = "ErrorCode";
35     public static final String MDC_ERROR_DESC = "ErrorDescription";
36     public static final String MDC_CLASS_NAME = "ClassName";
37     public static final String MDC_OPT_FIELD1 = "CustomField1";
38     public static final String MDC_OPT_FIELD2 = "CustomField2";
39     public static final String MDC_OPT_FIELD3 = "CustomField3";
40     public static final String MDC_OPT_FIELD4 = "CustomField4";
41     public static final String MDC_OUTGOING_INVOCATION_ID = "OutgoingInvocationId";
42     public static final String MDC_SUPPORTABLITY_ACTION = "SupportablityAction";
43     public static final String MDC_SUPPORTABLITY_CSAR_UUID = "SupportablityCsarUUID";
44     public static final String MDC_SUPPORTABLITY_CSAR_VERSION = "SupportablityCsarVersion";
45     public static final String MDC_SUPPORTABLITY_COMPONENT_NAME = "SupportablityComponentName";
46     public static final String MDC_SUPPORTABLITY_COMPONENT_UUID = "SupportablityComponentUUID";
47     public static final String MDC_SUPPORTABLITY_COMPONENT_VERSION = "SupportablityComponentVersion";
48     public static final String MDC_SUPPORTABLITY_STATUS_CODE = "SupportablityStatus";
49 }