Files
website/content/pt/examples/admin/logging/fluentd-sidecar-config.yaml
Jhon Mike 6aa392535c Translate content/pt/docs/concepts/cluster-administration/logging.md into Portugues (#19573)
* translating doc kubelet logging

* adjustments to the logging doc in pt recommended in the CR
2020-03-15 14:44:35 -07:00

26 lines
432 B
YAML

apiVersion: v1
kind: ConfigMap
metadata:
name: fluentd-config
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>