21 lines
585 B
YAML
21 lines
585 B
YAML
---
|
|
## Default Logstash configuration from Logstash base image.
|
|
## https://github.com/elastic/logstash/blob/master/docker/data/logstash/config/logstash-full.yml
|
|
#
|
|
# TODO: change _local_
|
|
http.host: "0.0.0.0"
|
|
|
|
## X-Pack security credentials
|
|
#
|
|
xpack.monitoring.enabled: false
|
|
xpack.monitoring.elasticsearch.hosts: [ "http://localhost:9200" ]
|
|
xpack.monitoring.elasticsearch.username: elastic
|
|
xpack.monitoring.elasticsearch.password: changeme
|
|
|
|
# Auto reload configs
|
|
config.reload.automatic: true
|
|
|
|
# Speedup logstash
|
|
pipeline.batch.size: 10000
|
|
pipeline.batch.delay: 400
|
|
pipeline.workers: 20
|