Add Base Configs

This commit is contained in:
2025-01-15 05:40:18 -06:00
commit 2730549d6f
5 changed files with 86 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
input {
beats{
port => 5044
}
}
filter {
}
output {
elasticsearch {
hosts => "http://elasticsearch:9200"
index => "%{[@metadata][beat]}-%{[@metadata][version]}"
user => "elastic"
password => "password"
}
}