From 72b95255078ba4f18c7b023a373c06b796a050e9 Mon Sep 17 00:00:00 2001 From: Dylan Conway Date: Sat, 29 Nov 2025 22:12:18 -0500 Subject: [PATCH] update bunfig telemetry docs (#25237) ### What does this PR do? ### How did you verify your code works? --- docs/runtime/bunfig.mdx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/docs/runtime/bunfig.mdx b/docs/runtime/bunfig.mdx index 669e9a1330..2ed368d9ba 100644 --- a/docs/runtime/bunfig.mdx +++ b/docs/runtime/bunfig.mdx @@ -107,7 +107,9 @@ Bun supports the following loaders: ### `telemetry` -The `telemetry` field permit to enable/disable the analytics records. Bun records bundle timings (so we can answer with data, "is Bun getting faster?") and feature usage (e.g., "are people actually using macros?"). The request body size is about 60 bytes, so it's not a lot of data. By default the telemetry is enabled. Equivalent of `DO_NOT_TRACK` env variable. +The `telemetry` field is used to enable/disable analytics. By default, telemetry is enabled. This is equivalent to the `DO_NOT_TRACK` environment variable. + +Currently we do not collect telemetry and this setting is only used for enabling/disabling anonymous crash reports, but in the future we plan to collect information like which Bun APIs are used most or how long `bun build` takes. ```toml title="bunfig.toml" icon="settings" telemetry = false