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 am using Amazon Linux 2015, Logstash 1.5.1 and this configuration file.
input { zeromq { address => "tcp://127.0.0.1:8006" mode => "client" topology => "pubsub" } } filter { json { source => "message" target => "message" } date { match => ["_timestamp", "UNIX_MS"] remove_field => ["_timestamp"] } mutate { merge => ["tags", "[_tags]"] remove_field => "[_tags]" } geoip { source => "[_origin]" target => "_geoip" } useragent { source => "[_userAgent]" target => "_parsedUserAgent" } } output { if [_organization] and [_organization][slug] =~ /.+/ and [_api] and [_api][id] { elasticsearch { index => "events-%{[_organization][slug]}-%{[_api][id]}-%{+YYYYMMdd}" document_type => "events" template_name => "logstash" manage_template => false cluster => "elasticsearch_felipe" } if [_clientApplication] and [_clientApplication][id] { http { http_method => "put" url => "http://localhost:9200/events-%{[_organization][slug]}-%{[_api][id]}-%{+YYYYMMdd}/_alias/events-by-client-app-%{[_organization][slug]}-%{[_clientApplication][id]}-%{+YYYYMMdd}" message => '{ "filter" : { "term" : { "_clientApplication.id" : "%{[_clientApplication][id]}" } } }' format => "message" content_type => "application/json" workers => 2 } } } }
When I try to stop logstash service sometimes it never dies and sometimes I have this error logstash-plugins/logstash-input-zeromq#5
The text was updated successfully, but these errors were encountered:
Is this a separate problem than logstash-plugins/logstash-input-zeromq#5?
Sorry, something went wrong.
No branches or pull requests
I am using Amazon Linux 2015, Logstash 1.5.1 and this configuration file.
When I try to stop logstash service sometimes it never dies and sometimes I have this error
logstash-plugins/logstash-input-zeromq#5
The text was updated successfully, but these errors were encountered: