Skip to content

Commit dd3cdb4

Browse files
authored
fix: APPSMITH_DISABLE_TELEMETRY (#2809)
## Description Provide a concise summary of the changes made in this pull request - ## Pull request type Check the appropriate box: - [ ] Review Fixes - [ ] Documentation Overhaul - [ ] Feature/Story - Link one or more Engineering Tickets * - [ ] A-Force - [ ] Error in documentation - [ ] Maintenance ## Documentation tickets Link to one or more documentation tickets: - ## Checklist From the below options, select the ones that are applicable: - [ ] Checked for Grammarly suggestions. - [ ] Adhered to the writing checklist. - [ ] Adhered to the media checklist. - [ ] Verified and updated cross-references or added redirect rules. - [ ] Tested the redirect rules on deploy preview. - [ ] Validated the modifications made to the content on the deploy preview. - [ ] Validated the CSS modifications on different screen sizes.
1 parent cdfb01f commit dd3cdb4

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

website/docs/getting-started/setup/environment-variables.md

+15-2
Original file line numberDiff line numberDiff line change
@@ -281,11 +281,24 @@ If you prefer to host your Appsmith instance on a personalized domain, you can d
281281

282282
Monitoring the performance of your Appsmith instance is crucial for making informed decisions about feature improvements and resource allocation.
283283

284-
##### `APPSMITH_TELEMETRY_ENABLED`
284+
##### `APPSMITH_DISABLE_TELEMETRY`
285285

286286
<dd>
287287

288-
Controls whether Appsmith sends telemetry data to its servers. You may choose to turn off the setting if it conflicts with your privacy policies or preferences. Set to `true` to allow Appsmith to collect anonymous telemetry data or `false` to opt out.
288+
Telemetry allows Appsmith to collect anonymous usage data to improve the product and provide a better user experience.
289+
290+
You can configure this environment variable to enable or disable anonymous usage data collection. By default, telemetry is `enabled`. To disable it, set this variable to `true`. For more details, see [Appsmith Telemetry](/product/telemetry).
291+
292+
293+
294+
295+
```js
296+
//To ENABLE telemetry (default behavior)
297+
APPSMITH_DISABLE_TELEMETRY=false
298+
299+
//To DISABLE telemetry
300+
APPSMITH_DISABLE_TELEMETRY=true
301+
```
289302

290303
</dd>
291304

0 commit comments

Comments
 (0)