diff --git a/configuration/config.json b/configuration/config.json index 29b677006..364c63dd5 100644 --- a/configuration/config.json +++ b/configuration/config.json @@ -11,6 +11,7 @@ "runtimeDetectionEnabled": "false", "nodeProfileServiceEnabled": "false", "httpDetectionEnabled": "false", + "sslTracingEnabled": "false", "nodeProfileInterval": "1m", "seccompServiceEnabled": "false", "enableEmbeddedSBOMs": "false", diff --git a/pkg/config/config.go b/pkg/config/config.go index f203ad110..d8c9061c8 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -65,6 +65,7 @@ type Config struct { DRandomx bool `mapstructure:"dRandomx"` DSeccomp bool `mapstructure:"dSeccomp"` DSsh bool `mapstructure:"dSsh"` + DSsl bool `mapstructure:"dSsl"` DSymlink bool `mapstructure:"dSymlink"` DTop bool `mapstructure:"dTop"` DUnshare bool `mapstructure:"dUnshare"` @@ -85,6 +86,7 @@ type Config struct { EnableRuntimeDetection bool `mapstructure:"runtimeDetectionEnabled"` EnableSbomGeneration bool `mapstructure:"sbomGenerationEnabled"` EnableSeccomp bool `mapstructure:"seccompServiceEnabled"` + EnableSslTracing bool `mapstructure:"sslTracingEnabled"` HostMonitoringEnabled bool `mapstructure:"hostMonitoringEnabled"` StandaloneMonitoringEnabled bool `mapstructure:"standaloneMonitoringEnabled"` SeccompProfileBackend string `mapstructure:"seccompProfileBackend"` diff --git a/pkg/config/config_test.go b/pkg/config/config_test.go index 74f322147..490cd6321 100644 --- a/pkg/config/config_test.go +++ b/pkg/config/config_test.go @@ -34,6 +34,7 @@ func TestLoadConfig(t *testing.T) { EnableNetworkTracing: false, EnableNodeProfile: false, EnableHttpDetection: false, + EnableSslTracing: false, EnableHostMalwareSensor: false, EnableHostNetworkSensor: false, EnableFIM: true,