We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 47329a2 commit 26e7c79Copy full SHA for 26e7c79
processor/coralogixprocessor/config.go
@@ -5,13 +5,13 @@ package coralogixprocessor // import "github.com/open-telemetry/opentelemetry-co
5
6
import "fmt"
7
8
-type sampingConfig struct {
+type samplingConfig struct {
9
enabled bool `mapstructure:"enabled"`
10
maxCacheSizeMib int64 `mapstructure:"max_cache_size_mib"`
11
}
12
13
type databaseBlueprintsConfig struct {
14
- sampling sampingConfig `mapstructure:"sampling"`
+ sampling samplingConfig `mapstructure:"sampling"`
15
16
17
type Config struct {
0 commit comments