Bug 1281793 - part 7 - Remove some non-used telemetry IDs - widget directory, r=gfritzsche

This commit is contained in:
Andrea Marchesini
2016-07-04 17:11:52 +02:00
parent 846517c790
commit 4b45cede4f
3 changed files with 0 additions and 38 deletions

View File

@@ -3269,24 +3269,6 @@
"n_values": 6,
"description": "Network identification (0=None, 1=New, 2=Same)"
},
"IDLE_NOTIFY_BACK_MS": {
"alert_emails": ["froydnj@mozilla.com"],
"bug_numbers": [731004],
"expires_in_version": "40",
"kind": "exponential",
"high": 5000,
"n_buckets": 10,
"description": "Time spent checking for and notifying listeners that the user is back (ms)"
},
"IDLE_NOTIFY_BACK_LISTENERS": {
"alert_emails": ["froydnj@mozilla.com"],
"bug_numbers": [731004],
"expires_in_version": "40",
"kind": "linear",
"high": 100,
"n_buckets": 20,
"description": "Number of listeners notified that the user is back"
},
"IDLE_NOTIFY_IDLE_MS": {
"alert_emails": ["froydnj@mozilla.com"],
"bug_numbers": [731004],
@@ -3296,15 +3278,6 @@
"n_buckets": 10,
"description": "Time spent checking for and notifying listeners that the user is idle (ms)"
},
"IDLE_NOTIFY_IDLE_LISTENERS": {
"alert_emails": ["froydnj@mozilla.com"],
"bug_numbers": [731004],
"expires_in_version": "40",
"kind": "linear",
"high": 100,
"n_buckets": 20,
"description": "Number of listeners notified that the user is idle"
},
"URLCLASSIFIER_LOOKUP_TIME": {
"expires_in_version": "never",
"kind": "exponential",

View File

@@ -546,9 +546,6 @@
"HTTP_TRANSACTION_IS_SSL",
"HTTP_TRANSACTION_USE_ALTSVC",
"HTTP_TRANSACTION_USE_ALTSVC_OE",
"IDLE_NOTIFY_BACK_LISTENERS",
"IDLE_NOTIFY_BACK_MS",
"IDLE_NOTIFY_IDLE_LISTENERS",
"IDLE_NOTIFY_IDLE_MS",
"IMAGE_DECODE_CHUNKS",
"IMAGE_DECODE_COUNT",
@@ -1658,9 +1655,6 @@
"HTTP_TRANSACTION_IS_SSL",
"HTTP_TRANSACTION_USE_ALTSVC",
"HTTP_TRANSACTION_USE_ALTSVC_OE",
"IDLE_NOTIFY_BACK_LISTENERS",
"IDLE_NOTIFY_BACK_MS",
"IDLE_NOTIFY_IDLE_LISTENERS",
"IDLE_NOTIFY_IDLE_MS",
"IMAGE_DECODE_CHUNKS",
"IMAGE_DECODE_COUNT",

View File

@@ -543,7 +543,6 @@ nsIdleService::ResetIdleTimeOut(uint32_t idleDeltaInMS)
}
// Mark all idle services as non-idle, and calculate the next idle timeout.
Telemetry::AutoTimer<Telemetry::IDLE_NOTIFY_BACK_MS> timer;
nsCOMArray<nsIObserver> notifyList;
mDeltaToNextIdleSwitchInS = UINT32_MAX;
@@ -569,8 +568,6 @@ nsIdleService::ResetIdleTimeOut(uint32_t idleDeltaInMS)
ReconfigureTimer();
int32_t numberOfPendingNotifications = notifyList.Count();
Telemetry::Accumulate(Telemetry::IDLE_NOTIFY_BACK_LISTENERS,
numberOfPendingNotifications);
// Bail if nothing to do.
if (!numberOfPendingNotifications) {
@@ -755,8 +752,6 @@ nsIdleService::IdleTimerCallback(void)
ReconfigureTimer();
int32_t numberOfPendingNotifications = notifyList.Count();
Telemetry::Accumulate(Telemetry::IDLE_NOTIFY_IDLE_LISTENERS,
numberOfPendingNotifications);
// Bail if nothing to do.
if (!numberOfPendingNotifications) {