website/content/en/examples/admin/logging/fluentd-sidecar-config.yaml

26 lines
432 B
YAML
Raw Normal View History

2017-01-24 10:20:59 +00:00
apiVersion: v1
kind: ConfigMap
metadata:
name: fluentd-config
2017-01-24 10:20:59 +00:00
data:
fluentd.conf: |
<source>
type tail
format none
path /var/log/1.log
pos_file /var/log/1.log.pos
tag count.format1
</source>
<source>
type tail
format none
path /var/log/2.log
pos_file /var/log/2.log.pos
tag count.format2
</source>
<match **>
type google_cloud
</match>