-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
config.go
56 lines (44 loc) · 1.82 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
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package riakreceiver // import "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/riakreceiver"
import (
"errors"
"fmt"
"net/url"
"go.opentelemetry.io/collector/config/confighttp"
"go.opentelemetry.io/collector/config/configopaque"
"go.opentelemetry.io/collector/receiver/scraperhelper"
"go.uber.org/multierr"
"github.com/open-telemetry/opentelemetry-collector-contrib/receiver/riakreceiver/internal/metadata"
)
// Predefined error responses for configuration validation failures
var (
errMissingUsername = errors.New(`"username" not specified in config`)
errMissingPassword = errors.New(`"password" not specified in config`)
errInvalidEndpoint = errors.New(`"endpoint" must be in the form of <scheme>://<hostname>:<port>`)
)
const defaultEndpoint = "http://localhost:8098"
// Config defines the configuration for the various elements of the receiver agent.
type Config struct {
scraperhelper.ControllerConfig `mapstructure:",squash"`
confighttp.ClientConfig `mapstructure:",squash"`
Username string `mapstructure:"username"`
Password configopaque.String `mapstructure:"password"`
MetricsBuilderConfig metadata.MetricsBuilderConfig `mapstructure:"metrics"`
}
// Validate validates the configuration by checking for missing or invalid fields
func (cfg *Config) Validate() error {
var err error
if cfg.Username == "" {
err = multierr.Append(err, errMissingUsername)
}
if cfg.Password == "" {
err = multierr.Append(err, errMissingPassword)
}
_, parseErr := url.Parse(cfg.Endpoint)
if parseErr != nil {
wrappedErr := fmt.Errorf("%s: %w", errInvalidEndpoint.Error(), parseErr)
err = multierr.Append(err, wrappedErr)
}
return err
}