How to disable specific log output using log4j.properties?

I am seeing a ton of org.logstash.beats.BeatHandler logs in logstash's debug out, but I would love to disable that so I can better debug our pipeline.

How would I go about that in the log4j.properties file? Currently we have the following, which I was cargo culting from the guides:

logger.beatsinput.name = org.logstash.beats.BeatsHandler
logger.beatsinput.level = info

For reference, the line I am trying to remove is

[$TIMESTAMP][DEBUG][org.logstash.beats.BeatsHandler] ...

Would prefer a solution that does not include grep -v

Pinging this

Solved... its log4j2.properties :man_facepalming:

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.