forked from hashicorp/consul-esm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.go
491 lines (423 loc) · 14.9 KB
/
config.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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
package main
import (
"fmt"
"io"
"io/ioutil"
"os"
"reflect"
"strings"
"time"
"github.com/hashicorp/consul/api"
"github.com/hashicorp/consul/command/flags"
"github.com/hashicorp/consul/lib"
"github.com/hashicorp/go-uuid"
"github.com/hashicorp/hcl"
"github.com/hashicorp/hcl/hcl/ast"
"github.com/mitchellh/mapstructure"
)
const (
PingTypeUDP = "udp"
PingTypeSocket = "socket"
)
type Config struct {
LogLevel string
EnableSyslog bool
SyslogFacility string
LogJSON bool
Service string
Tag string
KVPath string
InstanceID string
NodeMeta map[string]string
Interval time.Duration
DeregisterAfter time.Duration
CheckUpdateInterval time.Duration
CoordinateUpdateInterval time.Duration
NodeHealthRefreshInterval time.Duration
NodeReconnectTimeout time.Duration
HTTPAddr string
Token string
Datacenter string
CAFile string
CAPath string
CertFile string
KeyFile string
TLSServerName string
HTTPSCAFile string
HTTPSCAPath string
HTTPSCertFile string
HTTPSKeyFile string
ClientAddress string
PingType string
DisableCoordinateUpdates bool
Telemetry lib.TelemetryConfig
PassingThreshold int
CriticalThreshold int
}
func (c *Config) ClientConfig() *api.Config {
conf := api.DefaultConfig()
if c.HTTPAddr != "" {
conf.Address = c.HTTPAddr
}
if c.Token != "" {
conf.Token = c.Token
}
if c.Datacenter != "" {
conf.Datacenter = c.Datacenter
}
if c.CAFile != "" {
conf.TLSConfig.CAFile = c.CAFile
}
if c.CAPath != "" {
conf.TLSConfig.CAPath = c.CAPath
}
if c.CertFile != "" {
conf.TLSConfig.CertFile = c.CertFile
}
if c.KeyFile != "" {
conf.TLSConfig.KeyFile = c.KeyFile
}
if c.TLSServerName != "" {
conf.TLSConfig.Address = c.TLSServerName
}
return conf
}
// DefaultConfig generates esm config with default values
func DefaultConfig() (*Config, error) {
// if no ID is configured, generate a unique ID for this agent
instanceID, err := uuid.GenerateUUID()
if err != nil {
return nil, err
}
return &Config{
InstanceID: instanceID,
LogLevel: "INFO",
Service: "consul-esm",
KVPath: "consul-esm/",
NodeMeta: map[string]string{
"external-node": "true",
},
Interval: 10 * time.Second,
DeregisterAfter: 72 * time.Hour,
CheckUpdateInterval: 5 * time.Minute,
CoordinateUpdateInterval: 10 * time.Second,
NodeHealthRefreshInterval: 1 * time.Hour,
NodeReconnectTimeout: 72 * time.Hour,
PingType: PingTypeUDP,
DisableCoordinateUpdates: false,
}, nil
}
// Telemetry is the configuration for to match Consul's go-metrics telemetry config
type Telemetry struct {
CirconusAPIApp *string `mapstructure:"circonus_api_app"`
CirconusAPIToken *string `mapstructure:"circonus_api_token"`
CirconusAPIURL *string `mapstructure:"circonus_api_url"`
CirconusBrokerID *string `mapstructure:"circonus_broker_id"`
CirconusBrokerSelectTag *string `mapstructure:"circonus_broker_select_tag"`
CirconusCheckDisplayName *string `mapstructure:"circonus_check_display_name"`
CirconusCheckForceMetricActivation *string `mapstructure:"circonus_check_force_metric_activation"`
CirconusCheckID *string `mapstructure:"circonus_check_id"`
CirconusCheckInstanceID *string `mapstructure:"circonus_check_instance_id"`
CirconusCheckSearchTag *string `mapstructure:"circonus_check_search_tag"`
CirconusCheckTags *string `mapstructure:"circonus_check_tags"`
CirconusSubmissionInterval *string `mapstructure:"circonus_submission_interval"`
CirconusSubmissionURL *string `mapstructure:"circonus_submission_url"`
DisableHostname *bool `mapstructure:"disable_hostname"`
DogstatsdAddr *string `mapstructure:"dogstatsd_addr"`
DogstatsdTags []string `mapstructure:"dogstatsd_tags"`
PrometheusRetentionTime *string `mapstructure:"prometheus_retention_time"`
FilterDefault *bool `mapstructure:"filter_default"`
PrefixFilter []string `mapstructure:"prefix_filter"`
MetricsPrefix *string `mapstructure:"metrics_prefix"`
StatsdAddr *string `mapstructure:"statsd_address"`
StatsiteAddr *string `mapstructure:"statsite_address"`
}
// HumanConfig contains configuration that the practitioner can set
type HumanConfig struct {
LogLevel flags.StringValue `mapstructure:"log_level"`
EnableSyslog flags.BoolValue `mapstructure:"enable_syslog"`
SyslogFacility flags.StringValue `mapstructure:"syslog_facility"`
LogJSON flags.BoolValue `mapstructure:"log_json"`
InstanceID flags.StringValue `mapstructure:"instance_id"`
Service flags.StringValue `mapstructure:"consul_service"`
Tag flags.StringValue `mapstructure:"consul_service_tag"`
KVPath flags.StringValue `mapstructure:"consul_kv_path"`
NodeMeta []map[string]string `mapstructure:"external_node_meta"`
NodeReconnectTimeout flags.DurationValue `mapstructure:"node_reconnect_timeout"`
NodeProbeInterval flags.DurationValue `mapstructure:"node_probe_interval"`
HTTPAddr flags.StringValue `mapstructure:"http_addr"`
Token flags.StringValue `mapstructure:"token"`
Datacenter flags.StringValue `mapstructure:"datacenter"`
CAFile flags.StringValue `mapstructure:"ca_file"`
CAPath flags.StringValue `mapstructure:"ca_path"`
CertFile flags.StringValue `mapstructure:"cert_file"`
KeyFile flags.StringValue `mapstructure:"key_file"`
TLSServerName flags.StringValue `mapstructure:"tls_server_name"`
HTTPSCAFile flags.StringValue `mapstructure:"https_ca_file"`
HTTPSCAPath flags.StringValue `mapstructure:"https_ca_path"`
HTTPSCertFile flags.StringValue `mapstructure:"https_cert_file"`
HTTPSKeyFile flags.StringValue `mapstructure:"https_key_file"`
ClientAddress flags.StringValue `mapstructure:"client_address"`
PingType flags.StringValue `mapstructure:"ping_type"`
DisableCoordinateUpdates flags.BoolValue `mapstructure:"disable_coordinate_updates"`
Telemetry []Telemetry `mapstructure:"telemetry"`
PassingThreshold intValue `mapstructure:"passing_threshold"`
CriticalThreshold intValue `mapstructure:"critical_threshold"`
}
// intValue provides a flag value that's aware if it has been set.
type intValue struct {
v *int
}
// Merge will overlay this value if it has been set.
func (i *intValue) Merge(onto *int) {
if i.v != nil {
*onto = *(i.v)
}
}
func intTointValueFunc() mapstructure.DecodeHookFunc {
return func(
f reflect.Type,
t reflect.Type,
data interface{}) (interface{}, error) {
if f.Kind() != reflect.Int {
return data, nil
}
val := intValue{}
if t != reflect.TypeOf(val) {
return data, nil
}
val.v = new(int)
*(val.v) = data.(int)
return val, nil
}
}
// configDecodeHook should be passed to mapstructure in order to decode into
// the *Value objects here.
var configDecodeHook = mapstructure.ComposeDecodeHookFunc(
flags.BoolToBoolValueFunc(),
flags.StringToDurationValueFunc(),
flags.StringToStringValueFunc(),
intTointValueFunc(),
)
// DecodeConfig takes a reader containing config file and returns
// configuration struct
func DecodeConfig(r io.Reader) (*HumanConfig, error) {
// Parse the file (could be HCL or JSON)
bytes, err := ioutil.ReadAll(r)
if err != nil {
return nil, err
}
root, err := hcl.Parse(string(bytes))
if err != nil {
return nil, fmt.Errorf("error parsing: %s", err)
}
// Top-level item should be a list
list, ok := root.Node.(*ast.ObjectList)
if !ok {
return nil, fmt.Errorf("error parsing: root should be an object")
}
list = list.Children()
nodeMeta := list.Filter("external_node_meta")
if len(nodeMeta.Elem().Items) > 1 {
return nil, fmt.Errorf("only one node_meta block allowed")
}
telemetry := list.Filter("telemetry")
if len(telemetry.Elem().Items) > 1 {
return nil, fmt.Errorf("only one telemetry block allowed")
}
// Decode the full thing into a map[string]interface for ease of use
var config HumanConfig
var m map[string]interface{}
if err := hcl.DecodeObject(&m, list); err != nil {
return nil, err
}
// Decode the simple (non service/handler) objects into Config
msdec, err := mapstructure.NewDecoder(&mapstructure.DecoderConfig{
DecodeHook: configDecodeHook,
Result: &config,
ErrorUnused: true,
})
if err := msdec.Decode(m); err != nil {
return nil, err
}
return &config, nil
}
// BuildConfig builds a new Config object from the default configuration
// and the list of config files given and returns it after validation.
func BuildConfig(configFiles []string) (*Config, error) {
config, err := DefaultConfig()
if err != nil {
return nil, err
}
if err := MergeConfigPaths(config, configFiles); err != nil {
return nil, fmt.Errorf("Error loading config: %v", err)
}
if !strings.HasSuffix(config.KVPath, "/") {
config.KVPath = config.KVPath + "/"
}
if err := ValidateConfig(config); err != nil {
return nil, fmt.Errorf("Error parsing config: %v", err)
}
return config, nil
}
// ValidateConfig verifies that the given Config object is valid.
func ValidateConfig(conf *Config) error {
switch conf.PingType {
case PingTypeUDP, PingTypeSocket:
break
default:
return fmt.Errorf("ping_type must be one of either \"udp\" or \"socket\"")
}
if conf.CoordinateUpdateInterval < time.Second {
return fmt.Errorf("node_probe_interval cannot be lower than 1 second")
}
if conf.PassingThreshold < 0 {
return fmt.Errorf("passing_threshold cannot be negative")
}
if conf.CriticalThreshold < 0 {
return fmt.Errorf("critical_threshold cannot be negative")
}
return nil
}
// MergeConfigPaths takes a list of config files or config directories and
// merges them on top of the given config.
func MergeConfigPaths(dst *Config, paths []string) error {
if len(paths) == 0 {
return nil
}
visitor := func(path string) error {
f, err := os.Open(path)
if err != nil {
return err
}
defer f.Close()
fi, err := f.Stat()
if err != nil {
return err
}
if !strings.HasSuffix(fi.Name(), ".json") && !strings.HasSuffix(fi.Name(), ".hcl") {
return nil
}
if fi.Size() == 0 {
return nil
}
src, err := DecodeConfig(f)
if err != nil {
return err
}
return MergeConfig(dst, src)
}
for _, path := range paths {
if err := flags.Visit(path, visitor); err != nil {
return err
}
}
return nil
}
func stringVal(v *string) string {
if v == nil {
return ""
}
return *v
}
func boolVal(v *bool) bool {
if v == nil {
return false
}
return *v
}
// convertTelemetry converts the HumanConfig{} telemetry to the telemetry
// structure needed by Config{}
func convertTelemetry(telemetry Telemetry) (lib.TelemetryConfig, error) {
// split metric filters into allow vs. blocked
var telemetryAllowedPrefixes, telemetryBlockedPrefixes []string
for _, rule := range telemetry.PrefixFilter {
if rule == "" {
fmt.Println("[WARN] Cannot have empty filter rule in prefix_filter")
continue
}
switch rule[0] {
case '+':
telemetryAllowedPrefixes = append(telemetryAllowedPrefixes, rule[1:])
case '-':
telemetryBlockedPrefixes = append(telemetryBlockedPrefixes, rule[1:])
default:
fmt.Printf("[WARN] Filter rule must begin with either '+' or '-': %q\n", rule)
}
}
var prometheusRetentionTime time.Duration
if telemetry.PrometheusRetentionTime != nil {
d, err := time.ParseDuration(*telemetry.PrometheusRetentionTime)
if err != nil {
return lib.TelemetryConfig{},
fmt.Errorf("prometheus_retention_time: invalid duration: %q: %s", *telemetry.PrometheusRetentionTime, err)
}
prometheusRetentionTime = d
}
return lib.TelemetryConfig{
CirconusAPIApp: stringVal(telemetry.CirconusAPIApp),
CirconusAPIToken: stringVal(telemetry.CirconusAPIToken),
CirconusAPIURL: stringVal(telemetry.CirconusAPIURL),
CirconusBrokerID: stringVal(telemetry.CirconusBrokerID),
CirconusBrokerSelectTag: stringVal(telemetry.CirconusBrokerSelectTag),
CirconusCheckDisplayName: stringVal(telemetry.CirconusCheckDisplayName),
CirconusCheckForceMetricActivation: stringVal(telemetry.CirconusCheckForceMetricActivation),
CirconusCheckID: stringVal(telemetry.CirconusCheckID),
CirconusCheckInstanceID: stringVal(telemetry.CirconusCheckInstanceID),
CirconusCheckSearchTag: stringVal(telemetry.CirconusCheckSearchTag),
CirconusCheckTags: stringVal(telemetry.CirconusCheckTags),
CirconusSubmissionInterval: stringVal(telemetry.CirconusSubmissionInterval),
CirconusSubmissionURL: stringVal(telemetry.CirconusSubmissionURL),
DisableHostname: boolVal(telemetry.DisableHostname),
DogstatsdAddr: stringVal(telemetry.DogstatsdAddr),
DogstatsdTags: telemetry.DogstatsdTags,
PrometheusRetentionTime: prometheusRetentionTime,
FilterDefault: boolVal(telemetry.FilterDefault),
AllowedPrefixes: telemetryAllowedPrefixes,
BlockedPrefixes: telemetryBlockedPrefixes,
MetricsPrefix: stringVal(telemetry.MetricsPrefix),
StatsdAddr: stringVal(telemetry.StatsdAddr),
StatsiteAddr: stringVal(telemetry.StatsiteAddr),
}, nil
}
// MergeConfig merges the default config with any configuration
// set by the practitioner
func MergeConfig(dst *Config, src *HumanConfig) error {
src.LogLevel.Merge(&dst.LogLevel)
src.LogJSON.Merge(&dst.LogJSON)
src.EnableSyslog.Merge(&dst.EnableSyslog)
src.InstanceID.Merge(&dst.InstanceID)
src.Service.Merge(&dst.Service)
src.Tag.Merge(&dst.Tag)
src.KVPath.Merge(&dst.KVPath)
if len(src.NodeMeta) == 1 {
dst.NodeMeta = src.NodeMeta[0]
}
src.NodeReconnectTimeout.Merge(&dst.NodeReconnectTimeout)
src.NodeProbeInterval.Merge(&dst.CoordinateUpdateInterval)
src.HTTPAddr.Merge(&dst.HTTPAddr)
src.Token.Merge(&dst.Token)
src.Datacenter.Merge(&dst.Datacenter)
src.CAFile.Merge(&dst.CAFile)
src.CAPath.Merge(&dst.CAPath)
src.CertFile.Merge(&dst.CertFile)
src.KeyFile.Merge(&dst.KeyFile)
src.TLSServerName.Merge(&dst.TLSServerName)
src.HTTPSCAFile.Merge(&dst.HTTPSCAFile)
src.HTTPSCAPath.Merge(&dst.HTTPSCAPath)
src.HTTPSCertFile.Merge(&dst.HTTPSCertFile)
src.HTTPSKeyFile.Merge(&dst.HTTPSKeyFile)
src.ClientAddress.Merge(&dst.ClientAddress)
src.PingType.Merge(&dst.PingType)
src.DisableCoordinateUpdates.Merge(&dst.DisableCoordinateUpdates)
if len(src.Telemetry) == 1 {
t, err := convertTelemetry(src.Telemetry[0])
if err != nil {
return err
}
dst.Telemetry = t
}
src.PassingThreshold.Merge(&dst.PassingThreshold)
src.CriticalThreshold.Merge(&dst.CriticalThreshold)
return nil
}