Logstash.stdout large size?

hi im using logstash to send logs to redis
but i don't understand wwey that logstash.stdout have this size

what is the problem

thank you !
:qw! lol

I'm guessing you have a stdout output in your configuration that dumps all messages to stdout, which is then redirected to this file. If that's not the case, what's the contents of the file?

Next time, please use copy/paste instead of posting screenshots.

1 Like

thnak you
i have just 2 config files in my logstash shipper

input_rsyslog.conf

input {
udp {
port => 5000
type => "syslog"
}
}

and

output_redis.conf

output {

stdout { codec => rubydebug }

redis { host => "XXX.X" data_type => "list" key => "logstash" }

}

and thank you for your help

And right here's the problematic line:

stdout { codec => rubydebug }
3 Likes

yes sorry realy i forget it

thank you very much !

Works for me either!

Thank you!