From 80fa18cbba8035993cb4b54c34e7418c3212739c Mon Sep 17 00:00:00 2001 From: Alon Girmonsky <1990761+alongir@users.noreply.github.com> Date: Sun, 8 Dec 2024 15:02:50 -0800 Subject: [PATCH] Added LDAP support (#1647) --- config/configStruct.go | 1 + helm-chart/values.yaml | 3 +-- manifests/complete.yaml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/configStruct.go b/config/configStruct.go index 02aeb15d0..833326e2a 100644 --- a/config/configStruct.go +++ b/config/configStruct.go @@ -82,6 +82,7 @@ func CreateDefaultConfig() ConfigStruct { // "udp", "ws", // "tls", + "ldap", }, }, } diff --git a/helm-chart/values.yaml b/helm-chart/values.yaml index 1eaa2b357..951c842f1 100644 --- a/helm-chart/values.yaml +++ b/helm-chart/values.yaml @@ -103,7 +103,7 @@ tap: sentry: enabled: false environment: production - defaultFilter: "!dns and !tcp and !udp and !icmp" + defaultFilter: "!dns and !error" scriptingDisabled: false targetedPodsUpdateDisabled: false presetFiltersChangingEnabled: true @@ -133,7 +133,6 @@ tap: - sctp - syscall - ws - - tls metrics: port: 49100 pprof: diff --git a/manifests/complete.yaml b/manifests/complete.yaml index 429c0acf1..f96e97e6b 100644 --- a/manifests/complete.yaml +++ b/manifests/complete.yaml @@ -252,7 +252,7 @@ data: TIMEZONE: ' ' CLOUD_LICENSE_ENABLED: 'true' DUPLICATE_TIMEFRAME: '200ms' - ENABLED_DISSECTORS: 'amqp,dns,http,icmp,kafka,redis,sctp,syscall,ws,tls' + ENABLED_DISSECTORS: 'amqp,dns,http,icmp,kafka,redis,sctp,syscall,ws,tls,ldap' DISSECTORS_UPDATING_ENABLED: 'true' DETECT_DUPLICATES: 'false' PCAP_DUMP_ENABLE: 'true'