90DaysOfDevOps/docs/2022/Monitoring/Elastic Stack/logstash/pipeline/logstash.conf
2023-03-14 11:03:42 -04: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}"
}
}