Bug 1119513 - Change histogram from linear to exp. and buckets from 200 to 50. r=hannosch

This commit is contained in:
Garvan Keeley 2015-01-12 14:41:00 -05:00
parent 317a6683cf
commit af68bdef1d
2 changed files with 5 additions and 5 deletions

View File

@ -1258,7 +1258,7 @@ Geolocation::Update(nsIDOMGeoPosition *aSomewhere)
if (coords) {
double accuracy = -1;
coords->GetAccuracy(&accuracy);
mozilla::Telemetry::Accumulate(mozilla::Telemetry::GEOLOCATION_ACCURACY, accuracy);
mozilla::Telemetry::Accumulate(mozilla::Telemetry::GEOLOCATION_ACCURACY_EXPONENTIAL, accuracy);
}
}

View File

@ -313,11 +313,11 @@
"n_buckets": 50,
"description": "Time spent sweeping slowest compartment SCC (ms)"
},
"GEOLOCATION_ACCURACY": {
"GEOLOCATION_ACCURACY_EXPONENTIAL": {
"expires_in_version": "default",
"kind": "linear",
"high": "18000",
"n_buckets": 200,
"kind": "exponential",
"high": "100000",
"n_buckets": 50,
"description": "Location accuracy"
},
"GEOLOCATION_ERROR": {