From c95d63feb0d7d0afc4c322c1776048f788905b5b Mon Sep 17 00:00:00 2001 From: Alon Girmonsky <1990761+alongir@users.noreply.github.com> Date: Mon, 24 Mar 2025 14:09:58 -0700 Subject: [PATCH] Sentry Enabled By Default (#1721) * Update values.yaml Enable Sentry by default. * Update README.md --- helm-chart/README.md | 2 +- helm-chart/values.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/helm-chart/README.md b/helm-chart/README.md index 4d0a16ffe..f9a077419 100644 --- a/helm-chart/README.md +++ b/helm-chart/README.md @@ -200,7 +200,7 @@ Example for overriding image names: | `tap.debug` | Enable debug mode | `false` | | `tap.telemetry.enabled` | Enable anonymous usage statistics collection | `true` | | `tap.resourceGuard.enabled` | Enable resource guard worker process, which watches RAM/disk usage and enables/disables traffic capture based on available resources | `false` | -| `tap.sentry.enabled` | Enable sending of error logs to Sentry | `false` | +| `tap.sentry.enabled` | Enable sending of error logs to Sentry | `true` (only for qualified users) | | `tap.sentry.environment` | Sentry environment to label error logs with | `production` | | `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, **temporarily**, in the Dashboard. For a permanent change, you should change this value in the `values.yaml` or `config.yaml` file. | `"!dns and !error"` | | `tap.liveConfigMapChangesDisabled` | If set to `true`, all user functionality (scripting, targeting settings, global & default KFL modification, traffic recording, traffic capturing on/off, protocol dissectors) involving dynamic ConfigMap changes from UI will be disabled | `false` | diff --git a/helm-chart/values.yaml b/helm-chart/values.yaml index 11a3a7c98..b36b610b9 100644 --- a/helm-chart/values.yaml +++ b/helm-chart/values.yaml @@ -146,7 +146,7 @@ tap: watchdog: enabled: true sentry: - enabled: false + enabled: true environment: production defaultFilter: "!dns and !error" liveConfigMapChangesDisabled: false