forked from open-telemetry/opentelemetry-collector-contrib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.go
70 lines (57 loc) · 2.06 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
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package vcenterreceiver // import "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/vcenterreceiver"
import (
"context"
"errors"
"fmt"
"net/url"
"go.opentelemetry.io/collector/config/configopaque"
"go.opentelemetry.io/collector/config/configtls"
"go.opentelemetry.io/collector/receiver/scraperhelper"
"go.uber.org/multierr"
"github.com/open-telemetry/opentelemetry-collector-contrib/receiver/vcenterreceiver/internal/metadata"
)
// Config is the configuration of the receiver
type Config struct {
scraperhelper.ControllerConfig `mapstructure:",squash"`
configtls.ClientConfig `mapstructure:"tls,omitempty"`
metadata.MetricsBuilderConfig `mapstructure:",squash"`
Endpoint string `mapstructure:"endpoint"`
Username string `mapstructure:"username"`
Password configopaque.String `mapstructure:"password"`
}
// Validate checks to see if the supplied config will work for the receiver
func (c *Config) Validate() error {
if c.Endpoint == "" {
return errors.New("no endpoint was provided")
}
var err error
res, err := url.Parse(c.Endpoint)
if err != nil {
err = multierr.Append(err, fmt.Errorf("unable to parse url %s: %w", c.Endpoint, err))
return err
}
if res.Scheme != "http" && res.Scheme != "https" {
err = multierr.Append(err, errors.New("url scheme must be http or https"))
}
if c.Username == "" {
err = multierr.Append(err, errors.New("username not provided and is required"))
}
if c.Password == "" {
err = multierr.Append(err, errors.New("password not provided and is required"))
}
if _, tlsErr := c.LoadTLSConfig(context.Background()); err != nil {
err = multierr.Append(err, fmt.Errorf("error loading tls configuration: %w", tlsErr))
}
return err
}
// SDKUrl returns the url for the vCenter SDK
func (c *Config) SDKUrl() (*url.URL, error) {
res, err := url.Parse(c.Endpoint)
if err != nil {
return res, err
}
res.Path = "/sdk"
return res, nil
}