diff --git a/config/config.go b/config/config.go index 465affe082..a395c3f53e 100644 --- a/config/config.go +++ b/config/config.go @@ -156,6 +156,7 @@ var ( // DefaultConfig is the default top-level configuration. DefaultConfig = Config{ GlobalConfig: DefaultGlobalConfig, + Runtime: DefaultRuntimeConfig, } // DefaultGlobalConfig is the default global configuration. diff --git a/config/config_test.go b/config/config_test.go index 437b858b00..faca7dda12 100644 --- a/config/config_test.go +++ b/config/config_test.go @@ -2222,6 +2222,7 @@ func TestEmptyConfig(t *testing.T) { exp := DefaultConfig exp.loaded = true require.Equal(t, exp, *c) + require.Equal(t, 75, c.Runtime.GoGC) } func TestExpandExternalLabels(t *testing.T) { @@ -2269,7 +2270,6 @@ func TestEmptyGlobalBlock(t *testing.T) { c, err := Load("global:\n", promslog.NewNopLogger()) require.NoError(t, err) exp := DefaultConfig - exp.Runtime = DefaultRuntimeConfig exp.loaded = true require.Equal(t, exp, *c) }