forked from rancher/rancher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
cluster_template.go
202 lines (174 loc) · 6.34 KB
/
cluster_template.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
package generator
var ClusterTemplate = `{{ if .clusterTarget.CurrentTarget }}
<source>
@type tail
path /var/lib/rancher/rke/log/*.log
pos_file /fluentd/log/fluentd-rke-logging.pos
time_format %Y-%m-%dT%H:%M:%S
tag rke.*
format json
read_from_head true
</source>
<filter rke.**>
@type record_transformer
enable_ruby true
<record>
tag ${tag}
log_type k8s_infrastructure_container
driver rke
component ${tag_suffix[6].split("_")[0]}
container_id ${tag_suffix[6].split(".")[0]}
</record>
</filter>
<source>
@type tail
path /var/log/containers/*.log
pos_file /fluentd/log/fluentd-cluster-logging.pos
time_format %Y-%m-%dT%H:%M:%S
tag cluster.*
format json
read_from_head true
</source>
<filter cluster.**>
@type kubernetes_metadata
merge_json_log true
preserve_json_log true
</filter>
{{- template "filter-custom-tags" .clusterTarget -}}
{{- template "cluster-filter-syslog" . -}}
{{- template "cluster-match" . }}
{{end -}}
`
var clusterFilterSyslogTemplate = `
{{define "cluster-filter-syslog"}}
{{ if eq .clusterTarget.CurrentTarget "syslog"}}
{{ if .clusterTarget.SyslogConfig.Token}}
<filter cluster.** rke.** cluster-custom.**>
@type record_transformer
<record>
tag ${tag} {{.clusterTarget.SyslogConfig.Token}}
</record>
</filter>
{{end -}}
{{end -}}
{{end -}}
`
var clusterOutputTemplate = `
{{define "cluster-match"}}
<match cluster.** rke.** cluster-custom.**>
{{ if eq .clusterTarget.CurrentTarget "embedded"}}
@type elasticsearch
include_tag_key true
hosts "elasticsearch.cattle-logging:9200"
logstash_prefix {{.clusterTarget.EmbeddedConfig.IndexPrefix}}
logstash_format true
logstash_dateformat {{.clusterTarget.WrapEmbedded.DateFormat}}
type_name "container_log"
{{end -}}
{{ if eq .clusterTarget.CurrentTarget "elasticsearch"}}
@type elasticsearch
include_tag_key true
{{ if and .clusterTarget.ElasticsearchConfig.AuthUserName .clusterTarget.ElasticsearchConfig.AuthPassword}}
hosts {{.clusterTarget.WrapElasticsearch.Scheme}}://{{.clusterTarget.ElasticsearchConfig.AuthUserName}}:{{.clusterTarget.ElasticsearchConfig.AuthPassword}}@{{.clusterTarget.WrapElasticsearch.Host}}
{{else -}}
hosts {{.clusterTarget.ElasticsearchConfig.Endpoint}}
{{end -}}
logstash_format true
logstash_prefix "{{.clusterTarget.ElasticsearchConfig.IndexPrefix}}"
logstash_dateformat {{.clusterTarget.WrapElasticsearch.DateFormat}}
type_name "container_log"
{{ if eq .clusterTarget.WrapElasticsearch.Scheme "https"}}
ssl_verify {{ .clusterTarget.ElasticsearchConfig.SSLVerify }}
{{ if .clusterTarget.ElasticsearchConfig.Certificate }}
ca_file /fluentd/etc/ssl/cluster_{{.clusterName}}_ca.pem
{{end -}}
{{ if and .clusterTarget.ElasticsearchConfig.ClientCert .clusterTarget.ElasticsearchConfig.ClientKey}}
client_cert /fluentd/etc/ssl/cluster_{{.clusterName}}_client-cert.pem
client_key /fluentd/etc/ssl/cluster_{{.clusterName}}_client-key.pem
{{end -}}
{{ if .clusterTarget.ElasticsearchConfig.ClientKeyPass}}
client_key_pass {{.clusterTarget.ElasticsearchConfig.ClientKeyPass}}
{{end -}}
{{end -}}
{{end -}}
{{ if eq .clusterTarget.CurrentTarget "splunk"}}
@type splunk_hec
host {{.clusterTarget.WrapSplunk.Host}}
port {{.clusterTarget.WrapSplunk.Port}}
token {{.clusterTarget.SplunkConfig.Token}}
{{ if .clusterTarget.SplunkConfig.Source}}
sourcetype {{.clusterTarget.SplunkConfig.Source}}
{{end -}}
{{ if .clusterTarget.SplunkConfig.Index}}
default_index {{ .clusterTarget.SplunkConfig.Index }}
{{end -}}
{{ if eq .clusterTarget.WrapSplunk.Scheme "https"}}
use_ssl true
ssl_verify {{ .clusterTarget.SplunkConfig.SSLVerify }}
{{ if .clusterTarget.SplunkConfig.Certificate }}
ca_file /fluentd/etc/ssl/cluster_{{.clusterName}}_ca.pem
{{end -}}
{{ if and .clusterTarget.SplunkConfig.ClientCert .clusterTarget.SplunkConfig.ClientKey}}
client_cert /fluentd/etc/ssl/cluster_{{.clusterName}}_client-cert.pem
client_key /fluentd/etc/ssl/cluster_{{.clusterName}}_client-key.pem
{{end -}}
{{ if .clusterTarget.SplunkConfig.ClientKeyPass}}
client_key_pass {{ .clusterTarget.SplunkConfig.ClientKeyPass }}
{{end -}}
{{end -}}
{{end -}}
{{ if eq .clusterTarget.CurrentTarget "kafka"}}
@type kafka_buffered
{{ if .clusterTarget.KafkaConfig.ZookeeperEndpoint }}
zookeeper {{.clusterTarget.WrapKafka.Zookeeper}}
{{else}}
brokers {{.clusterTarget.WrapKafka.Brokers}}
{{end}}
default_topic {{.clusterTarget.KafkaConfig.Topic}}
output_data_type "json"
output_include_tag true
output_include_time true
{{ if .clusterTarget.KafkaConfig.Certificate }}
ssl_ca_cert /fluentd/etc/ssl/cluster_{{.clusterName}}_ca.pem
{{end}}
{{ if and .clusterTarget.KafkaConfig.ClientCert .clusterTarget.KafkaConfig.ClientKey}}
ssl_client_cert /fluentd/etc/ssl/cluster_{{.clusterName}}_client-cert.pem
ssl_client_cert_key /fluentd/etc/ssl/cluster_{{.clusterName}}_client-key.pem
{{ end -}}
max_send_retries 3
{{end -}}
{{ if eq .clusterTarget.CurrentTarget "syslog"}}
@type remote_syslog
host {{.clusterTarget.WrapSyslog.Host}}
port {{.clusterTarget.WrapSyslog.Port}}
severity {{.clusterTarget.SyslogConfig.Severity}}
program {{.clusterTarget.SyslogConfig.Program}}
protocol {{.clusterTarget.SyslogConfig.Protocol}}
{{ if eq .clusterTarget.SyslogConfig.SSLVerify true}}
verify_mode 1
{{else -}}
verify_mode 0
{{end -}}
{{ if .clusterTarget.SyslogConfig.Certificate }}
tls true
ca_file /fluentd/etc/ssl/cluster_{{.clusterName}}_ca.pem
{{end}}
{{ if and .clusterTarget.SyslogConfig.ClientCert .clusterTarget.SyslogConfig.ClientKey}}
client_cert /fluentd/etc/ssl/cluster_{{.clusterName}}_client-cert.pem
client_cert_key /fluentd/etc/ssl/cluster_{{.clusterName}}_client-key.pem
{{ end -}}
{{end -}}
<buffer>
@type file
path /fluentd/etc/buffer/cluster.buffer
flush_interval {{.clusterTarget.OutputFlushInterval}}s
{{ if eq .clusterTarget.CurrentTarget "splunk"}}
chunk_limit_size 8m
{{end -}}
</buffer>
disable_retry_limit
num_threads 8
slow_flush_log_threshold 40.0
</match>
{{end -}}
`