-
Notifications
You must be signed in to change notification settings - Fork 1.5k
/
config.go
147 lines (123 loc) · 4.76 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
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package otelcol // import "go.opentelemetry.io/collector/otelcol"
import (
"errors"
"fmt"
"go.opentelemetry.io/collector/component"
"go.opentelemetry.io/collector/service"
)
var (
errMissingExporters = errors.New("no exporter configuration specified in config")
errMissingReceivers = errors.New("no receiver configuration specified in config")
)
// Config defines the configuration for the various elements of collector or agent.
type Config struct {
// Receivers is a map of ComponentID to Receivers.
Receivers map[component.ID]component.Config
// Exporters is a map of ComponentID to Exporters.
Exporters map[component.ID]component.Config
// Processors is a map of ComponentID to Processors.
Processors map[component.ID]component.Config
// Connectors is a map of ComponentID to connectors.
Connectors map[component.ID]component.Config
// Extensions is a map of ComponentID to extensions.
Extensions map[component.ID]component.Config
Service service.Config
}
// Validate returns an error if the config is invalid.
//
// This function performs basic validation of configuration. There may be more subtle
// invalid cases that we currently don't check for but which we may want to add in
// the future (e.g. disallowing receiving and exporting on the same endpoint).
func (cfg *Config) Validate() error {
// Currently, there is no default receiver enabled.
// The configuration must specify at least one receiver to be valid.
if len(cfg.Receivers) == 0 {
return errMissingReceivers
}
// Validate the receiver configuration.
for recvID, recvCfg := range cfg.Receivers {
if err := component.ValidateConfig(recvCfg); err != nil {
return fmt.Errorf("receivers::%s: %w", recvID, err)
}
}
// Currently, there is no default exporter enabled.
// The configuration must specify at least one exporter to be valid.
if len(cfg.Exporters) == 0 {
return errMissingExporters
}
// Validate the exporter configuration.
for expID, expCfg := range cfg.Exporters {
if err := component.ValidateConfig(expCfg); err != nil {
return fmt.Errorf("exporters::%s: %w", expID, err)
}
}
// Validate the processor configuration.
for procID, procCfg := range cfg.Processors {
if err := component.ValidateConfig(procCfg); err != nil {
return fmt.Errorf("processors::%s: %w", procID, err)
}
}
// Validate the connector configuration.
for connID, connCfg := range cfg.Connectors {
if err := component.ValidateConfig(connCfg); err != nil {
return fmt.Errorf("connectors::%s: %w", connID, err)
}
if _, ok := cfg.Exporters[connID]; ok {
return fmt.Errorf("connectors::%s: there's already an exporter named %q", connID, connID)
}
if _, ok := cfg.Receivers[connID]; ok {
return fmt.Errorf("connectors::%s: there's already a receiver named %q", connID, connID)
}
}
// Validate the extension configuration.
for extID, extCfg := range cfg.Extensions {
if err := component.ValidateConfig(extCfg); err != nil {
return fmt.Errorf("extensions::%s: %w", extID, err)
}
}
if err := cfg.Service.Validate(); err != nil {
return err
}
// Check that all enabled extensions in the service are configured.
for _, ref := range cfg.Service.Extensions {
// Check that the name referenced in the Service extensions exists in the top-level extensions.
if cfg.Extensions[ref] == nil {
return fmt.Errorf("service::extensions: references extension %q which is not configured", ref)
}
}
// Check that all pipelines reference only configured components.
for pipelineID, pipeline := range cfg.Service.Pipelines {
// Validate pipeline receiver name references.
for _, ref := range pipeline.Receivers {
// Check that the name referenced in the pipeline's receivers exists in the top-level receivers.
if _, ok := cfg.Receivers[ref]; ok {
continue
}
if _, ok := cfg.Connectors[ref]; ok {
continue
}
return fmt.Errorf("service::pipelines::%s: references receiver %q which is not configured", pipelineID, ref)
}
// Validate pipeline processor name references.
for _, ref := range pipeline.Processors {
// Check that the name referenced in the pipeline's processors exists in the top-level processors.
if cfg.Processors[ref] == nil {
return fmt.Errorf("service::pipelines::%s: references processor %q which is not configured", pipelineID, ref)
}
}
// Validate pipeline exporter name references.
for _, ref := range pipeline.Exporters {
// Check that the name referenced in the pipeline's Exporters exists in the top-level Exporters.
if _, ok := cfg.Exporters[ref]; ok {
continue
}
if _, ok := cfg.Connectors[ref]; ok {
continue
}
return fmt.Errorf("service::pipelines::%s: references exporter %q which is not configured", pipelineID, ref)
}
}
return nil
}