SumoLogic/sumologic-log4j2-appender

Turning off "SumoBufferFlusherThread" log messages

Opened this issue · 2 comments

Hi,
I am seeing a large number of DEBUG messages of similar type to below which are filling up in Sumo Logic pretty much accompanying all logs getting pushed.

DEBUG 2020-04-21 13:44:18,818 [SumoBufferFlusherThread] : Tue Apr 21 13:44:18 AEST 2020 - Flushing and sending out 147 messages (0 messages left)
DEBUG 2020-04-21 13:44:18,818 [SumoBufferFlusherThread] : Sending out data

Is there a way to turn this log messages off from a setting/config in log4j2.xml?

Thanks.

Hi @aimtiaz11 , Were you able to find a solution for this issue? We are facing the same in MuleSoft and it would be really helpful if you can share the solution implemented?

Regards,
Hariprasath Udayakumar.

@HariprasathUdayakumar , Only way is by adding filters to log4j to exclude those log entries.

<Filters>
        <RegexFilter regex=".*Flushing and sending out.*" onMatch="DENY" onMismatch="NEUTRAL"/>
        <RegexFilter regex="Sending out data" onMatch="DENY" onMismatch="NEUTRAL"/>
        <RegexFilter regex="Successfully sent log request to Sumo Logic" onMatch="DENY" onMismatch="NEUTRAL"/>
   </Filters>