Skip to main content

Anonymous telemetry events

By default, Netdata collects anonymous usage information from the open-source monitoring Agent. For events like start, stop, crash, etc., we use our own cloud function in GCP. For frontend telemetry (page views, etc.) on the dashboard itself, we use the open-source product analytics platform PostHog.

We are strongly committed to your data privacy.

We use the statistics gathered from this information for two purposes:

  1. Quality assurance, to help us understand if Netdata behaves as expected, and to help us classify repeated issues with certain distributions or environments.

  2. Usage statistics, to help us interpret how people use the Netdata Agent in real-world environments, and to help us identify how our development/design decisions influence the community.

Netdata collects usage information via two different channels:

What data is collected​

Agent Dashboard - PostHog JavaScript​

When you access an Agent dashboard session by visiting http://NODE:19999, Netdata initializes a PostHog session and masks various event attributes.

Note: You can see the relevant code in the dashboard repository where the window.posthog.register() call is made.

window.posthog.register({
distinct_id: machineGuid,
$ip: "127.0.0.1",
$current_url: "agent dashboard",
$pathname: "netdata-dashboard",
$host: "dashboard.netdata.io",
})

In the above snippet, a Netdata PostHog session is initialized and the ip, current_url, pathname, and host attributes are set to constant values for all events that may be sent during the session. This way, information like the IP or hostname of the Agent will not be sent as part of the product usage event data.

We have configured the dashboard to trigger the PostHog JavaScript code only when the variable anonymous_statistics is true. The value of this variable is controlled via the opt-out mechanism.

Agent Backend - Anonymous Statistics Script​

Every time the daemon is started or stopped, and every time a fatal condition is encountered, Netdata uses the anonymous statistics script to collect system information and send it to the Netdata telemetry cloud function via an HTTP call.

Information collected for all events:

  • Netdata version, build information, release channel, install type
  • OS name, version, ID, and detection method
  • Kernel name, version, and architecture
  • Virtualization and containerization technology
  • System CPU information (model, vendor, frequency, core count)
  • System disk and RAM information (total sizes)
  • Netdata configuration (streaming, memory mode, web enabled, HTTPS, etc.)
  • Alert counts (normal, warning, critical)
  • Chart and metric counts
  • Collector information
  • Cloud connection status and availability
  • Streaming/mirroring configuration

For FATAL events only:

The FATAL event sends the Netdata process and thread name, along with the source code function, source code filename, and source code line number of the fatal error.

note

To see exactly what and how is collected, you can review the script template daemon/anonymous-statistics.sh.in. The template is converted to a bash script called anonymous-statistics.sh, installed under the Netdata plugins directory, which is usually /usr/libexec/netdata/plugins.d.

Quick Decision Guide​

What's your installation type?

🐧 Linux (standard)    β†’ Use Method 1 (File-based)
πŸ–₯️ Windows β†’ Use Method 2 (Windows-specific)
🐳 Docker β†’ Use Method 3 (Environment variable)
πŸ“¦ Manual/Offline β†’ Use Method 1 (File-based)
πŸ”· FreeBSD β†’ Use Method 1 (File-based)
note

All opt-out methods prevent:

  • The daemon from executing the anonymous statistics script
  • The PostHog JavaScript snippet (which remains on the dashboard) from firing and sending any data to Netdata PostHog

When opt-out is enabled, the anonymous statistics script exits immediately without sending any data.

Opt-out Methods​

Method 1: Create opt-out file (Linux/macOS/FreeBSD)

When to use: Standard Linux installations, FreeBSD, manual installations, macOS, or offline setups.

Steps:

  1. Navigate to your Netdata configuration directory
  2. Create an empty file called .opt-out-from-anonymous-statistics
# Linux
touch /etc/netdata/.opt-out-from-anonymous-statistics

# FreeBSD
touch /usr/local/etc/netdata/.opt-out-from-anonymous-statistics
tip

This method works for all installation types including FreeBSD, manual, offline, and macOS installations. The file simply needs to existβ€”the content doesn't matter.

Method 2: Windows

When to use: Windows Agent installations.

On Windows, the Netdata configuration directory is located at C:\Program Files\Netdata\etc\netdata.

Option A: Create opt-out file

Run PowerShell as Administrator and execute:

New-Item -Path "C:\Program Files\Netdata\etc\netdata\.opt-out-from-anonymous-statistics" -ItemType File -Force

Option B: Set environment variable

Run PowerShell as Administrator and execute:

[Environment]::SetEnvironmentVariable("DISABLE_TELEMETRY", "1", "Machine")
Restart-Service -Name Netdata
note

After setting the environment variable, restart the Netdata service for the changes to take effect.

Method 3: Docker

When to use: Container-based deployments.

Set the DISABLE_TELEMETRY environment variable when creating the container:

docker run -e DISABLE_TELEMETRY=1 ...

Or using Docker Compose:

environment:
- DISABLE_TELEMETRY=1

See the Docker installation guide for complete configuration.

Method 4: Installer scripts

When to use: Initial installation or manual updates.

Pass the --disable-telemetry flag to any installer script:

./netdata-installer.sh --disable-telemetry

Or export the environment variable before running the installer:

export DISABLE_TELEMETRY=1
./kickstart.sh

See the installation documentation for available installer scripts.

Installation-specific paths​

Installation TypeConfiguration Directory
Linux (standard)/etc/netdata
WindowsC:\Program Files\Netdata\etc\netdata
DockerN/A (use environment variable)
macOS (Homebrew)/usr/local/etc/netdata
macOS (other)/etc/netdata
FreeBSD/usr/local/etc/netdata

Verification​

To confirm that telemetry is disabled:

  1. Check that the .opt-out-from-anonymous-statistics file exists in your config directory, OR
  2. Verify that the DISABLE_TELEMETRY environment variable is set

The Agent dashboard will no longer send PostHog events, and the backend statistics script will not execute.


Do you have any feedback for this page? If so, you can open a new issue on our netdata/learn repository.