Closed
Bug 742539
Opened 13 years ago
Closed 9 years ago
Make persistent telemetry more useful
Categories
(Toolkit :: Telemetry, defect)
Toolkit
Telemetry
Tracking
()
RESOLVED
WORKSFORME
People
(Reporter: taras.mozilla, Unassigned)
References
Details
(Keywords: meta)
Currently persistent telemetry fails to report useful data. This is best illustrated by the following:
456 if (havePreviousSession) {
457 payloadObj.histograms = previousHistograms;
458 }
459 else {
460 payloadObj.simpleMeasurements = getSimpleMeasurements();
461 payloadObj.histograms = this.getHistograms(Telemetry.histogramSnapshots);
462 payloadObj.slowSQL = Telemetry.slowSQL;
463 payloadObj.chromeHangs = Telemetry.chromeHangs;
464 payloadObj.addonHistograms = this.getAddonHistograms();
465 }
Additionally telemetry data is only saved on shutdown. This means we miss about 10% of our persistent reports where browser doesn't shutdown successfully(according to SHUTDOWN_OK)
Reporter | ||
Comment 1•13 years ago
|
||
s/useful data/some useful data/. Persistent telemetry is very useful already :)
![]() |
||
Updated•13 years ago
|
![]() |
||
Updated•13 years ago
|
OS: Windows 7 → All
Hardware: x86_64 → All
Comment 2•9 years ago
|
||
We already cover this now, see bug 719167, comment 9.
Status: NEW → RESOLVED
Closed: 9 years ago
Resolution: --- → WORKSFORME
Updated•9 years ago
|
Assignee: nfroyd → nobody
You need to log in
before you can comment on or make changes to this bug.
Description
•