We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I noticed that the resulting file on s3 bucket comes with additional information namely timestamp and hostname. Is this possible to ignore them?
input { stdin { } } filter { mutate { remove_field => [ "host" ] } } output { stdout { codec => rubydebug } s3 { access_key_id => "minioadmin" secret_access_key => "minioadmin" endpoint => "http://127.0.0.1:9000" bucket => "logstash" additional_settings => { "force_path_style" => true } } }
I was hoping to see 2020-07-30T00:39:35.197Z rice since host is removed by mutate filter, but I got 2020-07-30T00:39:35.197Z %{host} rice instead.
2020-07-30T00:39:35.197Z rice
host
2020-07-30T00:39:35.197Z %{host} rice
The text was updated successfully, but these errors were encountered:
Any update on this? Facing same issue
Sorry, something went wrong.
No branches or pull requests
I noticed that the resulting file on s3 bucket comes with additional information namely timestamp and hostname.
Is this possible to ignore them?
I was hoping to see
2020-07-30T00:39:35.197Z rice
sincehost
is removed by mutate filter, but I got2020-07-30T00:39:35.197Z %{host} rice
instead.The text was updated successfully, but these errors were encountered: