Back to Plotjuggler

Anonymous usage statistics

docs/TELEMETRY.md

3.999.91.5 KB
Original Source

Anonymous usage statistics

PlotJuggler 4 sends one small anonymous ping per launch to https://app.plotjuggler.io/telemetry to count daily users — the same mechanism PlotJuggler 3 used, hardened for privacy.

What is sent

FieldExamplePurpose
user_id3f2c… (SHA-256)Salted hash of the OS machine id — counts unique machines; cannot be reversed or linked to other applications.
os / os_versionubuntu / 24.04Platform-support decisions.
version4.0.1Adoption per release.
installationappimagePackage-channel share (source, appimage, deb, windows).
archx86_64Whether arm64 builds are worth shipping.
display_serverwaylandLinux only: Wayland vs X11 session share.

Never sent: personal data, file names, paths, topic names, feature usage, session timing, or any behavioral data. The full field list is enforced by a unit test (telemetry_ping_test) — a payload change must update this document and that test together.

Opting out

Preferences → Appearance → Anonymous usage statistics (off = nothing is ever sent). Headless --screenshot runs never send the ping.

Implementation

pj_runtime's TelemetryPing (payload + transport); wired in pj_app/src/main.cpp behind the Preferences::send_anonymous_stats setting. The packaging channel comes from the PJ_INSTALLATION CMake cache variable (default source; release CI stamps appimage / deb / windows).