90DaysOfDevOps/2022/Days/Monitoring/Elastic Stack/logstash/pipeline/logstash.conf
2022-11-18 14:43:39 +00:00

20 lines
262 B
Plaintext

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}"
}
}