Telemetry

ZeroFS collects anonymous usage data to help improve the project. This page explains exactly what is collected, how it is sent, and how to disable it.

What Is Collected

ZeroFS sends two types of events to PostHog:

Startup Event

Sent once each time the server starts:

PropertyExamplePurpose
version1.0.6Track adoption of new releases
oslinuxKnow which platforms to prioritize
archx86_64Know which architectures to support
backend_types3, gcs, azure, localUnderstand which storage backends are used
protocols["nfs", "9p"]Understand which protocols are used

Filesystem Stats

Sent once on startup, then every hour:

PropertyExamplePurpose
version1.0.6Correlate stats with versions
used_bytes1073741824Understand typical filesystem sizes
used_inodes4521Understand typical file counts
max_bytes107374182400Understand quota configurations
compressionLz4Understand compression preferences
cache_disk_gb10.0Understand cache sizing
cache_memory_gb2.0Understand memory cache sizing

What Is NOT Collected

  • No file names, paths, or contents
  • No encryption passwords or keys
  • No IP addresses or hostnames
  • No cloud provider credentials
  • No personally identifiable information

Anonymous Identity

A random UUID is generated on first run and stored locally in your cache directory as zerofs-telemetry-id. This ID is used to count unique installations and is not linked to any personal information.

How to Disable

Add the following to your configuration file:

[telemetry]
enabled = false

When the [telemetry] section is absent from the config, telemetry is enabled by default.

Implementation

Telemetry is implemented as simple HTTPS POST requests to PostHog's ingestion API. Events are sent asynchronously with a 5 second timeout and never block filesystem operations. All errors are silently ignored. The source code is in src/telemetry.rs.

Was this page helpful?