1) filebeat - logstash
normal case, you can google it
2) logstash - rabbitmq
https://stackoverflow.com/questions/23207812/logstash-rabbitmq-output-never-posts-to-exchange
3) rabbitmq -logstash
https://discuss.elastic.co/t/rabbitmq-as-logstash-input/95756
input { rabbitmq { host => "localhost" port => 15672 heartbeat => 30 durable => true exchange => "logging_queue" exchange_type => "logging_queue" } } output { elasticsearch { hosts => "localhost:9200" } stdout {} }
4) logstash - elastic
normal case, please google
normal case, you can google it
2) logstash - rabbitmq
https://stackoverflow.com/questions/23207812/logstash-rabbitmq-output-never-posts-to-exchange
output {
rabbitmq {
codec => plain
host => localhost
exchange => yomtvraps
exchange_type => direct
key => yomtvraps
# these are defaults but you never know...
durable => true
port => 5672
user => "guest"
password => "guest"
}
}
3) rabbitmq -logstash
https://discuss.elastic.co/t/rabbitmq-as-logstash-input/95756
input { rabbitmq { host => "localhost" port => 15672 heartbeat => 30 durable => true exchange => "logging_queue" exchange_type => "logging_queue" } } output { elasticsearch { hosts => "localhost:9200" } stdout {} }
4) logstash - elastic
normal case, please google
No comments:
Post a Comment
Terima kasih