-
Notifications
You must be signed in to change notification settings - Fork 218
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Anonymous Telemetry #790
Merged
Merged
Anonymous Telemetry #790
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This reverts commit 48a9965.
…telemetry * 'telemetry' of https://github.com/markphelps/flipt: Bump @playwright/test from 1.19.2 to 1.20.2 in /ui (#783) Bump playwright from 1.20.1 to 1.20.2 in /ui (#784) Bump @babel/plugin-transform-modules-commonjs in /ui (#781) Bump chalk from 5.0.0 to 5.0.1 in /ui (#782) Bump bufbuild/buf-setup-action from 1.3.0 to 1.3.1 (#780) Bump prettier from 2.5.1 to 2.6.2 in /ui (#785) Update README.md Bump alpine from 3.15.3 to 3.15.4 in /build (#787) Discord (#786) Update CODE_OF_CONDUCT.md
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
It's finally time that I need to start collecting some very anonymous, very basic telemetry to better understand how many people are using Flipt in order to help drive future work.
Here is the output of what the telemetry payload looks like on the analytics service side:
Note there is no identifiable information not even an IP address, just a unique ID that gets created and stored on every host that lives at the new
meta.StateDirectory
location in a file calledtelemetry.json
.The StateDirectory can be set in the config file or by setting
FLIPT_META_STATE_DIRECTORY
to a string. It defaults to the value ofos.UserConfigDir()
or$HOME/.config
for *nix systems.Here's an example of the contents of
telemetry.json
:This data is sent every 4 hours per host.
Telemetry can be disabled completely by setting
meta.TelmetryEnabled
tofalse
in the config file or by setting theFLIPT_META_TELEMETRY_ENABLED
env var tofalse