Initial commit

This commit is contained in:
Ismo Vuorinen
2024-05-25 17:44:33 +03:00
committed by GitHub
commit cbbff74722
42 changed files with 1922 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
input {
beats {
port => 5044
}
}
filter {
}
output {
elasticsearch {
hosts => "${ELASTICSEARCH_HOST_PORT}"
user => "${ELASTIC_USERNAME}"
password => "${ELASTIC_PASSWORD}"
ssl => true
ssl_certificate_verification => false
cacert => "/certs/ca.crt"
}
}