Merge pull request #416 from 3dwardch3ng/infra/logstash

add multi-pipelines configmap for logstash
This commit is contained in:
2024-07-10 17:17:42 +10:00
committed by GitHub
3 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
input {
file {
path => "/tmp/misc"
}
}
output {
stdout { }
}

View File

@@ -0,0 +1,8 @@
input {
file {
path => "/tmp/omada"
}
}
output {
stdout { }
}

View File

@@ -0,0 +1,4 @@
- pipeline.id: omada
path.config: "/opt/bitnami/logstash/config/omada.conf"
- pipeline.id: misc
path.config: "/opt/bitnami/logstash/config/misc.conf"