From be96d4e09972751f13eab8a0e9540ddbe682152b Mon Sep 17 00:00:00 2001 From: Alon Girmonsky <1990761+alongir@users.noreply.github.com> Date: Fri, 16 Aug 2024 11:32:29 -0700 Subject: [PATCH] Disable TCP dissector by default (#1583) TCP dissector can be added as a helm value. This dissector shouldn't be used in production clusters, as enabling this dissector will consume enormous amounts of CPU and memory. TODO: Have the TCP dissector adhere to pod targeting rules. --- config/configStruct.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/configStruct.go b/config/configStruct.go index 97b42fa0a..c16237bd0 100644 --- a/config/configStruct.go +++ b/config/configStruct.go @@ -82,7 +82,7 @@ func CreateDefaultConfig() ConfigStruct { "redis", "sctp", "syscall", - "tcp", + // "tcp", "ws", }, },