forked from rancher/rancher
-
Notifications
You must be signed in to change notification settings - Fork 0
/
wrap.go
273 lines (242 loc) · 5.79 KB
/
wrap.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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
package utils
import (
"fmt"
"net"
"net/url"
"strings"
"time"
"github.com/pkg/errors"
"github.com/rancher/types/apis/management.cattle.io/v3"
loggingconfig "github.com/rancher/rancher/pkg/controllers/user/logging/config"
)
type WrapClusterLogging struct {
CurrentTarget string
v3.ClusterLoggingSpec
WrapSyslog
WrapSplunk
WrapEmbedded
WrapElasticsearch
WrapKafka
}
type WrapProjectLogging struct {
CurrentTarget string
v3.ProjectLoggingSpec
GrepNamespace string
WrapSyslog
WrapSplunk
WrapElasticsearch
WrapKafka
}
type WrapEmbedded struct {
DateFormat string
}
type WrapElasticsearch struct {
DateFormat string
Host string
Scheme string
}
type WrapSplunk struct {
Server string
Scheme string
}
type WrapKafka struct {
Brokers string
Zookeeper string
}
type WrapSyslog struct {
Host string
Port string
}
func (w *WrapClusterLogging) Validate() error {
curtg, _, _, _, _, err := getWrapConfig(w.ElasticsearchConfig, w.SplunkConfig, w.SyslogConfig, w.KafkaConfig)
if err != nil {
return err
}
if w.EmbeddedConfig != nil {
curtg = loggingconfig.Embedded
}
if curtg == "" {
return fmt.Errorf("one of the target must set")
}
return nil
}
func (w *WrapProjectLogging) Validate() error {
curtg, _, _, _, _, err := getWrapConfig(w.ElasticsearchConfig, w.SplunkConfig, w.SyslogConfig, w.KafkaConfig)
if err != nil {
return err
}
if curtg == "" {
return fmt.Errorf("one of the target must set")
}
return nil
}
func ToWrapClusterLogging(clusterLogging v3.ClusterLoggingSpec) (*WrapClusterLogging, error) {
wp := WrapClusterLogging{
ClusterLoggingSpec: clusterLogging,
}
curtg, wes, wsp, wsl, wkf, err := getWrapConfig(clusterLogging.ElasticsearchConfig, clusterLogging.SplunkConfig, clusterLogging.SyslogConfig, clusterLogging.KafkaConfig)
if err != nil {
return nil, err
}
wp.WrapElasticsearch = wes
wp.WrapSplunk = wsp
wp.WrapSyslog = wsl
wp.WrapKafka = wkf
if clusterLogging.EmbeddedConfig != nil {
curtg = loggingconfig.Embedded
wp.WrapEmbedded.DateFormat = getDateFormat(clusterLogging.EmbeddedConfig.DateFormat)
}
wp.CurrentTarget = curtg
return &wp, nil
}
func ToWrapProjectLogging(grepNamespace string, projectLogging v3.ProjectLoggingSpec) (*WrapProjectLogging, error) {
wp := WrapProjectLogging{
ProjectLoggingSpec: projectLogging,
GrepNamespace: grepNamespace,
}
curtg, wes, wsp, wsl, wkf, err := getWrapConfig(projectLogging.ElasticsearchConfig, projectLogging.SplunkConfig, projectLogging.SyslogConfig, projectLogging.KafkaConfig)
if err != nil {
return nil, err
}
wp.CurrentTarget = curtg
wp.WrapElasticsearch = wes
wp.WrapSplunk = wsp
wp.WrapSyslog = wsl
wp.WrapKafka = wkf
return &wp, nil
}
func getWrapConfig(es *v3.ElasticsearchConfig, sp *v3.SplunkConfig, sl *v3.SyslogConfig, kf *v3.KafkaConfig) (currentTarget string, wes WrapElasticsearch, wsp WrapSplunk, wsl WrapSyslog, wkf WrapKafka, err error) {
if es != nil {
var h, s string
h, s, err = parseEndpoint(es.Endpoint)
if err != nil {
return
}
err = testReachable("tcp", h)
if err != nil {
return
}
wes = WrapElasticsearch{
Host: h,
Scheme: s,
DateFormat: getDateFormat(es.DateFormat),
}
currentTarget = loggingconfig.Elasticsearch
}
if sp != nil {
var h, s string
h, s, err = parseEndpoint(sp.Endpoint)
if err != nil {
return
}
err = testReachable("tcp", h)
if err != nil {
return
}
wsp = WrapSplunk{
Server: h,
Scheme: s,
}
currentTarget = loggingconfig.Splunk
}
if sl != nil {
err = testReachable(sl.Protocol, sl.Endpoint)
if err != nil {
return
}
var host, port string
host, port, err = net.SplitHostPort(sl.Endpoint)
if err != nil {
return
}
wsl = WrapSyslog{
Host: host,
Port: port,
}
currentTarget = loggingconfig.Syslog
}
if kf != nil {
if len(kf.BrokerEndpoints) == 0 && kf.ZookeeperEndpoint == "" {
err = errors.New("one of the kafka endpoint must be set")
return
}
if len(kf.BrokerEndpoints) != 0 {
var bs []string
var h string
for _, v := range kf.BrokerEndpoints {
h, _, err = parseEndpoint(v)
if err != nil {
return
}
err = testReachable("tcp", h)
if err != nil {
return
}
bs = append(bs, h)
}
wkf = WrapKafka{
Brokers: strings.Join(bs, ","),
}
} else {
if kf.ZookeeperEndpoint != "" {
var h string
if h, _, err = parseEndpoint(kf.ZookeeperEndpoint); err != nil {
return
}
err = testReachable("tcp", h)
if err != nil {
return
}
wkf = WrapKafka{
Zookeeper: h,
}
}
}
currentTarget = loggingconfig.Kafka
}
return
}
func parseEndpoint(endpoint string) (host string, scheme string, err error) {
u, err := url.ParseRequestURI(endpoint)
if err != nil {
return "", "", errors.Wrapf(err, "invalid endpoint %s", endpoint)
}
if u.Host == "" || u.Scheme == "" {
return "", "", fmt.Errorf("invalid endpoint %s, empty host or schema", endpoint)
}
return u.Host, u.Scheme, nil
}
func getDateFormat(dateformat string) string {
ToRealMap := map[string]string{
"YYYY.MM.DD": "%Y.%m.%d",
"YYYY.MM": "%Y.%m.",
"YYYY": "%Y.",
}
if _, ok := ToRealMap[dateformat]; ok {
return ToRealMap[dateformat]
}
return "%Y.%m.%d"
}
func testReachable(network string, url string) error {
timeout := time.Duration(10 * time.Second)
conn, err := net.DialTimeout(network, url, timeout)
if err != nil {
return fmt.Errorf("url %s unreachable, error: %v", url, err)
}
conn.Close()
return nil
}
func GetClusterTarget(spec v3.ClusterLoggingSpec) string {
if spec.EmbeddedConfig != nil {
return "embedded"
} else if spec.ElasticsearchConfig != nil {
return "elasticsearch"
} else if spec.SplunkConfig != nil {
return "splunk"
} else if spec.KafkaConfig != nil {
return "kafka"
} else if spec.SyslogConfig != nil {
return "syslog"
}
return "none"
}