From 0feb2235fcbb67e7d1904ef9a553df35ce1c3439 Mon Sep 17 00:00:00 2001 From: Tim Roes Date: Fri, 22 Dec 2023 22:14:02 +0100 Subject: [PATCH 1/2] Add telemetry docs --- docs/operating-airbyte/security.md | 8 -------- docs/operator-guides/telemetry.md | 30 ++++++++++++++++++++++++++++++ docusaurus/sidebars.js | 1 + 3 files changed, 31 insertions(+), 8 deletions(-) create mode 100644 docs/operator-guides/telemetry.md diff --git a/docs/operating-airbyte/security.md b/docs/operating-airbyte/security.md index 3f0eb252ad4a0..ae224b3ad75a0 100644 --- a/docs/operating-airbyte/security.md +++ b/docs/operating-airbyte/security.md @@ -88,14 +88,6 @@ Note that this process is not reversible. Once you have converted to a secret st Most Airbyte Open Source connectors support encryption-in-transit (SSL or HTTPS). We recommend configuring your connectors to use the encryption option whenever available. -### Telemetry - -Airbyte does send anonymized data to our services to improve the product (especially connector reliability and scale). To disable telemetry, modify the .env file and define the following environment variable: - -``` -TRACKING_STRATEGY=logging -``` - ## Securing Airbyte Cloud Airbyte Cloud leverages the security features of leading Cloud providers and sets least-privilege access policies to ensure data security. diff --git a/docs/operator-guides/telemetry.md b/docs/operator-guides/telemetry.md new file mode 100644 index 0000000000000..71352d7c8b474 --- /dev/null +++ b/docs/operator-guides/telemetry.md @@ -0,0 +1,30 @@ +--- +products: all +--- + +import Tabs from "@theme/Tabs"; +import TabItem from "@theme/TabItem"; + +# Telemetry + +Airbyte collects telemetry data in the UI and the servers to help us understand users and their use-cases better to improve the product. + +Also check our [privacy policy](https://airbyte.com/privacy-policy) for more details. + + + + To disable telemetry for your instance, modify the `.env` file and define the following environment variable: + + ``` + TRACKING_STRATEGY=logging + ``` + + + When visiting the webapp or our homepage the first time, you'll be asked for your consent to + telemetry collection depending on the legal requirements of your location. + + To change this later go to **Settings** > **User Settings** > **Cookie Preferences** or **Cookie Preferences** in the footer of our [homepage](https://airbyte.com). + + Server side telemetry collection can't be changed using Airbyte Cloud. + + \ No newline at end of file diff --git a/docusaurus/sidebars.js b/docusaurus/sidebars.js index d1914f2c73600..e6d5340725fee 100644 --- a/docusaurus/sidebars.js +++ b/docusaurus/sidebars.js @@ -503,6 +503,7 @@ module.exports = { items: [ "operator-guides/configuring-airbyte-db", "operator-guides/configuring-connector-resources", + "operator-guides/telemetry", ] }, { From c1e1eaea751966110642134bc267aa0518c974e3 Mon Sep 17 00:00:00 2001 From: Tim Roes Date: Fri, 22 Dec 2023 22:20:14 +0100 Subject: [PATCH 2/2] Add forgotten products metadata --- docs/using-airbyte/getting-started/add-a-destination.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/using-airbyte/getting-started/add-a-destination.md b/docs/using-airbyte/getting-started/add-a-destination.md index cc473d8384f39..d8957382efc6b 100644 --- a/docs/using-airbyte/getting-started/add-a-destination.md +++ b/docs/using-airbyte/getting-started/add-a-destination.md @@ -1,3 +1,7 @@ +--- +products: all +--- + # Add a Destination Destinations are the data warehouses, data lakes, databases and analytics tools where you will load the data from your chosen source(s). The steps to setting up your first destination are very similar to those for [setting up a source](./add-a-source).