Hi,
I using Message queue RabbitMQ :
Client (Using Beat) ->Logstash (forwarder) -> RabbitMQ -> Logstash (Indexer) -> ES
I got errror when i config on Logstash Indexer, Out is ES. But when i see all my indices, new name indices : "%{[@metadata][beat]}-2015.12.25".
Before, using Client -> logstash(indexer) -> ES, so name of new indices are ""filebeat-2015-12-25" ...
Here is my config when using rabbitMQ (file config on Logstash Indexer)
input {
rabbitmq {
host => "10.1.11.177"
queue => "logstash-queue"
#durable => true
key => "logstash-key"
exchange => "logstash-rabbitmq"
threads => 3
prefetch_count => 50
port => 5677
user => "username"
password => "password"
}
}
output {
elasticsearch {
hosts => ["10.1.11.173:9200", "10.1.11.174:9200", "10.1.1.171:9200"]
user => "username"
password => "password"
sniffing => true
manage_template => false
index => "%{[@metadata][beat]}-%{+YYYY.MM.dd}"
document_type => "%{[@metadata][type]}"
}
}
And here is config on Logstash Forwarder
input {
beats {
port => 5044
}
}
output {
rabbitmq {
exchange => "logstash-rabbitmq"
exchange_type => "direct"
key => "logstash-key"
host => "10.1.11.177"
vhost => "/"
workers => 4
durable => true
persistent => true
port => 5677
user => "username"
password => "password"
}
}
What is wrong ?
Can you help me fix it.
Thank you!