values.yaml 316 B

123456789101112
  1. persistence:
  2. enabled: true
  3. logstashConfig:
  4. logstash.yml: |
  5. http.host: 0.0.0.0
  6. xpack.monitoring.enabled: false
  7. logstashPipeline:
  8. uptime.conf: |
  9. input { exec { command => "uptime" interval => 30 } }
  10. output { elasticsearch { hosts => ["http://elasticsearch-master:9200"] index => "logstash" } }