localization: logging architecture (#16239)

* Translate logging architecture

* Add origin english doc

* FIX missing content

* Fix missing content

* Fix missing content

* Update content/zh/docs/concepts/cluster-administration/logging.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/zh/docs/concepts/cluster-administration/logging.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/zh/docs/concepts/cluster-administration/logging.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/zh/docs/concepts/cluster-administration/logging.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/zh/docs/concepts/cluster-administration/logging.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Update content/zh/docs/concepts/cluster-administration/logging.md

Co-Authored-By: Tim Bannister <tim@scalefactory.com>

* Leave sidebar untranslated
This commit is contained in:
fang duan
2019-09-15 20:56:38 +08:00
committed by Kubernetes Prow Robot
parent 3120d4f413
commit be8c86a0e5
12 changed files with 1149 additions and 0 deletions
@@ -0,0 +1,25 @@
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>