I'm trying to build something that would put logs into s3.
In this case i'm working with netflow and my first step was to just get something out there.
input {
udp {
port => 9995
codec => netflow
}
}
output {
s3{
access_key_id => "REMOVED"
secret_access_key => "REMOVED"
bucket => "REMOVED"
}
file {
path => "/var/log/logstash/test.log"
}
}
The file output is showing the flows decoded. however the s3 output shows a timestamp, an origin IP and %message, it's allso chunking them up into 5MB files.
Any direction would be appreciated.