2 * ============LICENSE_START=======================================================
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
11 * http://www.apache.org/licenses/LICENSE-2.0
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=========================================================
21 package org.openecomp.sdc.logging.servlet;
23 import org.omg.CORBA.Request;
24 import org.openecomp.sdc.logging.api.Logger;
25 import org.openecomp.sdc.logging.api.LoggerFactory;
28 import javax.servlet.*;
29 import javax.servlet.http.HttpServletRequest;
30 import java.io.IOException;
31 import java.net.InetAddress;
32 import java.net.UnknownHostException;
33 import java.util.UUID;
34 import java.util.concurrent.atomic.AtomicLong;
39 * <p>Pushes information required by EELF onto MDC (Mapped Diagnostic Context).</p>
41 * <p>This is servlet filter that should be configured in <i>web.xml</i> to be used. Example:</p>
46 * <filter-name>LoggingServletFilter</filter-name>
47 * <filter-class>org.openecomp.sdc.logging.servlet.LoggingFilter</filter-class>
50 * <filter-mapping>
51 * <filter-name>LoggingServletFilter</filter-name>
52 * <url-pattern>/*</url-pattern>
53 * </filter-mapping>
60 public class LoggingFilter implements Filter {
62 // should be cashed to avoid low-level call, but with a timeout to account for IP or FQDN changes
63 private static final HostAddressCache HOST_ADDRESS = new HostAddressCache();
64 private static final String UNKNOWN = "UNKNOWN";
66 private final static Logger log = (Logger) LoggerFactory.getLogger(LoggingFilter.class.getName());
68 public void destroy() {
71 public void doFilter(ServletRequest request, ServletResponse response,
72 FilterChain chain) throws IOException, ServletException {
78 MDC.put("RequestId", UUID.randomUUID().toString());
79 MDC.put("ServiceInstanceId", "N/A"); // not applicable
80 MDC.put("ServiceName", "ASDC");
81 MDC.put("InstanceUUID", "N/A");
83 // For some reason chooses IPv4 or IPv6 in a random way
84 MDC.put("RemoteHost", request.getRemoteHost());
86 InetAddress host = HOST_ADDRESS.get();
88 String ipAddress, hostName;
93 ipAddress = host.getHostAddress();
94 hostName = host.getHostName();
97 MDC.put("ServerIPAddress", ipAddress);
98 MDC.put("ServerFQDN", hostName);
100 if(request instanceof HttpServletRequest) {
101 String userName = ((HttpServletRequest) request).getHeader("USER_ID");
102 MDC.put("PartnerName", userName);
104 // TODO: Clarify what these stand for
105 // MDC.put("AlertSeverity", );
106 // MDC.put("Timer", );
108 chain.doFilter(request, response);
115 public void init(FilterConfig config) throws ServletException { }
117 private static class HostAddressCache {
119 private static final long REFRESH_TIME = 1000L;
121 private AtomicLong lastUpdated = new AtomicLong(0L);
122 private InetAddress hostAddress;
124 public InetAddress get() {
126 long current = System.currentTimeMillis();
127 if (current - lastUpdated.get() > REFRESH_TIME) {
129 synchronized (this) {
132 lastUpdated.set(current); // set now to register the attempt even if failed
133 hostAddress = InetAddress.getLocalHost();
134 } catch (UnknownHostException e) {