diff options
author | makefunstuff <[email protected]> | 2024-06-29 22:11:12 +0200 |
---|---|---|
committer | makefunstuff <[email protected]> | 2024-06-29 22:11:12 +0200 |
commit | 297563e5d6b0f6357d2fd2e6ea800772dd7c3c8b (patch) | |
tree | 34d89307860a743f655851b9d075ab83d15062a9 | |
parent | bf9ac544bbd95d57199b3a81adc69ef3b0b59ea7 (diff) | |
download | k3s-lab-297563e5d6b0f6357d2fd2e6ea800772dd7c3c8b.tar.gz |
parse json
Diffstat (limited to '')
-rw-r--r-- | tools/eck-operator/templates/logstash.yaml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tools/eck-operator/templates/logstash.yaml b/tools/eck-operator/templates/logstash.yaml index 921ec7d..cb2ceb4 100644 --- a/tools/eck-operator/templates/logstash.yaml +++ b/tools/eck-operator/templates/logstash.yaml @@ -16,6 +16,11 @@ spec: port => 5044 } } + filter { + json { + source => "message" + } + } output { elasticsearch { hosts => [ "${DEFAULT_ES_HOSTS}" ] |