diff --git a/config/configStruct.go b/config/configStruct.go index 0340abc7e..759eecbb2 100644 --- a/config/configStruct.go +++ b/config/configStruct.go @@ -82,8 +82,8 @@ func CreateDefaultConfig() ConfigStruct { "redis", "sctp", "syscall", - "tcp", - "udp", + // "tcp", + // "udp", "ws", "tls", }, diff --git a/helm-chart/README.md b/helm-chart/README.md index 8a8e58a4c..c3baa9c98 100644 --- a/helm-chart/README.md +++ b/helm-chart/README.md @@ -178,7 +178,7 @@ Please refer to [metrics](./metrics.md) documentation for details. | `tap.defaultFilter` | Sets the default dashboard KFL filter (e.g. `http`). By default, this value is set to filter out noisy protocols such as DNS, UDP, ICMP and TCP. The user can easily change this in the Dashboard. You can also change this value to change this behavior. | `"!dns and !tcp and !udp and !icmp"` | | `tap.globalFilter` | Prepends to any KFL filter and can be used to limit what is visible in the dashboard. For example, `redact("request.headers.Authorization")` will redact the appropriate field. Another example `!dns` will not show any DNS traffic. | `"timestamp>now()"` | | `tap.metrics.port` | Pod port used to expose Prometheus metrics | `49100` | -| `tap.enabledDissectors` | This is an array of strings representing the list of supported protocols. Remove or comment out redundant protocols (e.g., dns).| The default list includes: amqp, dns , http, icmp, kafka, redis,sctp, syscall, tcp, ws. | +| `tap.enabledDissectors` | This is an array of strings representing the list of supported protocols. Remove or comment out redundant protocols (e.g., dns).| The default list excludes: `dns` and `tcp` | | `logs.file` | Logs dump path | `""` | | `pcapdump.enabled` | Enable recording of all traffic captured according to other parameters. Whatever Kubeshark captures, considering pod targeting rules, will be stored in pcap files ready to be viewed by tools | `true` | | `pcapdump.maxTime` | The time window into the past that will be stored. Older traffic will be discarded. | `2h` |