Files
bro-app-devopts/docker/elk/logstash/pipeline/logstash.conf
Jeonghwa Koo a0e6539667 sfsdf
2021-06-07 20:47:39 +09:00

21 lines
269 B
Plaintext
Executable File

input {
## beats {
## port => 5044
## }
tcp {
port => 5000
}
}
## Add your filters / logstash plugins configuration here
output {
elasticsearch {
hosts => "elasticsearch:9200"
user => "elastic"
password => "changeme"
ecs_compatibility => disabled
}
}