Skip to content

Commit

Permalink
fix: APPSMITH_DISABLE_TELEMETRY (#2809)
Browse files Browse the repository at this point in the history
## 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.
  • Loading branch information
harshilp24 authored Jan 28, 2025
1 parent cdfb01f commit dd3cdb4
Showing 1 changed file with 15 additions and 2 deletions.
17 changes: 15 additions & 2 deletions website/docs/getting-started/setup/environment-variables.md
Original file line number Diff line number Diff line change
Expand Up @@ -281,11 +281,24 @@ If you prefer to host your Appsmith instance on a personalized domain, you can d

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

##### `APPSMITH_TELEMETRY_ENABLED`
##### `APPSMITH_DISABLE_TELEMETRY`

<dd>

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.
Telemetry allows Appsmith to collect anonymous usage data to improve the product and provide a better user experience.

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).




```js
//To ENABLE telemetry (default behavior)
APPSMITH_DISABLE_TELEMETRY=false

//To DISABLE telemetry
APPSMITH_DISABLE_TELEMETRY=true
```

</dd>

Expand Down

0 comments on commit dd3cdb4

Please sign in to comment.