-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
config.go
88 lines (74 loc) · 3.18 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
// Copyright The OpenTelemetry Authors
// SPDX-License-Identifier: Apache-2.0
package elasticsearchreceiver // import "github.com/open-telemetry/opentelemetry-collector-contrib/receiver/elasticsearchreceiver"
import (
"errors"
"fmt"
"net/url"
"go.opentelemetry.io/collector/config/confighttp"
"go.opentelemetry.io/collector/config/configopaque"
"go.opentelemetry.io/collector/receiver/scraperhelper"
"github.com/open-telemetry/opentelemetry-collector-contrib/receiver/elasticsearchreceiver/internal/metadata"
)
var defaultEndpoint = "http://localhost:9200"
var (
errEndpointBadScheme = errors.New("endpoint scheme must be http or https")
errUsernameNotSpecified = errors.New("password was specified, but not username")
errPasswordNotSpecified = errors.New("username was specified, but not password")
errEmptyEndpoint = errors.New("endpoint must be specified")
)
// Config is the configuration for the elasticsearch receiver
type Config struct {
scraperhelper.ControllerConfig `mapstructure:",squash"`
confighttp.ClientConfig `mapstructure:",squash"`
// MetricsBuilderConfig defines which metrics/attributes to enable for the scraper
metadata.MetricsBuilderConfig `mapstructure:",squash"`
// Nodes defines the nodes to scrape.
// See https://www.elastic.co/guide/en/elasticsearch/reference/7.9/cluster.html#cluster-nodes for which selectors may be used here.
// If Nodes is empty, no nodes will be scraped.
Nodes []string `mapstructure:"nodes"`
// SkipClusterMetrics indicates whether cluster level metrics from /_cluster/* endpoints should be scraped or not.
SkipClusterMetrics bool `mapstructure:"skip_cluster_metrics"`
// Indices defines the indices to scrape.
// See https://www.elastic.co/guide/en/elasticsearch/reference/current/indices-stats.html#index-stats-api-path-params
// for which names are viable.
// If Indices is empty, no indices will be scraped.
Indices []string `mapstructure:"indices"`
// Username is the username used when making REST calls to elasticsearch. Must be specified if Password is. Not required.
Username string `mapstructure:"username"`
// Password is the password used when making REST calls to elasticsearch. Must be specified if Username is. Not required.
Password configopaque.String `mapstructure:"password"`
}
// Validate validates the given config, returning an error specifying any issues with the config.
func (cfg *Config) Validate() error {
var combinedErr error
if err := invalidCredentials(cfg.Username, string(cfg.Password)); err != nil {
combinedErr = err
}
if cfg.Endpoint == "" {
return errors.Join(combinedErr, errEmptyEndpoint)
}
u, err := url.Parse(cfg.Endpoint)
if err != nil {
return errors.Join(
combinedErr,
fmt.Errorf("invalid endpoint '%s': %w", cfg.Endpoint, err),
)
}
switch u.Scheme {
case "http", "https": // ok
default:
return errors.Join(combinedErr, errEndpointBadScheme)
}
return combinedErr
}
// invalidCredentials returns true if only one username or password is not empty.
func invalidCredentials(username, password string) error {
if username == "" && password != "" {
return errUsernameNotSpecified
}
if password == "" && username != "" {
return errPasswordNotSpecified
}
return nil
}