Files
bro-app-devopts/docker/elk/logstash/pipeline/logstash.conf
2021-06-22 15:13:46 +09:00

51 lines
826 B
Plaintext
Executable File

input {
## beats {
## port => 5044
## }
# tcp {
# port => 5000
# }
rabbitmq {
host => "ibpcorp.c-xtra.com:49072"
queue => "web.debug"
user => "ibpcorp"
password => "KjUuC754D5xTSpqf"
threads => 1
vhost => "ibpcorp"
passive => true
}
rabbitmq {
host => "ibpcorp.c-xtra.com:49072"
queue => "web.error"
user => "ibpcorp"
password => "KjUuC754D5xTSpqf"
threads => 1
vhost => "ibpcorp"
passive => true
}
rabbitmq {
host => "ibpcorp.c-xtra.com:49072"
queue => "web.info"
user => "ibpcorp"
password => "KjUuC754D5xTSpqf"
threads => 1
vhost => "ibpcorp"
passive => true
}
}
## Add your filters / logstash plugins configuration here
output {
elasticsearch {
hosts => "elasticsearch:9200"
user => "elastic"
password => "changeme"
ecs_compatibility => disabled
}
}