Skip to content

Commit 070186a

Browse files
committed
[chore] add a few anonymous struct fields to make sure Config cannot be initialized unkeyed
1 parent dc0c40e commit 070186a

File tree

8 files changed

+34
-0
lines changed

8 files changed

+34
-0
lines changed

connector/exceptionsconnector/config.go

+2
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ type Config struct {
3131
Dimensions []Dimension `mapstructure:"dimensions"`
3232
// Exemplars defines the configuration for exemplars.
3333
Exemplars Exemplars `mapstructure:"exemplars"`
34+
// prevent unkeyed literal initialization
35+
_ struct{}
3436
}
3537

3638
var _ xconfmap.Validator = (*Config)(nil)

connector/failoverconnector/config.go

+2
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,8 @@ type Config struct {
3333
// MaxRetry is the maximum retries per level, once this limit is hit for a level, even if the next pipeline level fails,
3434
// it will not try to recover the level that exceeded the maximum retries
3535
MaxRetries int `mapstructure:"max_retries"` // **Deprecated**
36+
// prevent unkeyed literal initialization
37+
_ struct{}
3638
}
3739

3840
// Validate needs to ensure RetryInterval > # elements in PriorityList * RetryGap

connector/grafanacloudconnector/config.go

+2
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ type Config struct {
1616
// a unique `grafana.host.id` value. In most cases, this should be [ "host.id" ]
1717
HostIdentifiers []string `mapstructure:"host_identifiers"`
1818
MetricsFlushInterval time.Duration `mapstructure:"metrics_flush_interval"`
19+
// prevent unkeyed literal initialization
20+
_ struct{}
1921
}
2022

2123
var _ xconfmap.Validator = (*Config)(nil)

connector/routingconnector/config.go

+4
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ type Config struct {
3939
// Table contains the routing table for this processor.
4040
// Required.
4141
Table []RoutingTableItem `mapstructure:"table"`
42+
// prevent unkeyed literal initialization
43+
_ struct{}
4244
}
4345

4446
// Validate checks if the processor configuration is valid.
@@ -97,4 +99,6 @@ type RoutingTableItem struct {
9799
// The routing processor will fail upon the first failure from these pipelines.
98100
// Optional.
99101
Pipelines []pipeline.ID `mapstructure:"pipelines"`
102+
// prevent unkeyed literal initialization
103+
_ struct{}
100104
}

connector/signaltometricsconnector/config/config.go

+4
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,8 @@ type Config struct {
4242
Spans []MetricInfo `mapstructure:"spans"`
4343
Datapoints []MetricInfo `mapstructure:"datapoints"`
4444
Logs []MetricInfo `mapstructure:"logs"`
45+
// prevent unkeyed literal initialization
46+
_ struct{}
4547
}
4648

4749
func (c *Config) Validate() error {
@@ -158,6 +160,8 @@ type MetricInfo struct {
158160
Histogram *Histogram `mapstructure:"histogram"`
159161
ExponentialHistogram *ExponentialHistogram `mapstructure:"exponential_histogram"`
160162
Sum *Sum `mapstructure:"sum"`
163+
// prevent unkeyed literal initialization
164+
_ struct{}
161165
}
162166

163167
func (mi *MetricInfo) ensureDefaults() {

connector/spanmetricsconnector/config.go

+4
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ var defaultDeltaTimestampCacheSize = 1000
2929
type Dimension struct {
3030
Name string `mapstructure:"name"`
3131
Default *string `mapstructure:"default"`
32+
// prevent unkeyed literal initialization
33+
_ struct{}
3234
}
3335

3436
// Config defines the configuration options for spanmetricsconnector.
@@ -91,6 +93,8 @@ type HistogramConfig struct {
9193
Unit metrics.Unit `mapstructure:"unit"`
9294
Exponential *ExponentialHistogramConfig `mapstructure:"exponential"`
9395
Explicit *ExplicitHistogramConfig `mapstructure:"explicit"`
96+
// prevent unkeyed literal initialization
97+
_ struct{}
9498
}
9599

96100
type ExemplarsConfig struct {

connector/sumconnector/config.go

+6
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ type Config struct {
2222
Metrics map[string]MetricInfo `mapstructure:"metrics"`
2323
DataPoints map[string]MetricInfo `mapstructure:"datapoints"`
2424
Logs map[string]MetricInfo `mapstructure:"logs"`
25+
// prevent unkeyed literal initialization
26+
_ struct{}
2527
}
2628

2729
// MetricInfo for a data type
@@ -30,11 +32,15 @@ type MetricInfo struct {
3032
Conditions []string `mapstructure:"conditions"`
3133
Attributes []AttributeConfig `mapstructure:"attributes"`
3234
SourceAttribute string `mapstructure:"source_attribute"`
35+
// prevent unkeyed literal initialization
36+
_ struct{}
3337
}
3438

3539
type AttributeConfig struct {
3640
Key string `mapstructure:"key"`
3741
DefaultValue any `mapstructure:"default_value"`
42+
// prevent unkeyed literal initialization
43+
_ struct{}
3844
}
3945

4046
func (c *Config) Validate() (combinedErrors error) {

receiver/azureblobreceiver/config.go

+10
Original file line numberDiff line numberDiff line change
@@ -38,21 +38,29 @@ type Config struct {
3838
Logs LogsConfig `mapstructure:"logs"`
3939
// Traces related configurations
4040
Traces TracesConfig `mapstructure:"traces"`
41+
// prevent unkeyed literal initialization
42+
_ struct{}
4143
}
4244

4345
type EventHubConfig struct {
4446
// Azure Event Hub endpoint triggering on the `Blob Create` event
4547
EndPoint string `mapstructure:"endpoint"`
48+
// prevent unkeyed literal initialization
49+
_ struct{}
4650
}
4751

4852
type LogsConfig struct {
4953
// Name of the blob container with the logs (default = "logs")
5054
ContainerName string `mapstructure:"container_name"`
55+
// prevent unkeyed literal initialization
56+
_ struct{}
5157
}
5258

5359
type TracesConfig struct {
5460
// Name of the blob container with the traces (default = "traces")
5561
ContainerName string `mapstructure:"container_name"`
62+
// prevent unkeyed literal initialization
63+
_ struct{}
5664
}
5765

5866
type ServicePrincipalConfig struct {
@@ -62,6 +70,8 @@ type ServicePrincipalConfig struct {
6270
ClientID string `mapstructure:"client_id"`
6371
// Client secret, used with Service Principal authentication
6472
ClientSecret configopaque.String `mapstructure:"client_secret"`
73+
// prevent unkeyed literal initialization
74+
_ struct{}
6575
}
6676

6777
type AuthType string

0 commit comments

Comments
 (0)