blob: 945e146dd53602617776ced8ed30e9be3a3ec47f [file] [log] [blame]
{{- /*
Copyright 2017-present Open Networking Foundation
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/ -}}
{{- define "onos.log-agent-configmap" }}
---
kind: ConfigMap
apiVersion: v1
metadata:
name: {{ template "onos.fullname" . }}-log-agent-configmap
data:
config: |
---
# filebeat configuration for ONOS
filebeat.inputs:
- type: log
paths:
- "/onos_logs/karaf_json.log"
fields_under_root: true
json.keys_under_root: true
json.add_error_key: true
json.overwrite_keys: true
json.message_key: "message"
multiline.pattern: '^[[:space:]]'
multiline.negate: false
multiline.match: after
# remove unneeded fields
processors:
- drop_fields:
fields: ["host", "prospector", "input"]
output.kafka:
hosts: {{ .Values.log_agent.kafka_brokers | toJson }}
topic: 'onos.log'
key: '%{[bundle.name]}'
{{- end }}