HACKER Q&A
📣 thiht

Is there a reference of CLI tools with analytics?


I'm interested in a list of CLI tools with embedded analytics, and how to disable them. For example, Homebrew analytics can be disabled with:

    export HOMEBREW_NO_ANALYTICS=1
Is there such a list?


  👤 arinlen Accepted Answer ✓
The .NET CLI explicitly emits telemetry.

https://docs.microsoft.com/en-gb/dotnet/core/tools/telemetry


👤 toastal
Not the most straightforward way to do it, but Nixpkgs have analytics off by default on most applications. Still waiting on one of my additions for Gatsby's disabled analytics to get reviewed and merged though.

👤 rozenmd
If there is, I couldn't find it.

It'd be awesome if there was a standard "doNotTrack" style variable for CLIs.

With wrangler we went with WRANGLER_SEND_METRICS, as well as a user prompt to opt in/out.


👤 throwaway576652
AWS SAM CLI:

    export SAM_CLI_TELEMETRY=0