Skip to content

Instantly share code, notes, and snippets.

@cometkim
Created April 11, 2025 06:53
Show Gist options
  • Save cometkim/5091a574b5913b8ae05fad3365a34a8b to your computer and use it in GitHub Desktop.
Save cometkim/5091a574b5913b8ae05fad3365a34a8b to your computer and use it in GitHub Desktop.
Curated list to opt-out telemetry collection from tools and frameworks
# Cargo binstall
# https://github.com/cargo-bins/cargo-binstall?tab=readme-ov-file#telemetry-collection
export BINSTALL_DISABLE_TELEMETRY=true

# Go Telemetry (not opt-in by default)
# https://go.dev/doc/telemetry
export GOTELEMETRY=off

# GatsbyJS
# https://www.gatsbyjs.com/docs/telemetry/#how-to-opt-out
export GATSBY_TELEMETRY_DISABLED=1

# Next.js
# https://nextjs.org/telemetry#how-do-i-opt-out
export NEXT_TELEMETRY_DISABLED=1

# RedwoodJS
# https://telemetry.redwoodjs.com/
export REDWOOD_DISABLE_TELEMETRY=1

# Astro
# https://astro.build/telemetry/
export ASTRO_TELEMETRY_DISABLED=1

# Storybook
# https://storybook.js.org/docs/configure/telemetry#how-to-opt-out
export STORYBOOK_DISABLE_TELEMETRY=1

# AWS SAM CLI
# https://docs.aws.amazon.com/serverless-application-model/latest/developerguide/serverless-sam-telemetry.html
export SAM_CLI_TELEMETRY=0

# .NET SDK & CLI
# https://learn.microsoft.com/en-us/dotnet/core/tools/telemetry#how-to-opt-out
export DOTNET_CLI_TELEMETRY_OPTOUT=1

# Algolia CLI
# https://www.algolia.com/doc/tools/cli/get-started/telemetry/
export ALGOLIA_CLI_TELEMETRY=0

Let me know if any update

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment