Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[otelcol] Add mapstructure tags to main Config struct #10152

Merged
merged 3 commits into from
May 15, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions otelcol/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,21 +20,21 @@ var (
// 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
Receivers map[component.ID]component.Config `mapstructure:"receivers"`

// Exporters is a map of ComponentID to Exporters.
Exporters map[component.ID]component.Config
Exporters map[component.ID]component.Config `mapstructure:"exporters"`

// Processors is a map of ComponentID to Processors.
Processors map[component.ID]component.Config
Processors map[component.ID]component.Config `mapstructure:"processors"`

// Connectors is a map of ComponentID to connectors.
Connectors map[component.ID]component.Config
Connectors map[component.ID]component.Config `mapstructure:"connectors"`

// Extensions is a map of ComponentID to extensions.
Extensions map[component.ID]component.Config
Extensions map[component.ID]component.Config `mapstructure:"extensions"`

Service service.Config
Service service.Config `mapstructure:"service"`
}

// Validate returns an error if the config is invalid.
Expand Down
Loading