With the current Logstash version (5.3), and the S3 output plugin, I see the prefix option "supports string interpolation". My question is, can I interpolate based on current date/time, with multiple levels of directories, like this:
s3 {
prefix => "logstash-test/%{+YYYY}/%{+MM}/%{dd}/"
}
Or am I restricted to string interpolation based strictly on simple field values like this:
s3 {
prefix => "logstash-test/%{event}/"
}