Closed
Bug 478308
Opened 16 years ago
Closed 16 years ago
Provide raw data for Firefox 3.0.4 and 3.0.5 MTBF reports
Categories
(mozilla.org Graveyard :: Server Operations, task)
mozilla.org Graveyard
Server Operations
Tracking
(Not tracked)
RESOLVED
FIXED
People
(Reporter: samuel.sidler+old, Assigned: chizu)
References
()
Details
Attachments
(1 file)
13.22 KB,
text/plain
|
Details |
Even before bug 478305 is fixed, we'd like to manipulate the MTBF data a bit. Please provide the data points for both Firefox 3.0.4 and 3.0.5.
Austin: Can you work up the sql for this?
Comment 1•16 years ago
|
||
SELECT '3.0.4' AS version, * FROM mtbffacts WHERE productdims_id = (
SELECT id FROM productdims
WHERE product = 'Firefox'
AND version = '3.0.4'
AND os_name = 'ALL'
)
ORDER BY day ASC;
SELECT '3.0.5' AS version, * FROM mtbffacts WHERE productdims_id = (
SELECT id FROM productdims
WHERE product = 'Firefox'
AND version = '3.0.5'
AND os_name = 'ALL'
)
ORDER BY day ASC;
Comment 2•16 years ago
|
||
3.0.6 please.
Comment 3•16 years ago
|
||
er, 3.0.6 too please.
Comment 4•16 years ago
|
||
Added dependency on 478302. Here is additional SQL for 3.0.6.
SELECT '3.0.6' AS version, * FROM mtbffacts WHERE productdims_id = (
SELECT id FROM productdims
WHERE product = 'Firefox'
AND version = '3.0.6'
AND os_name = 'ALL'
)
ORDER BY day ASC;
Status: NEW → RESOLVED
Closed: 16 years ago
Resolution: --- → FIXED
Comment 6•16 years ago
|
||
Odd data...
Did 3.0.5 get tons crashier? 3.0.4 was showing 60-70K reports a day, 3.0.5 and 3.0.6 are more like 100K a day. I guess there was a Major Update in there, but it didn't increase our FF3 user base by that percentage.
What's up with the 3.0.6 "0 unique users" reporting hundreds of thousands of crashes?
Reporter | ||
Comment 7•16 years ago
|
||
Dan, you can now grab the CSV on the MTBF reports on crash-stats.
We *did* get that many more reported crashes, but our MTBF went up 3.0.5. For 3.0.6, we no longer can count unique users because we turned of the GUID...
Updated•10 years ago
|
Product: mozilla.org → mozilla.org Graveyard
You need to log in
before you can comment on or make changes to this bug.
Description
•