Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We鈥檒l occasionally send you account related emails.

Already on GitHub? Sign in to your account

馃摎 Add telemetry docs #33757

Merged
merged 2 commits into from
Dec 22, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 0 additions & 8 deletions docs/operating-airbyte/security.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
30 changes: 30 additions & 0 deletions docs/operator-guides/telemetry.md
Original file line number Diff line number Diff line change
@@ -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.

<Tabs groupId="cloud-hosted">
<TabItem value="self-managed" label="Self Managed">
To disable telemetry for your instance, modify the `.env` file and define the following environment variable:

```
TRACKING_STRATEGY=logging
```
</TabItem>
<TabItem value="cloud" label="Cloud">
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.
</TabItem>
</Tabs>
4 changes: 4 additions & 0 deletions docs/using-airbyte/getting-started/add-a-destination.md
Original file line number Diff line number Diff line change
@@ -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).
Expand Down
1 change: 1 addition & 0 deletions docusaurus/sidebars.js
Original file line number Diff line number Diff line change
Expand Up @@ -503,6 +503,7 @@ module.exports = {
items: [
"operator-guides/configuring-airbyte-db",
"operator-guides/configuring-connector-resources",
"operator-guides/telemetry",
]
},
{
Expand Down
Loading