--- a/netwerk/protocol/http/nsHttpChannel.cpp
+++ b/netwerk/protocol/http/nsHttpChannel.cpp
@@ -8303,16 +8303,55 @@ nsHttpChannel::SetDoNotTrack()
if ((loadContext && loadContext->UseTrackingProtection()) ||
nsContentUtils::DoNotTrackEnabled()) {
mRequestHead.SetHeader(nsHttp::DoNotTrack,
NS_LITERAL_CSTRING("1"),
false);
}
}
+static const size_t kPositiveBucketNumbers = 34;
+static const int64_t positiveBucketLevels[kPositiveBucketNumbers] =
+{
+ 0, 10, 20, 30, 40, 50, 60, 70, 80, 90,
+ 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000,
+ 2000, 3000, 4000, 5000, 6000, 7000, 8000, 9000, 10000,
+ 20000, 30000, 40000, 50000, 60000
+};
+
+/**
+ * For space efficiency, we collect finer resolution for small difference
+ * between net and cache time, coarser for larger.
+ * Bucket #40 for a tie.
+ * #41 to #50 indicates cache wins by 1ms to 100ms, split equally.
+ * #51 to #59 indicates cache wins by 101ms to 1000ms.
+ * #60 to #68 indicates cache wins by 1s to 10s.
+ * #69 to #73 indicates cache wins by 11s to 60s.
+ * #74 indicates cache wins by more than 1 minute.
+ *
+ * #39 to #30 indicates network wins by 1ms to 100ms, split equally.
+ * #29 to #21 indicates network wins by 101ms to 1000ms.
+ * #20 to #12 indicates network wins by 1s to 10s.
+ * #11 to #7 indicates network wins by 11s to 60s.
+ * #6 indicates network wins by more than 1 minute.
+ *
+ * Other bucket numbers are reserved.
+ */
+inline int64_t
+nsHttpChannel::ComputeTelemetryBucketNumber(int64_t difftime_ms)
+{
+ int64_t absBucketIndex =
+ std::lower_bound(positiveBucketLevels,
+ positiveBucketLevels + kPositiveBucketNumbers,
+ mozilla::Abs(difftime_ms))
+ - positiveBucketLevels;
+
+ return difftime_ms >= 0 ? 40 + absBucketIndex
+ : 40 - absBucketIndex;
+}
void
nsHttpChannel::ReportNetVSCacheTelemetry()
{
nsresult rv;
if (!mCacheEntry) {
return;
}
@@ -8343,67 +8382,67 @@ nsHttpChannel::ReportNetVSCacheTelemetry
}
uint64_t onStopNetTime = tmpStr.ToInteger64(&rv);
if (NS_FAILED(rv)) {
return;
}
uint64_t onStartCacheTime = (mOnStartRequestTimestamp - mAsyncOpenTime).ToMilliseconds();
int64_t onStartDiff = onStartNetTime - onStartCacheTime;
- onStartDiff += 500; // We offset the difference by 500 ms to report positive values in telemetry
+ onStartDiff = ComputeTelemetryBucketNumber(onStartDiff);
uint64_t onStopCacheTime = (mCacheReadEnd - mAsyncOpenTime).ToMilliseconds();
int64_t onStopDiff = onStopNetTime - onStopCacheTime;
- onStopDiff += 500; // We offset the difference by 500 ms
+ onStopDiff = ComputeTelemetryBucketNumber(onStopDiff);
if (mDidReval) {
- Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTART_REVALIDATED, onStartDiff);
- Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTOP_REVALIDATED, onStopDiff);
+ Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTART_REVALIDATED_V2, onStartDiff);
+ Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTOP_REVALIDATED_V2, onStopDiff);
} else {
- Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTART_NOTREVALIDATED, onStartDiff);
- Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTOP_NOTREVALIDATED, onStopDiff);
+ Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTART_NOTREVALIDATED_V2, onStartDiff);
+ Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTOP_NOTREVALIDATED_V2, onStopDiff);
}
if (mDidReval) {
// We don't report revalidated probes as the data would be skewed.
return;
}
if (mCacheOpenWithPriority) {
if (mCacheQueueSizeWhenOpen < 5) {
- Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTART_QSMALL_HIGHPRI, onStartDiff);
- Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTOP_QSMALL_HIGHPRI, onStopDiff);
+ Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTART_QSMALL_HIGHPRI_V2, onStartDiff);
+ Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTOP_QSMALL_HIGHPRI_V2, onStopDiff);
} else if (mCacheQueueSizeWhenOpen < 10) {
- Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTART_QMED_HIGHPRI, onStartDiff);
- Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTOP_QMED_HIGHPRI, onStopDiff);
+ Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTART_QMED_HIGHPRI_V2, onStartDiff);
+ Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTOP_QMED_HIGHPRI_V2, onStopDiff);
} else {
- Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTART_QBIG_HIGHPRI, onStartDiff);
- Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTOP_QBIG_HIGHPRI, onStopDiff);
+ Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTART_QBIG_HIGHPRI_V2, onStartDiff);
+ Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTOP_QBIG_HIGHPRI_V2, onStopDiff);
}
} else { // The limits are higher for normal priority cache queues
if (mCacheQueueSizeWhenOpen < 10) {
- Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTART_QSMALL_NORMALPRI, onStartDiff);
- Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTOP_QSMALL_NORMALPRI, onStopDiff);
+ Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTART_QSMALL_NORMALPRI_V2, onStartDiff);
+ Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTOP_QSMALL_NORMALPRI_V2, onStopDiff);
} else if (mCacheQueueSizeWhenOpen < 50) {
- Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTART_QMED_NORMALPRI, onStartDiff);
- Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTOP_QMED_NORMALPRI, onStopDiff);
+ Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTART_QMED_NORMALPRI_V2, onStartDiff);
+ Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTOP_QMED_NORMALPRI_V2, onStopDiff);
} else {
- Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTART_QBIG_NORMALPRI, onStartDiff);
- Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTOP_QBIG_NORMALPRI, onStopDiff);
+ Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTART_QBIG_NORMALPRI_V2, onStartDiff);
+ Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTOP_QBIG_NORMALPRI_V2, onStopDiff);
}
}
uint32_t diskStorageSizeK = 0;
rv = mCacheEntry->GetDiskStorageSizeInKB(&diskStorageSizeK);
if (NS_FAILED(rv)) {
return;
}
// No significant difference was observed between different sizes for |onStartDiff|
if (diskStorageSizeK < 256) {
- Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTOP_SMALL, onStopDiff);
+ Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTOP_SMALL_V2, onStopDiff);
} else {
- Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTOP_LARGE, onStopDiff);
+ Telemetry::Accumulate(Telemetry::HTTP_NET_VS_CACHE_ONSTOP_LARGE_V2, onStopDiff);
}
}
} // namespace net
} // namespace mozilla
--- a/toolkit/components/telemetry/Histograms.json
+++ b/toolkit/components/telemetry/Histograms.json
@@ -1733,177 +1733,159 @@
"HTTP_RESPONSE_STATUS_CODE": {
"alert_emails": ["ckerschbaumer@mozilla.com"],
"bug_numbers": [1272345, 1296287],
"expires_in_version": "56",
"kind": "enumerated",
"n_values": 12,
"description": "Whether the URL gets redirected? (0=200, 1=301, 2=302, 3=304, 4=307, 5=308, 6=400, 7=401, 8=403, 9=404, 10=500, 11=other)"
},
- "HTTP_NET_VS_CACHE_ONSTART_QSMALL_NORMALPRI": {
+ "HTTP_NET_VS_CACHE_ONSTART_QSMALL_NORMALPRI_V2": {
"expires_in_version": "58",
"alert_emails": ["necko@mozilla.com"],
- "bug_numbers": [1313095],
- "kind": "linear",
- "high": 1000,
- "n_buckets": 100,
- "description": "Network vs cache time load (OnStartRequest) difference (ms) for requests with a normal priority and small queue. Offset by 500 ms."
- },
- "HTTP_NET_VS_CACHE_ONSTART_QMED_NORMALPRI": {
+ "bug_numbers": [1325322],
+ "kind": "enumerated",
+ "n_values": 80,
+ "description": "Network vs cache time load (OnStartRequest) difference (ms) for requests with a normal priority and small queue. Cache wins: 41-50 for 1-100ms, 51-59 for 101-1000ms, 60-68 for 1-10s, 69-73 for 11-60s and 74 for > 1m. Network wins: 39-30 for 1-100ms, 29-21 for 101-1000ms, 20-12 for 1-10s, 11-7 for 11-60s and 6 for > 1m."
+ },
+ "HTTP_NET_VS_CACHE_ONSTART_QMED_NORMALPRI_V2": {
"expires_in_version": "58",
"alert_emails": ["necko@mozilla.com"],
- "bug_numbers": [1313095],
- "kind": "linear",
- "high": 1000,
- "n_buckets": 100,
- "description": "Network vs cache time load (OnStartRequest) difference (ms) for requests with a normal priority and medium queue. Offset by 500 ms."
- },
- "HTTP_NET_VS_CACHE_ONSTART_QBIG_NORMALPRI": {
+ "bug_numbers": [1325322],
+ "kind": "enumerated",
+ "n_values": 80,
+ "description": "Network vs cache time load (OnStartRequest) difference (ms) for requests with a normal priority and medium queue. Cache wins: 41-50 for 1-100ms, 51-59 for 101-1000ms, 60-68 for 1-10s, 69-73 for 11-60s and 74 for > 1m. Network wins: 39-30 for 1-100ms, 29-21 for 101-1000ms, 20-12 for 1-10s, 11-7 for 11-60s and 6 for > 1m."
+ },
+ "HTTP_NET_VS_CACHE_ONSTART_QBIG_NORMALPRI_V2": {
"expires_in_version": "58",
"alert_emails": ["necko@mozilla.com"],
- "bug_numbers": [1313095],
- "kind": "linear",
- "high": 1000,
- "n_buckets": 100,
- "description": "Network vs cache time load (OnStartRequest) difference (ms) for requests with a normal priority and large queue. Offset by 500 ms."
- },
- "HTTP_NET_VS_CACHE_ONSTART_QSMALL_HIGHPRI": {
+ "bug_numbers": [1325322],
+ "kind": "enumerated",
+ "n_values": 80,
+ "description": "Network vs cache time load (OnStartRequest) difference (ms) for requests with a normal priority and large queue. Cache wins: 41-50 for 1-100ms, 51-59 for 101-1000ms, 60-68 for 1-10s, 69-73 for 11-60s and 74 for > 1m. Network wins: 39-30 for 1-100ms, 29-21 for 101-1000ms, 20-12 for 1-10s, 11-7 for 11-60s and 6 for > 1m."
+ },
+ "HTTP_NET_VS_CACHE_ONSTART_QSMALL_HIGHPRI_V2": {
"expires_in_version": "58",
"alert_emails": ["necko@mozilla.com"],
- "bug_numbers": [1313095],
- "kind": "linear",
- "high": 1000,
- "n_buckets": 100,
- "description": "Network vs cache time load (OnStartRequest) difference (ms) for requests with a high priority and small queue. Offset by 500 ms."
- },
- "HTTP_NET_VS_CACHE_ONSTART_QMED_HIGHPRI": {
+ "bug_numbers": [1325322],
+ "kind": "enumerated",
+ "n_values": 80,
+ "description": "Network vs cache time load (OnStartRequest) difference (ms) for requests with a high priority and small queue. Cache wins: 41-50 for 1-100ms, 51-59 for 101-1000ms, 60-68 for 1-10s, 69-73 for 11-60s and 74 for > 1m. Network wins: 39-30 for 1-100ms, 29-21 for 101-1000ms, 20-12 for 1-10s, 11-7 for 11-60s and 6 for > 1m."
+ },
+ "HTTP_NET_VS_CACHE_ONSTART_QMED_HIGHPRI_V2": {
"expires_in_version": "58",
"alert_emails": ["necko@mozilla.com"],
- "bug_numbers": [1313095],
- "kind": "linear",
- "high": 1000,
- "n_buckets": 100,
- "description": "Network vs cache time load (OnStartRequest) difference (ms) for requests with a high priority and medium queue. Offset by 500 ms."
- },
- "HTTP_NET_VS_CACHE_ONSTART_QBIG_HIGHPRI": {
+ "bug_numbers": [1325322],
+ "kind": "enumerated",
+ "n_values": 80,
+ "description": "Network vs cache time load (OnStartRequest) difference (ms) for requests with a high priority and medium queue. Cache wins: 41-50 for 1-100ms, 51-59 for 101-1000ms, 60-68 for 1-10s, 69-73 for 11-60s and 74 for > 1m. Network wins: 39-30 for 1-100ms, 29-21 for 101-1000ms, 20-12 for 1-10s, 11-7 for 11-60s and 6 for > 1m."
+ },
+ "HTTP_NET_VS_CACHE_ONSTART_QBIG_HIGHPRI_V2": {
"expires_in_version": "58",
"alert_emails": ["necko@mozilla.com"],
- "bug_numbers": [1313095],
- "kind": "linear",
- "high": 1000,
- "n_buckets": 100,
- "description": "Network vs cache time load (OnStartRequest) difference (ms) for requests with a high priority and large queue. Offset by 500 ms."
- },
- "HTTP_NET_VS_CACHE_ONSTOP_QSMALL_NORMALPRI": {
+ "bug_numbers": [1325322],
+ "kind": "enumerated",
+ "n_values": 80,
+ "description": "Network vs cache time load (OnStartRequest) difference (ms) for requests with a high priority and large queue. Cache wins: 41-50 for 1-100ms, 51-59 for 101-1000ms, 60-68 for 1-10s, 69-73 for 11-60s and 74 for > 1m. Network wins: 39-30 for 1-100ms, 29-21 for 101-1000ms, 20-12 for 1-10s, 11-7 for 11-60s and 6 for > 1m."
+ },
+ "HTTP_NET_VS_CACHE_ONSTOP_QSMALL_NORMALPRI_V2": {
"expires_in_version": "58",
"alert_emails": ["necko@mozilla.com"],
- "bug_numbers": [1313095],
- "kind": "linear",
- "high": 1000,
- "n_buckets": 100,
- "description": "Network vs cache time load (OnStopRequest) difference (ms) for requests with a normal priority and small queue. Offset by 500 ms."
- },
- "HTTP_NET_VS_CACHE_ONSTOP_QMED_NORMALPRI": {
+ "bug_numbers": [1325322],
+ "kind": "enumerated",
+ "n_values": 80,
+ "description": "Network vs cache time load (OnStopRequest) difference (ms) for requests with a normal priority and small queue. Cache wins: 41-50 for 1-100ms, 51-59 for 101-1000ms, 60-68 for 1-10s, 69-73 for 11-60s and 74 for > 1m. Network wins: 39-30 for 1-100ms, 29-21 for 101-1000ms, 20-12 for 1-10s, 11-7 for 11-60s and 6 for > 1m."
+ },
+ "HTTP_NET_VS_CACHE_ONSTOP_QMED_NORMALPRI_V2": {
"expires_in_version": "58",
"alert_emails": ["necko@mozilla.com"],
- "bug_numbers": [1313095],
- "kind": "linear",
- "high": 1000,
- "n_buckets": 100,
- "description": "Network vs cache time load (OnStopRequest) difference (ms) for requests with a normal priority and medium queue. Offset by 500 ms."
- },
- "HTTP_NET_VS_CACHE_ONSTOP_QBIG_NORMALPRI": {
+ "bug_numbers": [1325322],
+ "kind": "enumerated",
+ "n_values": 80,
+ "description": "Network vs cache time load (OnStopRequest) difference (ms) for requests with a normal priority and medium queue. Cache wins: 41-50 for 1-100ms, 51-59 for 101-1000ms, 60-68 for 1-10s, 69-73 for 11-60s and 74 for > 1m. Network wins: 39-30 for 1-100ms, 29-21 for 101-1000ms, 20-12 for 1-10s, 11-7 for 11-60s and 6 for > 1m."
+ },
+ "HTTP_NET_VS_CACHE_ONSTOP_QBIG_NORMALPRI_V2": {
"expires_in_version": "58",
"alert_emails": ["necko@mozilla.com"],
- "bug_numbers": [1313095],
- "kind": "linear",
- "high": 1000,
- "n_buckets": 100,
- "description": "Network vs cache time load (OnStopRequest) difference (ms) for requests with a normal priority and large queue. Offset by 500 ms."
- },
- "HTTP_NET_VS_CACHE_ONSTOP_QSMALL_HIGHPRI": {
+ "bug_numbers": [1325322],
+ "kind": "enumerated",
+ "n_values": 80,
+ "description": "Network vs cache time load (OnStopRequest) difference (ms) for requests with a normal priority and large queue. Cache wins: 41-50 for 1-100ms, 51-59 for 101-1000ms, 60-68 for 1-10s, 69-73 for 11-60s and 74 for > 1m. Network wins: 39-30 for 1-100ms, 29-21 for 101-1000ms, 20-12 for 1-10s, 11-7 for 11-60s and 6 for > 1m."
+ },
+ "HTTP_NET_VS_CACHE_ONSTOP_QSMALL_HIGHPRI_V2": {
"expires_in_version": "58",
"alert_emails": ["necko@mozilla.com"],
- "bug_numbers": [1313095],
- "kind": "linear",
- "high": 1000,
- "n_buckets": 100,
- "description": "Network vs cache time load (OnStopRequest) difference (ms) for requests with a high priority and small queue. Offset by 500 ms."
- },
- "HTTP_NET_VS_CACHE_ONSTOP_QMED_HIGHPRI": {
+ "bug_numbers": [1325322],
+ "kind": "enumerated",
+ "n_values": 80,
+ "description": "Network vs cache time load (OnStopRequest) difference (ms) for requests with a high priority and small queue. Cache wins: 41-50 for 1-100ms, 51-59 for 101-1000ms, 60-68 for 1-10s, 69-73 for 11-60s and 74 for > 1m. Network wins: 39-30 for 1-100ms, 29-21 for 101-1000ms, 20-12 for 1-10s, 11-7 for 11-60s and 6 for > 1m."
+ },
+ "HTTP_NET_VS_CACHE_ONSTOP_QMED_HIGHPRI_V2": {
"expires_in_version": "58",
"alert_emails": ["necko@mozilla.com"],
- "bug_numbers": [1313095],
- "kind": "linear",
- "high": 1000,
- "n_buckets": 100,
- "description": "Network vs cache time load (OnStopRequest) difference (ms) for requests with a high priority and medium queue. Offset by 500 ms."
- },
- "HTTP_NET_VS_CACHE_ONSTOP_QBIG_HIGHPRI": {
+ "bug_numbers": [1325322],
+ "kind": "enumerated",
+ "n_values": 80,
+ "description": "Network vs cache time load (OnStopRequest) difference (ms) for requests with a high priority and medium queue. Cache wins: 41-50 for 1-100ms, 51-59 for 101-1000ms, 60-68 for 1-10s, 69-73 for 11-60s and 74 for > 1m. Network wins: 39-30 for 1-100ms, 29-21 for 101-1000ms, 20-12 for 1-10s, 11-7 for 11-60s and 6 for > 1m."
+ },
+ "HTTP_NET_VS_CACHE_ONSTOP_QBIG_HIGHPRI_V2": {
"expires_in_version": "58",
"alert_emails": ["necko@mozilla.com"],
- "bug_numbers": [1313095],
- "kind": "linear",
- "high": 1000,
- "n_buckets": 100,
- "description": "Network vs cache time load (OnStopRequest) difference (ms) for requests with a high priority and large queue. Offset by 500 ms."
- },
- "HTTP_NET_VS_CACHE_ONSTOP_SMALL": {
+ "bug_numbers": [1325322],
+ "kind": "enumerated",
+ "n_values": 80,
+ "description": "Network vs cache time load (OnStopRequest) difference (ms) for requests with a high priority and large queue. Cache wins: 41-50 for 1-100ms, 51-59 for 101-1000ms, 60-68 for 1-10s, 69-73 for 11-60s and 74 for > 1m. Network wins: 39-30 for 1-100ms, 29-21 for 101-1000ms, 20-12 for 1-10s, 11-7 for 11-60s and 6 for > 1m."
+ },
+ "HTTP_NET_VS_CACHE_ONSTOP_SMALL_V2": {
"expires_in_version": "58",
"alert_emails": ["necko@mozilla.com"],
- "bug_numbers": [1325090],
- "kind": "linear",
- "high": 1000,
- "n_buckets": 100,
- "description": "Network vs cache time load (OnStopRequest) difference (ms) for cache files with a small size (<256K). Offset by 500 ms."
- },
- "HTTP_NET_VS_CACHE_ONSTOP_LARGE": {
+ "bug_numbers": [1325322],
+ "kind": "enumerated",
+ "n_values": 80,
+ "description": "Network vs cache time load (OnStopRequest) difference (ms) for cache files with a small size (<256K). Cache wins: 41-50 for 1-100ms, 51-59 for 101-1000ms, 60-68 for 1-10s, 69-73 for 11-60s and 74 for > 1m. Network wins: 39-30 for 1-100ms, 29-21 for 101-1000ms, 20-12 for 1-10s, 11-7 for 11-60s and 6 for > 1m."
+ },
+ "HTTP_NET_VS_CACHE_ONSTOP_LARGE_V2": {
"expires_in_version": "58",
"alert_emails": ["necko@mozilla.com"],
- "bug_numbers": [1325090],
- "kind": "linear",
- "high": 1000,
- "n_buckets": 100,
- "description": "Network vs cache time load (OnStopRequest) difference (ms) for cache files with a large size (>=256K). Offset by 500 ms."
- },
- "HTTP_NET_VS_CACHE_ONSTART_REVALIDATED": {
+ "bug_numbers": [1325322],
+ "kind": "enumerated",
+ "n_values": 80,
+ "description": "Network vs cache time load (OnStopRequest) difference (ms) for cache files with a large size (>=256K). Cache wins: 41-50 for 1-100ms, 51-59 for 101-1000ms, 60-68 for 1-10s, 69-73 for 11-60s and 74 for > 1m. Network wins: 39-30 for 1-100ms, 29-21 for 101-1000ms, 20-12 for 1-10s, 11-7 for 11-60s and 6 for > 1m."
+ },
+ "HTTP_NET_VS_CACHE_ONSTART_REVALIDATED_V2": {
"expires_in_version": "58",
"alert_emails": ["necko@mozilla.com"],
- "bug_numbers": [1313095],
- "kind": "linear",
- "high": 1000,
- "n_buckets": 100,
- "description": "Network vs cache time load (OnStartRequest) difference (ms) revalidated cache entries. Offset by 500 ms."
- },
- "HTTP_NET_VS_CACHE_ONSTART_NOTREVALIDATED": {
+ "bug_numbers": [1325322],
+ "kind": "enumerated",
+ "n_values": 80,
+ "description": "Network vs cache time load (OnStartRequest) difference revalidated cache entries. Cache wins: 41-50 for 1-100ms, 51-59 for 101-1000ms, 60-68 for 1-10s, 69-73 for 11-60s and 74 for > 1m. Network wins: 39-30 for 1-100ms, 29-21 for 101-1000ms, 20-12 for 1-10s, 11-7 for 11-60s and 6 for > 1m."
+ },
+ "HTTP_NET_VS_CACHE_ONSTART_NOTREVALIDATED_V2": {
"expires_in_version": "58",
"alert_emails": ["necko@mozilla.com"],
- "bug_numbers": [1313095],
- "kind": "linear",
- "high": 1000,
- "n_buckets": 100,
- "description": "Network vs cache time load (OnStartRequest) difference (ms) not revalidated cache entries. Offset by 500 ms."
- },
- "HTTP_NET_VS_CACHE_ONSTOP_REVALIDATED": {
+ "bug_numbers": [1325322],
+ "kind": "enumerated",
+ "n_values": 80,
+ "description": "Network vs cache time load (OnStartRequest) difference (ms) not revalidated cache entries. Cache wins: 41-50 for 1-100ms, 51-59 for 101-1000ms, 60-68 for 1-10s, 69-73 for 11-60s and 74 for > 1m. Network wins: 39-30 for 1-100ms, 29-21 for 101-1000ms, 20-12 for 1-10s, 11-7 for 11-60s and 6 for > 1m."
+ },
+ "HTTP_NET_VS_CACHE_ONSTOP_REVALIDATED_V2": {
"expires_in_version": "58",
"alert_emails": ["necko@mozilla.com"],
- "bug_numbers": [1313095],
- "kind": "linear",
- "high": 1000,
- "n_buckets": 100,
- "description": "Network vs cache time load (OnStopRequest) difference (ms) revalidated cache entries. Offset by 500 ms."
- },
- "HTTP_NET_VS_CACHE_ONSTOP_NOTREVALIDATED": {
+ "bug_numbers": [1325322],
+ "kind": "enumerated",
+ "n_values": 80,
+ "description": "Network vs cache time load (OnStopRequest) difference (ms) revalidated cache entries. Cache wins: 41-50 for 1-100ms, 51-59 for 101-1000ms, 60-68 for 1-10s, 69-73 for 11-60s and 74 for > 1m. Network wins: 39-30 for 1-100ms, 29-21 for 101-1000ms, 20-12 for 1-10s, 11-7 for 11-60s and 6 for > 1m."
+ },
+ "HTTP_NET_VS_CACHE_ONSTOP_NOTREVALIDATED_V2": {
"expires_in_version": "58",
"alert_emails": ["necko@mozilla.com"],
- "bug_numbers": [1313095],
- "kind": "linear",
- "high": 1000,
- "n_buckets": 100,
- "description": "Network vs cache time load (OnStopRequest) difference (ms) not revalidated cache entries. Offset by 500 ms."
+ "bug_numbers": [1325322],
+ "kind": "enumerated",
+ "n_values": 80,
+ "description": "Network vs cache time load (OnStopRequest) difference (ms) not revalidated cache entries. Cache wins: 41-50 for 1-100ms, 51-59 for 101-1000ms, 60-68 for 1-10s, 69-73 for 11-60s and 74 for > 1m. Network wins: 39-30 for 1-100ms, 29-21 for 101-1000ms, 20-12 for 1-10s, 11-7 for 11-60s and 6 for > 1m."
},
"HTTP_AUTH_DIALOG_STATS": {
"expires_in_version": "never",
"kind": "enumerated",
"n_values": 4,
"description": "Stats about what kind of resource requested http authentication. (0=top-level doc, 1=same origin subresources, 2=cross-origin subresources, 3=xhr)"
},
"HTTP_AUTH_TYPE_STATS": {