Using logstash 2.3.4 on a windows server with a config file. My config file contains the below output definition:
output {
elasticsearch {
index => "indexname"
}
}
I'm starting logstash with the -f
and -r
flags. Unfortunately, logstash is printing every log entry that comes through out to the console and I fear this is using up unnecessary CPU cycles. I looked around as to how to disable this, and the only hint I can find is to not have a stdout
entry (which I do not). How do I disable this output? I do not want logstash to be constantly printing to a console no one is going to be looking at.
Thank you in advance!