- persistence:
- enabled: true
- logstashConfig:
- logstash.yml: |
- http.host: 0.0.0.0
- xpack.monitoring.enabled: false
- logstashPipeline:
- uptime.conf: |
- input { exec { command => "uptime" interval => 30 } }
- output { elasticsearch { hosts => ["http://elasticsearch-master:9200"] index => "logstash" } }
|