b***@logicmonitor.com
2015-06-01 14:38:01 UTC
We are using pretty trivial logstash setup. Sender configs look something
like
input {
file {
path => "/var/log/secure"
type => "secure"
}
}
output {
tcp {
host => "log02.us-east-1.logicmonitor.net"
port => 2009
mode => "client"
codec => "json"
workers => 10
}
}
And the receiver is
input {
tcp {
mode => "server"
port => 2009
codec => "json"
}
}
output {
file {
path => "/log/%{new-host}/%{path}"
codec => "json"
message_format => "%{message}"
workers => 30
}
}
We are finding that logs entries are being written out of order (seemingly
random) to the destination files on the receiver. This problem seems to
increase as the number of logs being sent to our receivers increases.
Admittedly, we are using an older 1.2 version of logstash and my first
step is to upgrade to the latest. However, I wanted to check to see if
there is something known going on.
Thanks.
like
input {
file {
path => "/var/log/secure"
type => "secure"
}
}
output {
tcp {
host => "log02.us-east-1.logicmonitor.net"
port => 2009
mode => "client"
codec => "json"
workers => 10
}
}
And the receiver is
input {
tcp {
mode => "server"
port => 2009
codec => "json"
}
}
output {
file {
path => "/log/%{new-host}/%{path}"
codec => "json"
message_format => "%{message}"
workers => 30
}
}
We are finding that logs entries are being written out of order (seemingly
random) to the destination files on the receiver. This problem seems to
increase as the number of logs being sent to our receivers increases.
Admittedly, we are using an older 1.2 version of logstash and my first
step is to upgrade to the latest. However, I wanted to check to see if
there is something known going on.
Thanks.
--
Remember: if a new user has a bad time, it's a bug in logstash.
---
You received this message because you are subscribed to the Google Groups "logstash-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to logstash-users+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.
Remember: if a new user has a bad time, it's a bug in logstash.
---
You received this message because you are subscribed to the Google Groups "logstash-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email to logstash-users+***@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.