You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Replace the verbose bulleted overview with a tight three-sentence blurb
that names what's collected, where the opt-outs live, and points readers
to docs/TELEMETRY.md for everything else.
Co-authored-by: Isaac
Copy file name to clipboardExpand all lines: README.md
+9-44Lines changed: 9 additions & 44 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -53,50 +53,15 @@ client
53
53
54
54
## Telemetry
55
55
56
-
The Databricks SQL Driver for Node.js includes an **opt-in telemetry system** that collects driver usage metrics and performance data to help improve the driver. Telemetry is **disabled by default** and follows a **privacy-first design**.
57
-
58
-
### Key Features
59
-
60
-
-**Privacy-first**: No SQL queries, results, or sensitive data is ever collected
61
-
-**Opt-in**: Controlled by server-side feature flag (disabled by default)
62
-
-**Non-blocking**: All telemetry operations are asynchronous and never impact your queries
63
-
-**Resilient**: Circuit breaker protection prevents telemetry failures from affecting your application
telemetryEnabled:false, // Disable for this connection
96
-
});
97
-
```
98
-
99
-
For detailed documentation including configuration options, event types, troubleshooting, and privacy details, see [docs/TELEMETRY.md](docs/TELEMETRY.md).
56
+
The driver emits connection, statement, and CloudFetch metrics plus
57
+
redacted error events to help Databricks improve driver reliability. No
58
+
SQL text, parameter values, or row data is ever collected. Emission is
59
+
gated by a server-side feature flag and can be disabled per-connection
60
+
with `telemetryEnabled: false` or globally with the
61
+
`DATABRICKS_TELEMETRY_DISABLED` env var.
62
+
63
+
See [docs/TELEMETRY.md](docs/TELEMETRY.md) for the full event payloads,
64
+
tuning knobs, multi-tenant guidance, and troubleshooting.
0 commit comments