DEV Community

Discussion on: Is collecting Sentry exceptions part of telemetry?

Collapse
 
stereoplegic profile image
Mike Bybee • Edited

It's a good idea to make as much data collection optional as possible, whether you make it opt-in or opt-out. Ideally the latter scenario would come with a warning that it's on by default if you opt (pun intended) to go that route.

With a conditional import, if they opt out (/don't opt in), don't import Sentry.

Collapse
 
saisandeepvaddi profile image
Sai Sandeep Vaddi

Thank you