nexus site path corrected
[portal.git] / ecomp-portal-BE / src / main / java / org / openecomp / portalapp / portal / utils / CustomLoggingFilter.java
1 /*-
2  * ================================================================================
3  * eCOMP Portal
4  * ================================================================================
5  * Copyright (C) 2017 AT&T Intellectual Property
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  * ================================================================================
19  */
20 package org.openecomp.portalapp.portal.utils;
21
22 import org.openecomp.portalsdk.core.logging.logic.EELFLoggerDelegate;
23
24 import ch.qos.logback.classic.Level;
25 import ch.qos.logback.classic.spi.ILoggingEvent;
26 import ch.qos.logback.core.filter.Filter;
27 import ch.qos.logback.core.spi.FilterReply;
28
29 /**
30  * Custom Filter class bind with logback.xml
31  * configuration file to strip out certain log messages
32  * coming out of special packages or classes.
33  *
34  */
35 public class CustomLoggingFilter extends Filter<ILoggingEvent> {
36
37         /**
38          * Custom Filter is added to strip out the continuous U-EB logging messages
39          * But make sure we log the ERROR & WARNING Level messages.
40          */
41         
42         EELFLoggerDelegate logger = EELFLoggerDelegate.getLogger(CustomLoggingFilter.class);
43                         
44         @Override
45         public FilterReply decide(ILoggingEvent event) {
46                 try {
47                         if ((event.getLevel() != Level.ERROR || event.getLevel() != Level.WARN) && 
48                                 (event.getThreadName().equalsIgnoreCase("UEBConsumerThread")) &&
49                                 (event.getLoggerName().contains("com.att.nsa") || event.getLoggerName().contains("org.apache.http"))
50                                 ) {
51                                 return FilterReply.DENY;
52                         } else {
53                                 return FilterReply.NEUTRAL;
54                         }
55                 } catch(Exception e) {
56                         logger.error(EELFLoggerDelegate.errorLogger, EcompPortalUtils.getStackTrace(e));
57                         return FilterReply.NEUTRAL;
58                 } 
59         }
60 }