Logstash.instrument.periodicpoller.jvm remove from log

how do i disable all the logs debug of logstash.instrument.periodicpoller.jvm
it is filling my log with junk

please assist
thanks
claudia

Logging config is addressed in the Logstash Logging docs.

Global log level is set in the config/logstash.yml using the log.level setting.

You can configure a specific logger to an alternate level by adding the following to your config/log4j2.properties and restarting the Logstash process:

logger.jvminstrument.name = logstash.instrument.periodicpoller.jvm
logger.jvminstrument.level = info

If you need to modify a running process without restarting it, you can apply these temporarily using the logging API:

curl -XPUT 'localhost:9600/_node/logging?pretty' -H 'Content-Type: application/json' -d'
{
    "logstash.instrument.periodicpoller.jvm" : "INFO"
}
'

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