mirror of
https://github.com/browser-use/browser-use
synced 2026-05-06 17:52:15 +02:00
- Reformatted JSON structure in `docs.json` for better readability. - Updated navigation paths for development-related documentation. - Removed outdated `hooks.mdx` and `mcp-client.mdx` files. - Added new `get-help.mdx`, `local-setup.mdx`, `contribution-guide.mdx`, and `observability.mdx` files to enhance developer resources. - Introduced `telemetry.mdx` to clarify data collection practices and opt-out options. - Updated `mcp-server.mdx` to reflect current capabilities and usage instructions.
32 lines
830 B
Plaintext
32 lines
830 B
Plaintext
---
|
|
title: "Telemetry"
|
|
description: "Understanding Browser Use's telemetry"
|
|
icon: "chart-mixed"
|
|
mode: "wide"
|
|
---
|
|
|
|
## Overview
|
|
|
|
Browser Use is free under the MIT license. To help us continue improving the library, we collect anonymous usage data with [PostHog](https://posthog.com) . This information helps us understand how the library is used, fix bugs more quickly, and prioritize new features.
|
|
|
|
|
|
## Opting Out
|
|
|
|
You can disable telemetry by setting the environment variable:
|
|
|
|
```bash .env
|
|
ANONYMIZED_TELEMETRY=false
|
|
```
|
|
|
|
Or in your Python code:
|
|
|
|
```python
|
|
import os
|
|
os.environ["ANONYMIZED_TELEMETRY"] = "false"
|
|
```
|
|
|
|
<Note>
|
|
Even when enabled, telemetry has zero impact on the library's performance. Code is available in [Telemetry
|
|
Service](https://github.com/browser-use/browser-use/tree/main/browser_use/telemetry).
|
|
</Note>
|