mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-24 21:31:04 +00:00
Bug 1119513 - Change histogram from linear to exp. and buckets from 200 to 50. r=hannosch
This commit is contained in:
parent
fe736b8078
commit
9382e5ec49
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -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": {
|
||||
|
Loading…
Reference in New Issue
Block a user