add: logstash

This commit is contained in:
2024-11-23 17:51:05 +00:00
parent e2802f3c36
commit c34e6fc81d
5 changed files with 57 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
input {
beats {
port => 5044
}
}
output {
opensearch {
hosts => ["https://atlantishq.de:9200"]
index => "filebeat-dev-%{+YYYY.MM.dd}"
ssl_certificate_verification => false
user => "logstash"
password => "{{ opensearch_logstash_password }}"
}
}