mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-17 07:31:42 +03:00
# Description Please include a summary of the changes and the related issue. Please also include relevant motivation and context. ## Checklist before requesting a review Please delete options that are not relevant. - [ ] My code follows the style guidelines of this project - [ ] I have performed a self-review of my code - [ ] I have commented hard-to-understand areas - [ ] I have ideally added tests that prove my fix is effective or that my feature works - [ ] New and existing unit tests pass locally with my changes - [ ] Any dependent changes have been merged ## Screenshots (if appropriate):
22 lines
753 B
Plaintext
22 lines
753 B
Plaintext
---
|
|
title: Telemetry
|
|
description: Learn how to configure telemetry in Quivr.
|
|
icon: chart
|
|
---
|
|
|
|
Quivr uses its own telemetry service to track user interactions and usage. This guide will show you to deactivate or configure the telemetry service in Quivr.
|
|
|
|
## Telemetry Configuration
|
|
|
|
To configure the telemetry service in Quivr, you need to configure the following environment variables in your `.env` file:
|
|
|
|
```bash
|
|
TELEMETRY_ENABLED=false
|
|
```
|
|
|
|
By default, the `TELEMETRY_ENABLED` variable is set to `true`. If you want to deactivate the telemetry service, you can set it to `false`.
|
|
|
|
We only collect data that is necessary for improving the user experience and the quality of the service. We do not collect any personal data or sensitive information.
|
|
|
|
|