-
Notifications
You must be signed in to change notification settings - Fork 2.5k
/
config.go
51 lines (44 loc) · 1.87 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
// Copyright The OpenTelemetry Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package stanza
import (
"github.com/open-telemetry/opentelemetry-log-collection/operator"
"go.opentelemetry.io/collector/config/configmodels"
"gopkg.in/yaml.v2"
)
// BaseConfig is the common configuration of a stanza-based receiver
type BaseConfig struct {
configmodels.ReceiverSettings `mapstructure:",squash"`
Operators OperatorConfigs `mapstructure:"operators"`
}
// OperatorConfigs is an alias that allows for unmarshaling outside of mapstructure
// Stanza operators should will be migrated to mapstructure for greater compatibility
// but this allows a temporary solution
type OperatorConfigs []map[string]interface{}
// InputConfig is an alias that allows unmarshaling outside of mapstructure
// This is meant to be used only for the input operator
type InputConfig map[string]interface{}
// decodeOperatorConfigs is an unmarshaling workaround for stanza operators
// This is needed only until stanza operators are migrated to mapstructure
func (cfg BaseConfig) decodeOperatorConfigs() ([]operator.Config, error) {
if len(cfg.Operators) == 0 {
return []operator.Config{}, nil
}
yamlBytes, _ := yaml.Marshal(cfg.Operators)
operatorCfgs := []operator.Config{}
if err := yaml.Unmarshal(yamlBytes, &operatorCfgs); err != nil {
return nil, err
}
return operatorCfgs, nil
}