1
0
mirror of synced 2025-12-23 21:03:15 -05:00

docs: fix V1 telemetry configuration in operator guide (#62497)

Co-authored-by: Devin AI <158243242+devin-ai-integration[bot]@users.noreply.github.com>
Co-authored-by: ian.alton@airbyte.io <ian.alton@airbyte.io>
This commit is contained in:
devin-ai-integration[bot]
2025-07-02 14:03:34 -07:00
committed by GitHub
parent 910b171efe
commit 2a2281c1c0

View File

@@ -13,10 +13,18 @@ Also check our [privacy policy](https://airbyte.com/privacy-policy) for more det
<Tabs groupId="cloud-hosted">
<TabItem value="self-managed" label="Self Managed">
To disable telemetry for your instance, modify the `values.yaml` file and define the following environment variable:
To disable telemetry for your instance, modify the `values.yaml` file and override the hardcoded telemetry setting using component-specific `env_vars` sections:
```
TRACKING_STRATEGY=logging
```yaml
# Override telemetry for server component
server:
env_vars:
TRACKING_STRATEGY: logging
# Override telemetry for worker component
worker:
env_vars:
TRACKING_STRATEGY: logging
```
</TabItem>