90DaysOfDevOps/Days/Monitoring/Elastic Stack/logstash/pipeline/logstash.conf
2022-03-28 08:11:09 +01: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}"
}
}