mirror of
https://github.com/MichaelCade/90DaysOfDevOps.git
synced 2025-02-07 17:44:18 +07:00
20 lines
262 B
Plaintext
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}"
|
|
}
|
|
}
|