-
Notifications
You must be signed in to change notification settings - Fork 19
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
docs: New fallback_sitrep()
and related functionality for collecting telemetry data
#111
Conversation
fallback_sitrep()
and related functionality for collecting telemetry
Codecov ReportAttention: Patch coverage is
❗ Your organization needs to install the Codecov GitHub app to enable full functionality. Additional details and impacted files@@ Coverage Diff @@
## main #111 +/- ##
========================================
+ Coverage 9.35% 9.59% +0.23%
========================================
Files 128 129 +1
Lines 22463 22620 +157
========================================
+ Hits 2102 2170 +68
- Misses 20361 20450 +89 ☔ View full report in Codecov by Sentry. |
fallback_sitrep()
and related functionality for collecting telemetryfallback_sitrep()
and related functionality for collecting telemetry data
Collection and uploading of fallback events are now a two-step process. At run time, events are written to an
.ndjson
file, one line per entry, one file per process, anonymized. All entries can be reviewed with the newfallback_review()
and deleted withfallback_purge()
. The newfallback_upload()
then uploads the collected data. Uploading can also happen during package load (opt-in).The new
fallback_sitrep()
gives a situation report about the configuration and the available reports.Closes #102.