Bug 1514372 - Removed time record regarding TELEMETRY_MEMORY_REPORTER_MS r=chutten

This commit is contained in:
Bren Louis 2019-06-06 23:01:01 +08:00
parent 6ae5d6c65c
commit 2838c9d2fa
3 changed files with 0 additions and 15 deletions

View File

@ -8396,15 +8396,6 @@
"n_buckets": 15,
"description": "Time (ms) it takes to figure out extension last modified time"
},
"TELEMETRY_MEMORY_REPORTER_MS": {
"record_in_processes": ["main", "content"],
"alert_emails": ["memshrink-telemetry-alerts@mozilla.com"],
"expires_in_version": "never",
"kind": "exponential",
"high": 5000,
"n_buckets": 10,
"description": "Time (ms) it takes to run memory reporters when sending a telemetry ping"
},
"SSL_SUCCESFUL_CERT_VALIDATION_TIME_MOZILLAPKIX" : {
"record_in_processes": ["main", "content"],
"alert_emails": ["seceng-telemetry@mozilla.com"],

View File

@ -1053,7 +1053,6 @@
"TELEMETRY_DISCARDED_PENDING_PINGS_SIZE_MB",
"TELEMETRY_DISCARDED_SEND_PINGS_SIZE_MB",
"TELEMETRY_INVALID_PING_TYPE_SUBMITTED",
"TELEMETRY_MEMORY_REPORTER_MS",
"TELEMETRY_PENDING_CHECKING_OVER_QUOTA_MS",
"TELEMETRY_PENDING_EVICTING_OVER_QUOTA_MS",
"TELEMETRY_PENDING_LOAD_FAILURE_PARSE",

View File

@ -231,8 +231,6 @@ nsresult MemoryTelemetry::GatherReports(
MOZ_DIAGNOSTIC_ASSERT(mgr);
NS_ENSURE_TRUE(mgr, NS_ERROR_FAILURE);
auto startTime = TimeStamp::Now();
#define RECORD(id, metric, units) \
do { \
int64_t amt; \
@ -332,9 +330,6 @@ nsresult MemoryTelemetry::GatherReports(
mTotalMemoryGatherer->Begin(mThreadPool);
}
Telemetry::AccumulateTimeDelta(
Telemetry::HistogramID::TELEMETRY_MEMORY_REPORTER_MS, startTime,
TimeStamp::Now());
return NS_OK;
}