90DaysOfDevOps/Days/Monitoring/Elastic Stack/logstash/pipeline/logstash.conf

20 lines
262 B
Plaintext
Raw Normal View History

2022-03-28 14:11:09 +07:00
input {
beats {
port => 5044
}
tcp {
port => 5000
}
}
## Add your filters / logstash plugins configuration here
output {
elasticsearch {
hosts => "elasticsearch:9200"
user => "logstash_internal"
password => "${LOGSTASH_INTERNAL_PASSWORD}"
}
}