The filenames uploaded to S3 are auto generated by logstash, but there seems to be a way to add a "tag" to the file name. What is the proper syntaxt to preform this function?
The docs mention this as a possibility, but don't define how it should be accomplished.
I have a tag set up on my input plugin.
tags => ["hello_world"]
I was expecting to see the filenames uploaded to s3 to be something like:
ls.s3.312bc026-2f5d-49bc-ae9f-5940cf4ad9a6.2013-04-18T10.00.hello_world.part0.txt
but getting:
ls.s3.312bc026-2f5d-49bc-ae9f-5940cf4ad9a6.2013-04-18T10.00.part0.txt
I looked at the rubydbug output of my events and see the tag hello_world being applied to my events.
"tags" => [
[0] "hello_world"
]