19 lines
313 B
YAML
19 lines
313 B
YAML
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: logstash-config
|
|
namespace: app-notifications
|
|
data:
|
|
logstash.conf: |
|
|
input {
|
|
beats {
|
|
port => 5044
|
|
}
|
|
}
|
|
filter {
|
|
if [level] == "DEBUG" { drop {} }
|
|
}
|
|
output {
|
|
stdout { codec => json } # for testing
|
|
}
|