Phedenskog has uploaded a new change for review. (
https://gerrit.wikimedia.org/r/375345 )
Change subject: Make values stackable
......................................................................
Make values stackable
Send the new metrics to a new path frontend.navtiming2
* Server will not filter out zero values.
* Server will filter out events instead of individual values. If one of the
values is above the threshold, discard it entirely.
* Server will report absolute values relative to fetchStart instead of
navigationStart.
* Server will also compute deltas and report them to Graphite.
Bug: T104902
Change-Id: I56a890bfd5838ed2537953d42e5f82d7e70ced42
---
M modules/webperf/files/navtiming.py
M modules/webperf/files/navtiming_expected.txt
2 files changed, 1,072 insertions(+), 489 deletions(-)
git pull ssh://gerrit.wikimedia.org:29418/operations/puppet
refs/changes/45/375345/1
diff --git a/modules/webperf/files/navtiming.py
b/modules/webperf/files/navtiming.py
index d760f95..c19be34 100755
--- a/modules/webperf/files/navtiming.py
+++ b/modules/webperf/files/navtiming.py
@@ -314,6 +314,8 @@
def is_sane(value):
return isinstance(value, int) and value > 0 and value < 180000
+def is_sanev2(value):
+ return isinstance(value, int) and value >= 0 and value < 180000
@handles('SaveTiming')
def handle_save_timing(meta):
@@ -333,6 +335,8 @@
def handle_navigation_timing(meta):
event = meta['event']
metrics = {}
+ metrics_nav2 = {}
+ isSane = True
for metric in (
'dnsLookup',
@@ -351,6 +355,20 @@
if metric in event:
metrics[metric] = event[metric]
+ for metric in (
+ 'domComplete',
+ 'domInteractive',
+ 'domContentLoaded',
+ 'firstPaint',
+ 'loadEventEnd'
+ ):
+ if metric in event:
+ # The new way is to fetch start as base, so if we got it, rebase
+ if event.has_key('fetchStart'):
+ metrics_nav2[metric] = event[metric] - event['fetchStart']
+ else:
+ metrics_nav2[metric] = event[metric]
+
for difference, minuend, subtrahend in (
('waiting', 'responseStart', 'requestStart'),
('connecting', 'connectEnd', 'connectStart'),
@@ -361,6 +379,23 @@
):
if minuend in event and subtrahend in event:
metrics[difference] = event[minuend] - event[subtrahend]
+
+ # https://www.w3.org/TR/navigation-timing/#process
+ for difference, minuend, subtrahend in (
+ # ('unload', 'unloadEventEnd', 'unloadEventStart'),
+ ('redirect', 'redirectEnd', 'redirectStart'),
+ ('appCache', 'domainLookupStart', 'fetchStart'),
+ ('dns', 'domainLookupEnd', 'domainLookupStart'),
+ ('tcp', 'connectEnd', 'connectStart'),
+ ('request', 'responseStart', 'requestStart'),
+ ('response', 'responsetEnd', 'responseStart'),
+ ('processing', 'domComplete', 'domLoading'),
+ ('onLoad', 'loadEventEnd', 'loadEventStart'),
+ ('mediaWikiLoad','mediaWikiLoadEnd', 'mediaWikiLoadStart'),
+ ('ssl', 'connectEnd', 'secureConnectionStart'),
+ ):
+ if minuend in event and subtrahend in event:
+ metrics_nav2[difference] = event[minuend] - event[subtrahend]
if 'mobileMode' in event:
if event['mobileMode'] == 'stable':
@@ -396,6 +431,28 @@
if country_name is not None:
yield make_stat(prefix, metric, 'by_country', country_name, value)
+ # If one of the metrics are wrong, don't send them at all
+ for metric, value in metrics_nav2.items():
+ isSane = is_sanev2(value)
+ if not isSane:
+ break
+
+ # If one of the metrics are over the max then skip it entirely
+ if (isSane):
+ for metric, value in metrics_nav2.items():
+ prefix = 'frontend.navtiming2'
+ yield make_stat(prefix, metric, site, auth, value)
+ yield make_stat(prefix, metric, site, 'overall', value)
+ yield make_stat(prefix, metric, 'overall', value)
+
+ yield make_stat(prefix, metric, 'by_browser', ua[0], ua[1], value)
+ yield make_stat(prefix, metric, 'by_browser', ua[0], 'all', value)
+
+ if continent is not None:
+ yield make_stat(prefix, metric, 'by_continent', continent,
value)
+
+ if country_name is not None:
+ yield make_stat(prefix, metric, 'by_country', country_name,
value)
if __name__ == '__main__':
ap = argparse.ArgumentParser(description='NavigationTiming subscriber')
@@ -468,7 +525,8 @@
for stat in f(meta):
actual.append(stat)
with open('navtiming_expected.txt') as expected_file:
+ expect = expected_file.read().splitlines()
self.assertItemsEqual(
actual,
- expected_file.read().splitlines()
+ expect
)
diff --git a/modules/webperf/files/navtiming_expected.txt
b/modules/webperf/files/navtiming_expected.txt
index d7ad14c..60e48d2 100644
--- a/modules/webperf/files/navtiming_expected.txt
+++ b/modules/webperf/files/navtiming_expected.txt
@@ -1,504 +1,1029 @@
-frontend.navtiming.connecting.by_continent.Europe:0|ms
-frontend.navtiming.connecting.by_continent.North_America:0|ms
-frontend.navtiming.connecting.by_continent.South_America:0|ms
-frontend.navtiming.connecting.by_country.Argentina:0|ms
-frontend.navtiming.connecting.by_country.Canada:0|ms
-frontend.navtiming.connecting.by_country.Italy:0|ms
-frontend.navtiming.dnsLookup.by_continent.Europe:0|ms
-frontend.navtiming.dnsLookup.by_continent.Europe:0|ms
-frontend.navtiming.dnsLookup.by_continent.Europe:0|ms
-frontend.navtiming.dnsLookup.by_continent.Europe:0|ms
-frontend.navtiming.dnsLookup.by_continent.North_America:0|ms
-frontend.navtiming.dnsLookup.by_continent.North_America:0|ms
-frontend.navtiming.dnsLookup.by_continent.South_America:0|ms
-frontend.navtiming.dnsLookup.by_country.Argentina:0|ms
-frontend.navtiming.dnsLookup.by_country.Canada:0|ms
-frontend.navtiming.dnsLookup.by_country.France:0|ms
-frontend.navtiming.dnsLookup.by_country.Italy:0|ms
-frontend.navtiming.dnsLookup.by_country.United_Kingdom:0|ms
-frontend.navtiming.dnsLookup.by_country.United_Kingdom:0|ms
-frontend.navtiming.dnsLookup.by_country.United_States:0|ms
-frontend.navtiming.domComplete.by_browser.Chrome.60:1471|ms
-frontend.navtiming.domComplete.by_browser.Chrome.all:1471|ms
-frontend.navtiming.domComplete.by_browser.Chrome_Mobile.57:2880|ms
-frontend.navtiming.domComplete.by_browser.Chrome_Mobile.59:5921|ms
-frontend.navtiming.domComplete.by_browser.Chrome_Mobile.all:2880|ms
-frontend.navtiming.domComplete.by_browser.Chrome_Mobile.all:5921|ms
-frontend.navtiming.domComplete.by_browser.Mobile_Safari.10_0:2381|ms
-frontend.navtiming.domComplete.by_browser.Mobile_Safari.10_0:343|ms
-frontend.navtiming.domComplete.by_browser.Mobile_Safari.all:2381|ms
-frontend.navtiming.domComplete.by_browser.Mobile_Safari.all:343|ms
-frontend.navtiming.domComplete.by_browser.Other._:455|ms
-frontend.navtiming.domComplete.by_browser.Other.all:455|ms
-frontend.navtiming.domComplete.by_browser.iOS_other.8:5513|ms
-frontend.navtiming.domComplete.by_browser.iOS_other.all:5513|ms
-frontend.navtiming.domComplete.by_continent.Europe:1471|ms
-frontend.navtiming.domComplete.by_continent.Europe:2381|ms
-frontend.navtiming.domComplete.by_continent.Europe:5513|ms
-frontend.navtiming.domComplete.by_continent.Europe:5921|ms
-frontend.navtiming.domComplete.by_continent.North_America:343|ms
-frontend.navtiming.domComplete.by_continent.North_America:455|ms
-frontend.navtiming.domComplete.by_continent.South_America:2880|ms
-frontend.navtiming.domComplete.by_country.Argentina:2880|ms
-frontend.navtiming.domComplete.by_country.Canada:455|ms
-frontend.navtiming.domComplete.by_country.France:1471|ms
-frontend.navtiming.domComplete.by_country.Italy:5921|ms
-frontend.navtiming.domComplete.by_country.United_Kingdom:2381|ms
-frontend.navtiming.domComplete.by_country.United_Kingdom:5513|ms
-frontend.navtiming.domComplete.by_country.United_States:343|ms
-frontend.navtiming.domComplete.desktop.anonymous:1471|ms
-frontend.navtiming.domComplete.desktop.anonymous:5513|ms
-frontend.navtiming.domComplete.desktop.overall:1471|ms
-frontend.navtiming.domComplete.desktop.overall:5513|ms
-frontend.navtiming.domComplete.mobile.anonymous:2381|ms
-frontend.navtiming.domComplete.mobile.anonymous:2880|ms
-frontend.navtiming.domComplete.mobile.anonymous:343|ms
-frontend.navtiming.domComplete.mobile.anonymous:455|ms
-frontend.navtiming.domComplete.mobile.anonymous:5921|ms
-frontend.navtiming.domComplete.mobile.overall:2381|ms
-frontend.navtiming.domComplete.mobile.overall:2880|ms
-frontend.navtiming.domComplete.mobile.overall:343|ms
-frontend.navtiming.domComplete.mobile.overall:455|ms
-frontend.navtiming.domComplete.mobile.overall:5921|ms
-frontend.navtiming.domComplete.overall:1471|ms
-frontend.navtiming.domComplete.overall:2381|ms
-frontend.navtiming.domComplete.overall:2880|ms
-frontend.navtiming.domComplete.overall:343|ms
-frontend.navtiming.domComplete.overall:455|ms
-frontend.navtiming.domComplete.overall:5513|ms
-frontend.navtiming.domComplete.overall:5921|ms
-frontend.navtiming.domInteractive.by_browser.Chrome.60:476|ms
-frontend.navtiming.domInteractive.by_browser.Chrome.all:476|ms
-frontend.navtiming.domInteractive.by_browser.Chrome_Mobile.57:2867|ms
-frontend.navtiming.domInteractive.by_browser.Chrome_Mobile.59:1818|ms
-frontend.navtiming.domInteractive.by_browser.Chrome_Mobile.all:1818|ms
-frontend.navtiming.domInteractive.by_browser.Chrome_Mobile.all:2867|ms
-frontend.navtiming.domInteractive.by_browser.Mobile_Safari.10_0:1072|ms
-frontend.navtiming.domInteractive.by_browser.Mobile_Safari.10_0:204|ms
-frontend.navtiming.domInteractive.by_browser.Mobile_Safari.all:1072|ms
-frontend.navtiming.domInteractive.by_browser.Mobile_Safari.all:204|ms
-frontend.navtiming.domInteractive.by_browser.Other._:266|ms
-frontend.navtiming.domInteractive.by_browser.Other.all:266|ms
-frontend.navtiming.domInteractive.by_browser.iOS_other.8:715|ms
-frontend.navtiming.domInteractive.by_browser.iOS_other.all:715|ms
-frontend.navtiming.domInteractive.by_continent.Europe:1072|ms
-frontend.navtiming.domInteractive.by_continent.Europe:1818|ms
-frontend.navtiming.domInteractive.by_continent.Europe:476|ms
-frontend.navtiming.domInteractive.by_continent.Europe:715|ms
-frontend.navtiming.domInteractive.by_continent.North_America:204|ms
-frontend.navtiming.domInteractive.by_continent.North_America:266|ms
-frontend.navtiming.domInteractive.by_continent.South_America:2867|ms
-frontend.navtiming.domInteractive.by_country.Argentina:2867|ms
-frontend.navtiming.domInteractive.by_country.Canada:266|ms
-frontend.navtiming.domInteractive.by_country.France:476|ms
-frontend.navtiming.domInteractive.by_country.Italy:1818|ms
-frontend.navtiming.domInteractive.by_country.United_Kingdom:1072|ms
-frontend.navtiming.domInteractive.by_country.United_Kingdom:715|ms
-frontend.navtiming.domInteractive.by_country.United_States:204|ms
-frontend.navtiming.domInteractive.desktop.anonymous:476|ms
-frontend.navtiming.domInteractive.desktop.anonymous:715|ms
-frontend.navtiming.domInteractive.desktop.overall:476|ms
-frontend.navtiming.domInteractive.desktop.overall:715|ms
-frontend.navtiming.domInteractive.mobile.anonymous:1072|ms
-frontend.navtiming.domInteractive.mobile.anonymous:1818|ms
-frontend.navtiming.domInteractive.mobile.anonymous:204|ms
-frontend.navtiming.domInteractive.mobile.anonymous:266|ms
-frontend.navtiming.domInteractive.mobile.anonymous:2867|ms
-frontend.navtiming.domInteractive.mobile.overall:1072|ms
-frontend.navtiming.domInteractive.mobile.overall:1818|ms
-frontend.navtiming.domInteractive.mobile.overall:204|ms
-frontend.navtiming.domInteractive.mobile.overall:266|ms
-frontend.navtiming.domInteractive.mobile.overall:2867|ms
-frontend.navtiming.domInteractive.overall:1072|ms
-frontend.navtiming.domInteractive.overall:1818|ms
-frontend.navtiming.domInteractive.overall:204|ms
-frontend.navtiming.domInteractive.overall:266|ms
-frontend.navtiming.domInteractive.overall:2867|ms
-frontend.navtiming.domInteractive.overall:476|ms
-frontend.navtiming.domInteractive.overall:715|ms
-frontend.navtiming.fetchStart.by_browser.Chrome_Mobile.57:2|ms
-frontend.navtiming.fetchStart.by_browser.Chrome_Mobile.59:170|ms
-frontend.navtiming.fetchStart.by_browser.Chrome_Mobile.all:170|ms
-frontend.navtiming.fetchStart.by_browser.Chrome_Mobile.all:2|ms
-frontend.navtiming.fetchStart.by_browser.Other._:1|ms
-frontend.navtiming.fetchStart.by_browser.Other.all:1|ms
-frontend.navtiming.fetchStart.by_continent.Europe:170|ms
-frontend.navtiming.fetchStart.by_continent.North_America:1|ms
-frontend.navtiming.fetchStart.by_continent.South_America:2|ms
-frontend.navtiming.fetchStart.by_country.Argentina:2|ms
-frontend.navtiming.fetchStart.by_country.Canada:1|ms
-frontend.navtiming.fetchStart.by_country.Italy:170|ms
-frontend.navtiming.fetchStart.mobile.anonymous:170|ms
-frontend.navtiming.fetchStart.mobile.anonymous:1|ms
-frontend.navtiming.fetchStart.mobile.anonymous:2|ms
-frontend.navtiming.fetchStart.mobile.overall:170|ms
-frontend.navtiming.fetchStart.mobile.overall:1|ms
-frontend.navtiming.fetchStart.mobile.overall:2|ms
-frontend.navtiming.fetchStart.overall:170|ms
-frontend.navtiming.fetchStart.overall:1|ms
-frontend.navtiming.fetchStart.overall:2|ms
-frontend.navtiming.firstPaint.by_browser.Chrome.60:754|ms
-frontend.navtiming.firstPaint.by_browser.Chrome.all:754|ms
-frontend.navtiming.firstPaint.by_browser.Chrome_Mobile.57:2858|ms
-frontend.navtiming.firstPaint.by_browser.Chrome_Mobile.59:424|ms
-frontend.navtiming.firstPaint.by_browser.Chrome_Mobile.all:2858|ms
-frontend.navtiming.firstPaint.by_browser.Chrome_Mobile.all:424|ms
-frontend.navtiming.firstPaint.by_continent.Europe:424|ms
-frontend.navtiming.firstPaint.by_continent.Europe:754|ms
-frontend.navtiming.firstPaint.by_continent.South_America:2858|ms
-frontend.navtiming.firstPaint.by_country.Argentina:2858|ms
-frontend.navtiming.firstPaint.by_country.France:754|ms
-frontend.navtiming.firstPaint.by_country.Italy:424|ms
-frontend.navtiming.firstPaint.desktop.anonymous:754|ms
-frontend.navtiming.firstPaint.desktop.overall:754|ms
-frontend.navtiming.firstPaint.mobile.anonymous:2858|ms
-frontend.navtiming.firstPaint.mobile.anonymous:424|ms
-frontend.navtiming.firstPaint.mobile.overall:2858|ms
-frontend.navtiming.firstPaint.mobile.overall:424|ms
-frontend.navtiming.firstPaint.overall:2858|ms
-frontend.navtiming.firstPaint.overall:424|ms
-frontend.navtiming.firstPaint.overall:754|ms
-frontend.navtiming.loadEventEnd.by_browser.Chrome.60:1499|ms
-frontend.navtiming.loadEventEnd.by_browser.Chrome.all:1499|ms
-frontend.navtiming.loadEventEnd.by_browser.Chrome_Mobile.57:2880|ms
-frontend.navtiming.loadEventEnd.by_browser.Chrome_Mobile.59:5925|ms
-frontend.navtiming.loadEventEnd.by_browser.Chrome_Mobile.all:2880|ms
-frontend.navtiming.loadEventEnd.by_browser.Chrome_Mobile.all:5925|ms
-frontend.navtiming.loadEventEnd.by_browser.Mobile_Safari.10_0:2427|ms
-frontend.navtiming.loadEventEnd.by_browser.Mobile_Safari.10_0:350|ms
-frontend.navtiming.loadEventEnd.by_browser.Mobile_Safari.all:2427|ms
-frontend.navtiming.loadEventEnd.by_browser.Mobile_Safari.all:350|ms
-frontend.navtiming.loadEventEnd.by_browser.Other._:479|ms
-frontend.navtiming.loadEventEnd.by_browser.Other.all:479|ms
-frontend.navtiming.loadEventEnd.by_browser.iOS_other.8:5899|ms
-frontend.navtiming.loadEventEnd.by_browser.iOS_other.all:5899|ms
-frontend.navtiming.loadEventEnd.by_continent.Europe:1499|ms
-frontend.navtiming.loadEventEnd.by_continent.Europe:2427|ms
-frontend.navtiming.loadEventEnd.by_continent.Europe:5899|ms
-frontend.navtiming.loadEventEnd.by_continent.Europe:5925|ms
-frontend.navtiming.loadEventEnd.by_continent.North_America:350|ms
-frontend.navtiming.loadEventEnd.by_continent.North_America:479|ms
-frontend.navtiming.loadEventEnd.by_continent.South_America:2880|ms
-frontend.navtiming.loadEventEnd.by_country.Argentina:2880|ms
-frontend.navtiming.loadEventEnd.by_country.Canada:479|ms
-frontend.navtiming.loadEventEnd.by_country.France:1499|ms
-frontend.navtiming.loadEventEnd.by_country.Italy:5925|ms
-frontend.navtiming.loadEventEnd.by_country.United_Kingdom:2427|ms
-frontend.navtiming.loadEventEnd.by_country.United_Kingdom:5899|ms
-frontend.navtiming.loadEventEnd.by_country.United_States:350|ms
-frontend.navtiming.loadEventEnd.desktop.anonymous:1499|ms
-frontend.navtiming.loadEventEnd.desktop.anonymous:5899|ms
-frontend.navtiming.loadEventEnd.desktop.overall:1499|ms
-frontend.navtiming.loadEventEnd.desktop.overall:5899|ms
-frontend.navtiming.loadEventEnd.mobile.anonymous:2427|ms
-frontend.navtiming.loadEventEnd.mobile.anonymous:2880|ms
-frontend.navtiming.loadEventEnd.mobile.anonymous:350|ms
-frontend.navtiming.loadEventEnd.mobile.anonymous:479|ms
-frontend.navtiming.loadEventEnd.mobile.anonymous:5925|ms
-frontend.navtiming.loadEventEnd.mobile.overall:2427|ms
-frontend.navtiming.loadEventEnd.mobile.overall:2880|ms
-frontend.navtiming.loadEventEnd.mobile.overall:350|ms
-frontend.navtiming.loadEventEnd.mobile.overall:479|ms
-frontend.navtiming.loadEventEnd.mobile.overall:5925|ms
-frontend.navtiming.loadEventEnd.overall:1499|ms
-frontend.navtiming.loadEventEnd.overall:2427|ms
-frontend.navtiming.loadEventEnd.overall:2880|ms
-frontend.navtiming.loadEventEnd.overall:350|ms
-frontend.navtiming.loadEventEnd.overall:479|ms
-frontend.navtiming.loadEventEnd.overall:5899|ms
-frontend.navtiming.loadEventEnd.overall:5925|ms
-frontend.navtiming.loadEventStart.by_browser.Chrome.60:1472|ms
-frontend.navtiming.loadEventStart.by_browser.Chrome.all:1472|ms
-frontend.navtiming.loadEventStart.by_browser.Chrome_Mobile.57:2880|ms
-frontend.navtiming.loadEventStart.by_browser.Chrome_Mobile.59:5924|ms
-frontend.navtiming.loadEventStart.by_browser.Chrome_Mobile.all:2880|ms
-frontend.navtiming.loadEventStart.by_browser.Chrome_Mobile.all:5924|ms
-frontend.navtiming.loadEventStart.by_browser.Mobile_Safari.10_0:2381|ms
-frontend.navtiming.loadEventStart.by_browser.Mobile_Safari.10_0:343|ms
-frontend.navtiming.loadEventStart.by_browser.Mobile_Safari.all:2381|ms
-frontend.navtiming.loadEventStart.by_browser.Mobile_Safari.all:343|ms
-frontend.navtiming.loadEventStart.by_browser.Other._:456|ms
-frontend.navtiming.loadEventStart.by_browser.Other.all:456|ms
-frontend.navtiming.loadEventStart.by_browser.iOS_other.8:5513|ms
-frontend.navtiming.loadEventStart.by_browser.iOS_other.all:5513|ms
-frontend.navtiming.loadEventStart.by_continent.Europe:1472|ms
-frontend.navtiming.loadEventStart.by_continent.Europe:2381|ms
-frontend.navtiming.loadEventStart.by_continent.Europe:5513|ms
-frontend.navtiming.loadEventStart.by_continent.Europe:5924|ms
-frontend.navtiming.loadEventStart.by_continent.North_America:343|ms
-frontend.navtiming.loadEventStart.by_continent.North_America:456|ms
-frontend.navtiming.loadEventStart.by_continent.South_America:2880|ms
-frontend.navtiming.loadEventStart.by_country.Argentina:2880|ms
-frontend.navtiming.loadEventStart.by_country.Canada:456|ms
-frontend.navtiming.loadEventStart.by_country.France:1472|ms
-frontend.navtiming.loadEventStart.by_country.Italy:5924|ms
-frontend.navtiming.loadEventStart.by_country.United_Kingdom:2381|ms
-frontend.navtiming.loadEventStart.by_country.United_Kingdom:5513|ms
-frontend.navtiming.loadEventStart.by_country.United_States:343|ms
-frontend.navtiming.loadEventStart.desktop.anonymous:1472|ms
-frontend.navtiming.loadEventStart.desktop.anonymous:5513|ms
-frontend.navtiming.loadEventStart.desktop.overall:1472|ms
-frontend.navtiming.loadEventStart.desktop.overall:5513|ms
-frontend.navtiming.loadEventStart.mobile.anonymous:2381|ms
-frontend.navtiming.loadEventStart.mobile.anonymous:2880|ms
-frontend.navtiming.loadEventStart.mobile.anonymous:343|ms
-frontend.navtiming.loadEventStart.mobile.anonymous:456|ms
-frontend.navtiming.loadEventStart.mobile.anonymous:5924|ms
-frontend.navtiming.loadEventStart.mobile.overall:2381|ms
-frontend.navtiming.loadEventStart.mobile.overall:2880|ms
-frontend.navtiming.loadEventStart.mobile.overall:343|ms
-frontend.navtiming.loadEventStart.mobile.overall:456|ms
-frontend.navtiming.loadEventStart.mobile.overall:5924|ms
-frontend.navtiming.loadEventStart.overall:1472|ms
-frontend.navtiming.loadEventStart.overall:2381|ms
-frontend.navtiming.loadEventStart.overall:2880|ms
-frontend.navtiming.loadEventStart.overall:343|ms
-frontend.navtiming.loadEventStart.overall:456|ms
-frontend.navtiming.loadEventStart.overall:5513|ms
-frontend.navtiming.loadEventStart.overall:5924|ms
-frontend.navtiming.mediaWikiLoadComplete.by_browser.Chrome.60:2360|ms
-frontend.navtiming.mediaWikiLoadComplete.by_browser.Chrome.all:2360|ms
-frontend.navtiming.mediaWikiLoadComplete.by_browser.Chrome_Mobile.30:1322|ms
-frontend.navtiming.mediaWikiLoadComplete.by_browser.Chrome_Mobile.57:3129|ms
-frontend.navtiming.mediaWikiLoadComplete.by_browser.Chrome_Mobile.59:1697|ms
-frontend.navtiming.mediaWikiLoadComplete.by_browser.Chrome_Mobile.all:1322|ms
-frontend.navtiming.mediaWikiLoadComplete.by_browser.Chrome_Mobile.all:1697|ms
-frontend.navtiming.mediaWikiLoadComplete.by_browser.Chrome_Mobile.all:3129|ms
-frontend.navtiming.mediaWikiLoadComplete.by_browser.Mobile_Safari.10_0:1253|ms
-frontend.navtiming.mediaWikiLoadComplete.by_browser.Mobile_Safari.10_0:131|ms
-frontend.navtiming.mediaWikiLoadComplete.by_browser.Mobile_Safari.all:1253|ms
-frontend.navtiming.mediaWikiLoadComplete.by_browser.Mobile_Safari.all:131|ms
-frontend.navtiming.mediaWikiLoadComplete.by_browser.Other._:1625|ms
-frontend.navtiming.mediaWikiLoadComplete.by_browser.Other.all:1625|ms
-frontend.navtiming.mediaWikiLoadComplete.by_browser.iOS_other.8:4920|ms
-frontend.navtiming.mediaWikiLoadComplete.by_browser.iOS_other.all:4920|ms
-frontend.navtiming.mediaWikiLoadComplete.by_continent.Asia:1322|ms
-frontend.navtiming.mediaWikiLoadComplete.by_continent.Europe:1253|ms
-frontend.navtiming.mediaWikiLoadComplete.by_continent.Europe:1697|ms
-frontend.navtiming.mediaWikiLoadComplete.by_continent.Europe:2360|ms
-frontend.navtiming.mediaWikiLoadComplete.by_continent.Europe:4920|ms
-frontend.navtiming.mediaWikiLoadComplete.by_continent.North_America:131|ms
-frontend.navtiming.mediaWikiLoadComplete.by_continent.North_America:1625|ms
-frontend.navtiming.mediaWikiLoadComplete.by_continent.South_America:3129|ms
-frontend.navtiming.mediaWikiLoadComplete.by_country.Argentina:3129|ms
-frontend.navtiming.mediaWikiLoadComplete.by_country.Canada:1625|ms
-frontend.navtiming.mediaWikiLoadComplete.by_country.France:2360|ms
-frontend.navtiming.mediaWikiLoadComplete.by_country.Italy:1697|ms
-frontend.navtiming.mediaWikiLoadComplete.by_country.United_Kingdom:1253|ms
-frontend.navtiming.mediaWikiLoadComplete.by_country.United_Kingdom:4920|ms
-frontend.navtiming.mediaWikiLoadComplete.by_country.United_States:131|ms
-frontend.navtiming.mediaWikiLoadComplete.desktop.anonymous:2360|ms
-frontend.navtiming.mediaWikiLoadComplete.desktop.anonymous:4920|ms
-frontend.navtiming.mediaWikiLoadComplete.desktop.overall:2360|ms
-frontend.navtiming.mediaWikiLoadComplete.desktop.overall:4920|ms
-frontend.navtiming.mediaWikiLoadComplete.mobile.anonymous:1253|ms
-frontend.navtiming.mediaWikiLoadComplete.mobile.anonymous:131|ms
-frontend.navtiming.mediaWikiLoadComplete.mobile.anonymous:1322|ms
-frontend.navtiming.mediaWikiLoadComplete.mobile.anonymous:1625|ms
-frontend.navtiming.mediaWikiLoadComplete.mobile.anonymous:1697|ms
-frontend.navtiming.mediaWikiLoadComplete.mobile.anonymous:3129|ms
-frontend.navtiming.mediaWikiLoadComplete.mobile.overall:1253|ms
-frontend.navtiming.mediaWikiLoadComplete.mobile.overall:131|ms
-frontend.navtiming.mediaWikiLoadComplete.mobile.overall:1322|ms
-frontend.navtiming.mediaWikiLoadComplete.mobile.overall:1625|ms
-frontend.navtiming.mediaWikiLoadComplete.mobile.overall:1697|ms
-frontend.navtiming.mediaWikiLoadComplete.mobile.overall:3129|ms
-frontend.navtiming.mediaWikiLoadComplete.overall:1253|ms
-frontend.navtiming.mediaWikiLoadComplete.overall:131|ms
-frontend.navtiming.mediaWikiLoadComplete.overall:1322|ms
-frontend.navtiming.mediaWikiLoadComplete.overall:1625|ms
-frontend.navtiming.mediaWikiLoadComplete.overall:1697|ms
-frontend.navtiming.mediaWikiLoadComplete.overall:2360|ms
-frontend.navtiming.mediaWikiLoadComplete.overall:3129|ms
-frontend.navtiming.mediaWikiLoadComplete.overall:4920|ms
-frontend.navtiming.receiving.by_browser.Chrome.60:54|ms
-frontend.navtiming.receiving.by_browser.Chrome.all:54|ms
-frontend.navtiming.receiving.by_browser.Chrome_Mobile.57:10|ms
-frontend.navtiming.receiving.by_browser.Chrome_Mobile.59:709|ms
-frontend.navtiming.receiving.by_browser.Chrome_Mobile.all:10|ms
-frontend.navtiming.receiving.by_browser.Chrome_Mobile.all:709|ms
-frontend.navtiming.receiving.by_browser.Mobile_Safari.10_0:208|ms
-frontend.navtiming.receiving.by_browser.Mobile_Safari.10_0:37|ms
-frontend.navtiming.receiving.by_browser.Mobile_Safari.all:208|ms
-frontend.navtiming.receiving.by_browser.Mobile_Safari.all:37|ms
-frontend.navtiming.receiving.by_browser.Other._:51|ms
-frontend.navtiming.receiving.by_browser.Other.all:51|ms
-frontend.navtiming.receiving.by_browser.iOS_other.8:338|ms
-frontend.navtiming.receiving.by_browser.iOS_other.all:338|ms
-frontend.navtiming.receiving.by_continent.Europe:208|ms
-frontend.navtiming.receiving.by_continent.Europe:338|ms
-frontend.navtiming.receiving.by_continent.Europe:54|ms
-frontend.navtiming.receiving.by_continent.Europe:709|ms
-frontend.navtiming.receiving.by_continent.North_America:37|ms
-frontend.navtiming.receiving.by_continent.North_America:51|ms
-frontend.navtiming.receiving.by_continent.South_America:10|ms
-frontend.navtiming.receiving.by_country.Argentina:10|ms
-frontend.navtiming.receiving.by_country.Canada:51|ms
-frontend.navtiming.receiving.by_country.France:54|ms
-frontend.navtiming.receiving.by_country.Italy:709|ms
-frontend.navtiming.receiving.by_country.United_Kingdom:208|ms
-frontend.navtiming.receiving.by_country.United_Kingdom:338|ms
-frontend.navtiming.receiving.by_country.United_States:37|ms
-frontend.navtiming.receiving.desktop.anonymous:338|ms
-frontend.navtiming.receiving.desktop.anonymous:54|ms
-frontend.navtiming.receiving.desktop.overall:338|ms
-frontend.navtiming.receiving.desktop.overall:54|ms
-frontend.navtiming.receiving.mobile.anonymous:10|ms
-frontend.navtiming.receiving.mobile.anonymous:208|ms
-frontend.navtiming.receiving.mobile.anonymous:37|ms
-frontend.navtiming.receiving.mobile.anonymous:51|ms
-frontend.navtiming.receiving.mobile.anonymous:709|ms
-frontend.navtiming.receiving.mobile.overall:10|ms
-frontend.navtiming.receiving.mobile.overall:208|ms
-frontend.navtiming.receiving.mobile.overall:37|ms
-frontend.navtiming.receiving.mobile.overall:51|ms
-frontend.navtiming.receiving.mobile.overall:709|ms
-frontend.navtiming.receiving.overall:10|ms
-frontend.navtiming.receiving.overall:208|ms
-frontend.navtiming.receiving.overall:338|ms
-frontend.navtiming.receiving.overall:37|ms
-frontend.navtiming.receiving.overall:51|ms
-frontend.navtiming.receiving.overall:54|ms
-frontend.navtiming.receiving.overall:709|ms
-frontend.navtiming.responseStart.by_browser.Chrome.60:212|ms
-frontend.navtiming.responseStart.by_browser.Chrome.all:212|ms
-frontend.navtiming.responseStart.by_browser.Chrome_Mobile.57:349|ms
-frontend.navtiming.responseStart.by_browser.Chrome_Mobile.59:280|ms
-frontend.navtiming.responseStart.by_browser.Chrome_Mobile.all:280|ms
-frontend.navtiming.responseStart.by_browser.Chrome_Mobile.all:349|ms
-frontend.navtiming.responseStart.by_browser.Mobile_Safari.10_0:124|ms
-frontend.navtiming.responseStart.by_browser.Mobile_Safari.10_0:625|ms
-frontend.navtiming.responseStart.by_browser.Mobile_Safari.all:124|ms
-frontend.navtiming.responseStart.by_browser.Mobile_Safari.all:625|ms
-frontend.navtiming.responseStart.by_browser.Other._:92|ms
-frontend.navtiming.responseStart.by_browser.Other.all:92|ms
-frontend.navtiming.responseStart.by_browser.iOS_other.8:232|ms
-frontend.navtiming.responseStart.by_browser.iOS_other.all:232|ms
-frontend.navtiming.responseStart.by_continent.Europe:212|ms
-frontend.navtiming.responseStart.by_continent.Europe:232|ms
-frontend.navtiming.responseStart.by_continent.Europe:280|ms
-frontend.navtiming.responseStart.by_continent.Europe:625|ms
-frontend.navtiming.responseStart.by_continent.North_America:124|ms
-frontend.navtiming.responseStart.by_continent.North_America:92|ms
-frontend.navtiming.responseStart.by_continent.South_America:349|ms
-frontend.navtiming.responseStart.by_country.Argentina:349|ms
-frontend.navtiming.responseStart.by_country.Canada:92|ms
-frontend.navtiming.responseStart.by_country.France:212|ms
-frontend.navtiming.responseStart.by_country.Italy:280|ms
-frontend.navtiming.responseStart.by_country.United_Kingdom:232|ms
-frontend.navtiming.responseStart.by_country.United_Kingdom:625|ms
-frontend.navtiming.responseStart.by_country.United_States:124|ms
-frontend.navtiming.responseStart.desktop.anonymous:212|ms
-frontend.navtiming.responseStart.desktop.anonymous:232|ms
-frontend.navtiming.responseStart.desktop.overall:212|ms
-frontend.navtiming.responseStart.desktop.overall:232|ms
-frontend.navtiming.responseStart.mobile.anonymous:124|ms
-frontend.navtiming.responseStart.mobile.anonymous:280|ms
-frontend.navtiming.responseStart.mobile.anonymous:349|ms
-frontend.navtiming.responseStart.mobile.anonymous:625|ms
-frontend.navtiming.responseStart.mobile.anonymous:92|ms
-frontend.navtiming.responseStart.mobile.overall:124|ms
-frontend.navtiming.responseStart.mobile.overall:280|ms
-frontend.navtiming.responseStart.mobile.overall:349|ms
-frontend.navtiming.responseStart.mobile.overall:625|ms
-frontend.navtiming.responseStart.mobile.overall:92|ms
-frontend.navtiming.responseStart.overall:124|ms
-frontend.navtiming.responseStart.overall:212|ms
-frontend.navtiming.responseStart.overall:232|ms
-frontend.navtiming.responseStart.overall:280|ms
-frontend.navtiming.responseStart.overall:349|ms
-frontend.navtiming.responseStart.overall:625|ms
-frontend.navtiming.responseStart.overall:92|ms
+frontend.navtiming.sslNegotiation.mobile.anonymous:585|ms
+frontend.navtiming.sslNegotiation.mobile.overall:585|ms
+frontend.navtiming.sslNegotiation.overall:585|ms
frontend.navtiming.sslNegotiation.by_browser.Chrome.30:585|ms
frontend.navtiming.sslNegotiation.by_browser.Chrome.all:585|ms
-frontend.navtiming.sslNegotiation.by_browser.Chrome_Mobile.49:110|ms
-frontend.navtiming.sslNegotiation.by_browser.Chrome_Mobile.59:1285|ms
-frontend.navtiming.sslNegotiation.by_browser.Chrome_Mobile.59:91|ms
-frontend.navtiming.sslNegotiation.by_browser.Chrome_Mobile.all:110|ms
-frontend.navtiming.sslNegotiation.by_browser.Chrome_Mobile.all:1285|ms
-frontend.navtiming.sslNegotiation.by_browser.Chrome_Mobile.all:91|ms
-frontend.navtiming.sslNegotiation.by_browser.Mobile_Safari.10_0:116|ms
-frontend.navtiming.sslNegotiation.by_browser.Mobile_Safari.all:116|ms
-frontend.navtiming.sslNegotiation.by_continent.Europe:110|ms
-frontend.navtiming.sslNegotiation.by_continent.Europe:116|ms
-frontend.navtiming.sslNegotiation.by_continent.Europe:1285|ms
-frontend.navtiming.sslNegotiation.by_continent.Europe:91|ms
-frontend.navtiming.sslNegotiation.by_country.France:110|ms
-frontend.navtiming.sslNegotiation.by_country.France:116|ms
-frontend.navtiming.sslNegotiation.by_country.Germany:1285|ms
-frontend.navtiming.sslNegotiation.by_country.Italy:91|ms
-frontend.navtiming.sslNegotiation.mobile.anonymous:110|ms
-frontend.navtiming.sslNegotiation.mobile.anonymous:116|ms
-frontend.navtiming.sslNegotiation.mobile.anonymous:1285|ms
-frontend.navtiming.sslNegotiation.mobile.anonymous:585|ms
+frontend.navtiming2.onLoad.mobile.anonymous:68|ms
+frontend.navtiming2.onLoad.mobile.overall:68|ms
+frontend.navtiming2.onLoad.overall:68|ms
+frontend.navtiming2.onLoad.by_browser.Chrome.30:68|ms
+frontend.navtiming2.onLoad.by_browser.Chrome.all:68|ms
+frontend.navtiming2.request.mobile.anonymous:83|ms
+frontend.navtiming2.request.mobile.overall:83|ms
+frontend.navtiming2.request.overall:83|ms
+frontend.navtiming2.request.by_browser.Chrome.30:83|ms
+frontend.navtiming2.request.by_browser.Chrome.all:83|ms
+frontend.navtiming2.tcp.mobile.anonymous:669|ms
+frontend.navtiming2.tcp.mobile.overall:669|ms
+frontend.navtiming2.tcp.overall:669|ms
+frontend.navtiming2.tcp.by_browser.Chrome.30:669|ms
+frontend.navtiming2.tcp.by_browser.Chrome.all:669|ms
+frontend.navtiming2.loadEventEnd.mobile.anonymous:4613|ms
+frontend.navtiming2.loadEventEnd.mobile.overall:4613|ms
+frontend.navtiming2.loadEventEnd.overall:4613|ms
+frontend.navtiming2.loadEventEnd.by_browser.Chrome.30:4613|ms
+frontend.navtiming2.loadEventEnd.by_browser.Chrome.all:4613|ms
+frontend.navtiming2.ssl.mobile.anonymous:585|ms
+frontend.navtiming2.ssl.mobile.overall:585|ms
+frontend.navtiming2.ssl.overall:585|ms
+frontend.navtiming2.ssl.by_browser.Chrome.30:585|ms
+frontend.navtiming2.ssl.by_browser.Chrome.all:585|ms
+frontend.navtiming2.domComplete.mobile.anonymous:4545|ms
+frontend.navtiming2.domComplete.mobile.overall:4545|ms
+frontend.navtiming2.domComplete.overall:4545|ms
+frontend.navtiming2.domComplete.by_browser.Chrome.30:4545|ms
+frontend.navtiming2.domComplete.by_browser.Chrome.all:4545|ms
+frontend.navtiming2.domInteractive.mobile.anonymous:2289|ms
+frontend.navtiming2.domInteractive.mobile.overall:2289|ms
+frontend.navtiming2.domInteractive.overall:2289|ms
+frontend.navtiming2.domInteractive.by_browser.Chrome.30:2289|ms
+frontend.navtiming2.domInteractive.by_browser.Chrome.all:2289|ms
frontend.navtiming.sslNegotiation.mobile.anonymous:91|ms
-frontend.navtiming.sslNegotiation.mobile.overall:110|ms
-frontend.navtiming.sslNegotiation.mobile.overall:116|ms
-frontend.navtiming.sslNegotiation.mobile.overall:1285|ms
-frontend.navtiming.sslNegotiation.mobile.overall:585|ms
frontend.navtiming.sslNegotiation.mobile.overall:91|ms
-frontend.navtiming.sslNegotiation.overall:110|ms
-frontend.navtiming.sslNegotiation.overall:116|ms
-frontend.navtiming.sslNegotiation.overall:1285|ms
-frontend.navtiming.sslNegotiation.overall:585|ms
frontend.navtiming.sslNegotiation.overall:91|ms
+frontend.navtiming.sslNegotiation.by_browser.Chrome_Mobile.59:91|ms
+frontend.navtiming.sslNegotiation.by_browser.Chrome_Mobile.all:91|ms
+frontend.navtiming.sslNegotiation.by_continent.Europe:91|ms
+frontend.navtiming.sslNegotiation.by_country.Italy:91|ms
+frontend.navtiming2.onLoad.mobile.anonymous:34|ms
+frontend.navtiming2.onLoad.mobile.overall:34|ms
+frontend.navtiming2.onLoad.overall:34|ms
+frontend.navtiming2.onLoad.by_browser.Chrome_Mobile.59:34|ms
+frontend.navtiming2.onLoad.by_browser.Chrome_Mobile.all:34|ms
+frontend.navtiming2.onLoad.by_continent.Europe:34|ms
+frontend.navtiming2.onLoad.by_country.Italy:34|ms
+frontend.navtiming2.firstPaint.mobile.anonymous:781|ms
+frontend.navtiming2.firstPaint.mobile.overall:781|ms
+frontend.navtiming2.firstPaint.overall:781|ms
+frontend.navtiming2.firstPaint.by_browser.Chrome_Mobile.59:781|ms
+frontend.navtiming2.firstPaint.by_browser.Chrome_Mobile.all:781|ms
+frontend.navtiming2.firstPaint.by_continent.Europe:781|ms
+frontend.navtiming2.firstPaint.by_country.Italy:781|ms
+frontend.navtiming2.request.mobile.anonymous:55|ms
+frontend.navtiming2.request.mobile.overall:55|ms
+frontend.navtiming2.request.overall:55|ms
+frontend.navtiming2.request.by_browser.Chrome_Mobile.59:55|ms
+frontend.navtiming2.request.by_browser.Chrome_Mobile.all:55|ms
+frontend.navtiming2.request.by_continent.Europe:55|ms
+frontend.navtiming2.request.by_country.Italy:55|ms
+frontend.navtiming2.tcp.mobile.anonymous:136|ms
+frontend.navtiming2.tcp.mobile.overall:136|ms
+frontend.navtiming2.tcp.overall:136|ms
+frontend.navtiming2.tcp.by_browser.Chrome_Mobile.59:136|ms
+frontend.navtiming2.tcp.by_browser.Chrome_Mobile.all:136|ms
+frontend.navtiming2.tcp.by_continent.Europe:136|ms
+frontend.navtiming2.tcp.by_country.Italy:136|ms
+frontend.navtiming2.loadEventEnd.mobile.anonymous:2104|ms
+frontend.navtiming2.loadEventEnd.mobile.overall:2104|ms
+frontend.navtiming2.loadEventEnd.overall:2104|ms
+frontend.navtiming2.loadEventEnd.by_browser.Chrome_Mobile.59:2104|ms
+frontend.navtiming2.loadEventEnd.by_browser.Chrome_Mobile.all:2104|ms
+frontend.navtiming2.loadEventEnd.by_continent.Europe:2104|ms
+frontend.navtiming2.loadEventEnd.by_country.Italy:2104|ms
+frontend.navtiming2.ssl.mobile.anonymous:91|ms
+frontend.navtiming2.ssl.mobile.overall:91|ms
+frontend.navtiming2.ssl.overall:91|ms
+frontend.navtiming2.ssl.by_browser.Chrome_Mobile.59:91|ms
+frontend.navtiming2.ssl.by_browser.Chrome_Mobile.all:91|ms
+frontend.navtiming2.ssl.by_continent.Europe:91|ms
+frontend.navtiming2.ssl.by_country.Italy:91|ms
+frontend.navtiming2.domComplete.mobile.anonymous:2070|ms
+frontend.navtiming2.domComplete.mobile.overall:2070|ms
+frontend.navtiming2.domComplete.overall:2070|ms
+frontend.navtiming2.domComplete.by_browser.Chrome_Mobile.59:2070|ms
+frontend.navtiming2.domComplete.by_browser.Chrome_Mobile.all:2070|ms
+frontend.navtiming2.domComplete.by_continent.Europe:2070|ms
+frontend.navtiming2.domComplete.by_country.Italy:2070|ms
+frontend.navtiming2.domInteractive.mobile.anonymous:787|ms
+frontend.navtiming2.domInteractive.mobile.overall:787|ms
+frontend.navtiming2.domInteractive.overall:787|ms
+frontend.navtiming2.domInteractive.by_browser.Chrome_Mobile.59:787|ms
+frontend.navtiming2.domInteractive.by_browser.Chrome_Mobile.all:787|ms
+frontend.navtiming2.domInteractive.by_continent.Europe:787|ms
+frontend.navtiming2.domInteractive.by_country.Italy:787|ms
+mw.performance.save:2495|ms
+mw.performance.save_by_version.1_30_0-wmf_14:2495|ms
+mw.performance.save:620|ms
+mw.performance.save_by_version.1_30_0-wmf_14:620|ms
+frontend.navtiming.mediaWikiLoadComplete.mobile.anonymous:1322|ms
+frontend.navtiming.mediaWikiLoadComplete.mobile.overall:1322|ms
+frontend.navtiming.mediaWikiLoadComplete.overall:1322|ms
+frontend.navtiming.mediaWikiLoadComplete.by_browser.Chrome_Mobile.30:1322|ms
+frontend.navtiming.mediaWikiLoadComplete.by_browser.Chrome_Mobile.all:1322|ms
+frontend.navtiming.mediaWikiLoadComplete.by_continent.Asia:1322|ms
+mw.performance.save:2526|ms
+mw.performance.save_by_version.1_30_0-wmf_14:2526|ms
+mw.performance.save:1042|ms
+mw.performance.save_by_version.1_30_0-wmf_14:1042|ms
+mw.performance.save:2729|ms
+mw.performance.save_by_version.1_30_0-wmf_14:2729|ms
+frontend.navtiming.mediaWikiLoadComplete.desktop.anonymous:2360|ms
+frontend.navtiming.mediaWikiLoadComplete.desktop.overall:2360|ms
+frontend.navtiming.mediaWikiLoadComplete.overall:2360|ms
+frontend.navtiming.mediaWikiLoadComplete.by_browser.Chrome.60:2360|ms
+frontend.navtiming.mediaWikiLoadComplete.by_browser.Chrome.all:2360|ms
+frontend.navtiming.mediaWikiLoadComplete.by_continent.Europe:2360|ms
+frontend.navtiming.mediaWikiLoadComplete.by_country.France:2360|ms
+frontend.navtiming.dnsLookup.by_continent.Europe:0|ms
+frontend.navtiming.dnsLookup.by_country.France:0|ms
+frontend.navtiming.firstPaint.desktop.anonymous:754|ms
+frontend.navtiming.firstPaint.desktop.overall:754|ms
+frontend.navtiming.firstPaint.overall:754|ms
+frontend.navtiming.firstPaint.by_browser.Chrome.60:754|ms
+frontend.navtiming.firstPaint.by_browser.Chrome.all:754|ms
+frontend.navtiming.firstPaint.by_continent.Europe:754|ms
+frontend.navtiming.firstPaint.by_country.France:754|ms
+frontend.navtiming.loadEventEnd.desktop.anonymous:1499|ms
+frontend.navtiming.loadEventEnd.desktop.overall:1499|ms
+frontend.navtiming.loadEventEnd.overall:1499|ms
+frontend.navtiming.loadEventEnd.by_browser.Chrome.60:1499|ms
+frontend.navtiming.loadEventEnd.by_browser.Chrome.all:1499|ms
+frontend.navtiming.loadEventEnd.by_continent.Europe:1499|ms
+frontend.navtiming.loadEventEnd.by_country.France:1499|ms
+frontend.navtiming.waiting.desktop.anonymous:196|ms
+frontend.navtiming.waiting.desktop.overall:196|ms
+frontend.navtiming.waiting.overall:196|ms
frontend.navtiming.waiting.by_browser.Chrome.60:196|ms
frontend.navtiming.waiting.by_browser.Chrome.all:196|ms
-frontend.navtiming.waiting.by_browser.Chrome_Mobile.57:206|ms
-frontend.navtiming.waiting.by_browser.Chrome_Mobile.59:102|ms
-frontend.navtiming.waiting.by_browser.Chrome_Mobile.all:102|ms
-frontend.navtiming.waiting.by_browser.Chrome_Mobile.all:206|ms
-frontend.navtiming.waiting.by_browser.Mobile_Safari.10_0:624|ms
-frontend.navtiming.waiting.by_browser.Mobile_Safari.all:624|ms
-frontend.navtiming.waiting.by_browser.Other._:71|ms
-frontend.navtiming.waiting.by_browser.Other.all:71|ms
-frontend.navtiming.waiting.by_browser.iOS_other.8:231|ms
-frontend.navtiming.waiting.by_browser.iOS_other.all:231|ms
-frontend.navtiming.waiting.by_continent.Europe:102|ms
frontend.navtiming.waiting.by_continent.Europe:196|ms
-frontend.navtiming.waiting.by_continent.Europe:231|ms
-frontend.navtiming.waiting.by_continent.Europe:624|ms
-frontend.navtiming.waiting.by_continent.North_America:71|ms
+frontend.navtiming.waiting.by_country.France:196|ms
+frontend.navtiming.loadEventStart.desktop.anonymous:1472|ms
+frontend.navtiming.loadEventStart.desktop.overall:1472|ms
+frontend.navtiming.loadEventStart.overall:1472|ms
+frontend.navtiming.loadEventStart.by_browser.Chrome.60:1472|ms
+frontend.navtiming.loadEventStart.by_browser.Chrome.all:1472|ms
+frontend.navtiming.loadEventStart.by_continent.Europe:1472|ms
+frontend.navtiming.loadEventStart.by_country.France:1472|ms
+frontend.navtiming.domComplete.desktop.anonymous:1471|ms
+frontend.navtiming.domComplete.desktop.overall:1471|ms
+frontend.navtiming.domComplete.overall:1471|ms
+frontend.navtiming.domComplete.by_browser.Chrome.60:1471|ms
+frontend.navtiming.domComplete.by_browser.Chrome.all:1471|ms
+frontend.navtiming.domComplete.by_continent.Europe:1471|ms
+frontend.navtiming.domComplete.by_country.France:1471|ms
+frontend.navtiming.receiving.desktop.anonymous:54|ms
+frontend.navtiming.receiving.desktop.overall:54|ms
+frontend.navtiming.receiving.overall:54|ms
+frontend.navtiming.receiving.by_browser.Chrome.60:54|ms
+frontend.navtiming.receiving.by_browser.Chrome.all:54|ms
+frontend.navtiming.receiving.by_continent.Europe:54|ms
+frontend.navtiming.receiving.by_country.France:54|ms
+frontend.navtiming.responseStart.desktop.anonymous:212|ms
+frontend.navtiming.responseStart.desktop.overall:212|ms
+frontend.navtiming.responseStart.overall:212|ms
+frontend.navtiming.responseStart.by_browser.Chrome.60:212|ms
+frontend.navtiming.responseStart.by_browser.Chrome.all:212|ms
+frontend.navtiming.responseStart.by_continent.Europe:212|ms
+frontend.navtiming.responseStart.by_country.France:212|ms
+frontend.navtiming.domInteractive.desktop.anonymous:476|ms
+frontend.navtiming.domInteractive.desktop.overall:476|ms
+frontend.navtiming.domInteractive.overall:476|ms
+frontend.navtiming.domInteractive.by_browser.Chrome.60:476|ms
+frontend.navtiming.domInteractive.by_browser.Chrome.all:476|ms
+frontend.navtiming.domInteractive.by_continent.Europe:476|ms
+frontend.navtiming.domInteractive.by_country.France:476|ms
+frontend.navtiming2.onLoad.desktop.anonymous:27|ms
+frontend.navtiming2.onLoad.desktop.overall:27|ms
+frontend.navtiming2.onLoad.overall:27|ms
+frontend.navtiming2.onLoad.by_browser.Chrome.60:27|ms
+frontend.navtiming2.onLoad.by_browser.Chrome.all:27|ms
+frontend.navtiming2.onLoad.by_continent.Europe:27|ms
+frontend.navtiming2.onLoad.by_country.France:27|ms
+frontend.navtiming2.firstPaint.desktop.anonymous:754|ms
+frontend.navtiming2.firstPaint.desktop.overall:754|ms
+frontend.navtiming2.firstPaint.overall:754|ms
+frontend.navtiming2.firstPaint.by_browser.Chrome.60:754|ms
+frontend.navtiming2.firstPaint.by_browser.Chrome.all:754|ms
+frontend.navtiming2.firstPaint.by_continent.Europe:754|ms
+frontend.navtiming2.firstPaint.by_country.France:754|ms
+frontend.navtiming2.request.desktop.anonymous:196|ms
+frontend.navtiming2.request.desktop.overall:196|ms
+frontend.navtiming2.request.overall:196|ms
+frontend.navtiming2.request.by_browser.Chrome.60:196|ms
+frontend.navtiming2.request.by_browser.Chrome.all:196|ms
+frontend.navtiming2.request.by_continent.Europe:196|ms
+frontend.navtiming2.request.by_country.France:196|ms
+frontend.navtiming2.loadEventEnd.desktop.anonymous:1499|ms
+frontend.navtiming2.loadEventEnd.desktop.overall:1499|ms
+frontend.navtiming2.loadEventEnd.overall:1499|ms
+frontend.navtiming2.loadEventEnd.by_browser.Chrome.60:1499|ms
+frontend.navtiming2.loadEventEnd.by_browser.Chrome.all:1499|ms
+frontend.navtiming2.loadEventEnd.by_continent.Europe:1499|ms
+frontend.navtiming2.loadEventEnd.by_country.France:1499|ms
+frontend.navtiming2.domComplete.desktop.anonymous:1471|ms
+frontend.navtiming2.domComplete.desktop.overall:1471|ms
+frontend.navtiming2.domComplete.overall:1471|ms
+frontend.navtiming2.domComplete.by_browser.Chrome.60:1471|ms
+frontend.navtiming2.domComplete.by_browser.Chrome.all:1471|ms
+frontend.navtiming2.domComplete.by_continent.Europe:1471|ms
+frontend.navtiming2.domComplete.by_country.France:1471|ms
+frontend.navtiming2.domInteractive.desktop.anonymous:476|ms
+frontend.navtiming2.domInteractive.desktop.overall:476|ms
+frontend.navtiming2.domInteractive.overall:476|ms
+frontend.navtiming2.domInteractive.by_browser.Chrome.60:476|ms
+frontend.navtiming2.domInteractive.by_browser.Chrome.all:476|ms
+frontend.navtiming2.domInteractive.by_continent.Europe:476|ms
+frontend.navtiming2.domInteractive.by_country.France:476|ms
+mw.performance.save:2193|ms
+mw.performance.save_by_version.1_30_0-wmf_14:2193|ms
+mw.performance.save:636|ms
+mw.performance.save_by_version.1_30_0-wmf_14:636|ms
+frontend.navtiming.sslNegotiation.mobile.anonymous:110|ms
+frontend.navtiming.sslNegotiation.mobile.overall:110|ms
+frontend.navtiming.sslNegotiation.overall:110|ms
+frontend.navtiming.sslNegotiation.by_browser.Chrome_Mobile.49:110|ms
+frontend.navtiming.sslNegotiation.by_browser.Chrome_Mobile.all:110|ms
+frontend.navtiming.sslNegotiation.by_continent.Europe:110|ms
+frontend.navtiming.sslNegotiation.by_country.France:110|ms
+frontend.navtiming2.onLoad.mobile.anonymous:60|ms
+frontend.navtiming2.onLoad.mobile.overall:60|ms
+frontend.navtiming2.onLoad.overall:60|ms
+frontend.navtiming2.onLoad.by_browser.Chrome_Mobile.49:60|ms
+frontend.navtiming2.onLoad.by_browser.Chrome_Mobile.all:60|ms
+frontend.navtiming2.onLoad.by_continent.Europe:60|ms
+frontend.navtiming2.onLoad.by_country.France:60|ms
+frontend.navtiming2.request.mobile.anonymous:87|ms
+frontend.navtiming2.request.mobile.overall:87|ms
+frontend.navtiming2.request.overall:87|ms
+frontend.navtiming2.request.by_browser.Chrome_Mobile.49:87|ms
+frontend.navtiming2.request.by_browser.Chrome_Mobile.all:87|ms
+frontend.navtiming2.request.by_continent.Europe:87|ms
+frontend.navtiming2.request.by_country.France:87|ms
+frontend.navtiming2.tcp.mobile.anonymous:160|ms
+frontend.navtiming2.tcp.mobile.overall:160|ms
+frontend.navtiming2.tcp.overall:160|ms
+frontend.navtiming2.tcp.by_browser.Chrome_Mobile.49:160|ms
+frontend.navtiming2.tcp.by_browser.Chrome_Mobile.all:160|ms
+frontend.navtiming2.tcp.by_continent.Europe:160|ms
+frontend.navtiming2.tcp.by_country.France:160|ms
+frontend.navtiming2.loadEventEnd.mobile.anonymous:2245|ms
+frontend.navtiming2.loadEventEnd.mobile.overall:2245|ms
+frontend.navtiming2.loadEventEnd.overall:2245|ms
+frontend.navtiming2.loadEventEnd.by_browser.Chrome_Mobile.49:2245|ms
+frontend.navtiming2.loadEventEnd.by_browser.Chrome_Mobile.all:2245|ms
+frontend.navtiming2.loadEventEnd.by_continent.Europe:2245|ms
+frontend.navtiming2.loadEventEnd.by_country.France:2245|ms
+frontend.navtiming2.ssl.mobile.anonymous:110|ms
+frontend.navtiming2.ssl.mobile.overall:110|ms
+frontend.navtiming2.ssl.overall:110|ms
+frontend.navtiming2.ssl.by_browser.Chrome_Mobile.49:110|ms
+frontend.navtiming2.ssl.by_browser.Chrome_Mobile.all:110|ms
+frontend.navtiming2.ssl.by_continent.Europe:110|ms
+frontend.navtiming2.ssl.by_country.France:110|ms
+frontend.navtiming2.domComplete.mobile.anonymous:2185|ms
+frontend.navtiming2.domComplete.mobile.overall:2185|ms
+frontend.navtiming2.domComplete.overall:2185|ms
+frontend.navtiming2.domComplete.by_browser.Chrome_Mobile.49:2185|ms
+frontend.navtiming2.domComplete.by_browser.Chrome_Mobile.all:2185|ms
+frontend.navtiming2.domComplete.by_continent.Europe:2185|ms
+frontend.navtiming2.domComplete.by_country.France:2185|ms
+frontend.navtiming2.domInteractive.mobile.anonymous:868|ms
+frontend.navtiming2.domInteractive.mobile.overall:868|ms
+frontend.navtiming2.domInteractive.overall:868|ms
+frontend.navtiming2.domInteractive.by_browser.Chrome_Mobile.49:868|ms
+frontend.navtiming2.domInteractive.by_browser.Chrome_Mobile.all:868|ms
+frontend.navtiming2.domInteractive.by_continent.Europe:868|ms
+frontend.navtiming2.domInteractive.by_country.France:868|ms
+frontend.navtiming.sslNegotiation.mobile.anonymous:116|ms
+frontend.navtiming.sslNegotiation.mobile.overall:116|ms
+frontend.navtiming.sslNegotiation.overall:116|ms
+frontend.navtiming.sslNegotiation.by_browser.Mobile_Safari.10_0:116|ms
+frontend.navtiming.sslNegotiation.by_browser.Mobile_Safari.all:116|ms
+frontend.navtiming.sslNegotiation.by_continent.Europe:116|ms
+frontend.navtiming.sslNegotiation.by_country.France:116|ms
+frontend.navtiming2.onLoad.mobile.anonymous:16|ms
+frontend.navtiming2.onLoad.mobile.overall:16|ms
+frontend.navtiming2.onLoad.overall:16|ms
+frontend.navtiming2.onLoad.by_browser.Mobile_Safari.10_0:16|ms
+frontend.navtiming2.onLoad.by_browser.Mobile_Safari.all:16|ms
+frontend.navtiming2.onLoad.by_continent.Europe:16|ms
+frontend.navtiming2.onLoad.by_country.France:16|ms
+frontend.navtiming2.request.mobile.anonymous:54|ms
+frontend.navtiming2.request.mobile.overall:54|ms
+frontend.navtiming2.request.overall:54|ms
+frontend.navtiming2.request.by_browser.Mobile_Safari.10_0:54|ms
+frontend.navtiming2.request.by_browser.Mobile_Safari.all:54|ms
+frontend.navtiming2.request.by_continent.Europe:54|ms
+frontend.navtiming2.request.by_country.France:54|ms
+frontend.navtiming2.tcp.mobile.anonymous:162|ms
+frontend.navtiming2.tcp.mobile.overall:162|ms
+frontend.navtiming2.tcp.overall:162|ms
+frontend.navtiming2.tcp.by_browser.Mobile_Safari.10_0:162|ms
+frontend.navtiming2.tcp.by_browser.Mobile_Safari.all:162|ms
+frontend.navtiming2.tcp.by_continent.Europe:162|ms
+frontend.navtiming2.tcp.by_country.France:162|ms
+frontend.navtiming2.loadEventEnd.mobile.anonymous:1623|ms
+frontend.navtiming2.loadEventEnd.mobile.overall:1623|ms
+frontend.navtiming2.loadEventEnd.overall:1623|ms
+frontend.navtiming2.loadEventEnd.by_browser.Mobile_Safari.10_0:1623|ms
+frontend.navtiming2.loadEventEnd.by_browser.Mobile_Safari.all:1623|ms
+frontend.navtiming2.loadEventEnd.by_continent.Europe:1623|ms
+frontend.navtiming2.loadEventEnd.by_country.France:1623|ms
+frontend.navtiming2.ssl.mobile.anonymous:116|ms
+frontend.navtiming2.ssl.mobile.overall:116|ms
+frontend.navtiming2.ssl.overall:116|ms
+frontend.navtiming2.ssl.by_browser.Mobile_Safari.10_0:116|ms
+frontend.navtiming2.ssl.by_browser.Mobile_Safari.all:116|ms
+frontend.navtiming2.ssl.by_continent.Europe:116|ms
+frontend.navtiming2.ssl.by_country.France:116|ms
+frontend.navtiming2.domComplete.mobile.anonymous:1607|ms
+frontend.navtiming2.domComplete.mobile.overall:1607|ms
+frontend.navtiming2.domComplete.overall:1607|ms
+frontend.navtiming2.domComplete.by_browser.Mobile_Safari.10_0:1607|ms
+frontend.navtiming2.domComplete.by_browser.Mobile_Safari.all:1607|ms
+frontend.navtiming2.domComplete.by_continent.Europe:1607|ms
+frontend.navtiming2.domComplete.by_country.France:1607|ms
+frontend.navtiming2.domInteractive.mobile.anonymous:561|ms
+frontend.navtiming2.domInteractive.mobile.overall:561|ms
+frontend.navtiming2.domInteractive.overall:561|ms
+frontend.navtiming2.domInteractive.by_browser.Mobile_Safari.10_0:561|ms
+frontend.navtiming2.domInteractive.by_browser.Mobile_Safari.all:561|ms
+frontend.navtiming2.domInteractive.by_continent.Europe:561|ms
+frontend.navtiming2.domInteractive.by_country.France:561|ms
+frontend.navtiming.loadEventStart.mobile.anonymous:2880|ms
+frontend.navtiming.loadEventStart.mobile.overall:2880|ms
+frontend.navtiming.loadEventStart.overall:2880|ms
+frontend.navtiming.loadEventStart.by_browser.Chrome_Mobile.57:2880|ms
+frontend.navtiming.loadEventStart.by_browser.Chrome_Mobile.all:2880|ms
+frontend.navtiming.loadEventStart.by_continent.South_America:2880|ms
+frontend.navtiming.loadEventStart.by_country.Argentina:2880|ms
+frontend.navtiming.mediaWikiLoadComplete.mobile.anonymous:3129|ms
+frontend.navtiming.mediaWikiLoadComplete.mobile.overall:3129|ms
+frontend.navtiming.mediaWikiLoadComplete.overall:3129|ms
+frontend.navtiming.mediaWikiLoadComplete.by_browser.Chrome_Mobile.57:3129|ms
+frontend.navtiming.mediaWikiLoadComplete.by_browser.Chrome_Mobile.all:3129|ms
+frontend.navtiming.mediaWikiLoadComplete.by_continent.South_America:3129|ms
+frontend.navtiming.mediaWikiLoadComplete.by_country.Argentina:3129|ms
+frontend.navtiming.dnsLookup.by_continent.South_America:0|ms
+frontend.navtiming.dnsLookup.by_country.Argentina:0|ms
+frontend.navtiming.firstPaint.mobile.anonymous:2858|ms
+frontend.navtiming.firstPaint.mobile.overall:2858|ms
+frontend.navtiming.firstPaint.overall:2858|ms
+frontend.navtiming.firstPaint.by_browser.Chrome_Mobile.57:2858|ms
+frontend.navtiming.firstPaint.by_browser.Chrome_Mobile.all:2858|ms
+frontend.navtiming.firstPaint.by_continent.South_America:2858|ms
+frontend.navtiming.firstPaint.by_country.Argentina:2858|ms
+frontend.navtiming.loadEventEnd.mobile.anonymous:2880|ms
+frontend.navtiming.loadEventEnd.mobile.overall:2880|ms
+frontend.navtiming.loadEventEnd.overall:2880|ms
+frontend.navtiming.loadEventEnd.by_browser.Chrome_Mobile.57:2880|ms
+frontend.navtiming.loadEventEnd.by_browser.Chrome_Mobile.all:2880|ms
+frontend.navtiming.loadEventEnd.by_continent.South_America:2880|ms
+frontend.navtiming.loadEventEnd.by_country.Argentina:2880|ms
+frontend.navtiming.waiting.mobile.anonymous:206|ms
+frontend.navtiming.waiting.mobile.overall:206|ms
+frontend.navtiming.waiting.overall:206|ms
+frontend.navtiming.waiting.by_browser.Chrome_Mobile.57:206|ms
+frontend.navtiming.waiting.by_browser.Chrome_Mobile.all:206|ms
frontend.navtiming.waiting.by_continent.South_America:206|ms
frontend.navtiming.waiting.by_country.Argentina:206|ms
-frontend.navtiming.waiting.by_country.Canada:71|ms
-frontend.navtiming.waiting.by_country.France:196|ms
-frontend.navtiming.waiting.by_country.Italy:102|ms
-frontend.navtiming.waiting.by_country.United_Kingdom:231|ms
-frontend.navtiming.waiting.by_country.United_Kingdom:624|ms
-frontend.navtiming.waiting.desktop.anonymous:196|ms
-frontend.navtiming.waiting.desktop.anonymous:231|ms
-frontend.navtiming.waiting.desktop.overall:196|ms
-frontend.navtiming.waiting.desktop.overall:231|ms
-frontend.navtiming.waiting.mobile.anonymous:102|ms
-frontend.navtiming.waiting.mobile.anonymous:206|ms
-frontend.navtiming.waiting.mobile.anonymous:624|ms
+frontend.navtiming.connecting.by_continent.South_America:0|ms
+frontend.navtiming.connecting.by_country.Argentina:0|ms
+frontend.navtiming.fetchStart.mobile.anonymous:2|ms
+frontend.navtiming.fetchStart.mobile.overall:2|ms
+frontend.navtiming.fetchStart.overall:2|ms
+frontend.navtiming.fetchStart.by_browser.Chrome_Mobile.57:2|ms
+frontend.navtiming.fetchStart.by_browser.Chrome_Mobile.all:2|ms
+frontend.navtiming.fetchStart.by_continent.South_America:2|ms
+frontend.navtiming.fetchStart.by_country.Argentina:2|ms
+frontend.navtiming.domComplete.mobile.anonymous:2880|ms
+frontend.navtiming.domComplete.mobile.overall:2880|ms
+frontend.navtiming.domComplete.overall:2880|ms
+frontend.navtiming.domComplete.by_browser.Chrome_Mobile.57:2880|ms
+frontend.navtiming.domComplete.by_browser.Chrome_Mobile.all:2880|ms
+frontend.navtiming.domComplete.by_continent.South_America:2880|ms
+frontend.navtiming.domComplete.by_country.Argentina:2880|ms
+frontend.navtiming.receiving.mobile.anonymous:10|ms
+frontend.navtiming.receiving.mobile.overall:10|ms
+frontend.navtiming.receiving.overall:10|ms
+frontend.navtiming.receiving.by_browser.Chrome_Mobile.57:10|ms
+frontend.navtiming.receiving.by_browser.Chrome_Mobile.all:10|ms
+frontend.navtiming.receiving.by_continent.South_America:10|ms
+frontend.navtiming.receiving.by_country.Argentina:10|ms
+frontend.navtiming.responseStart.mobile.anonymous:349|ms
+frontend.navtiming.responseStart.mobile.overall:349|ms
+frontend.navtiming.responseStart.overall:349|ms
+frontend.navtiming.responseStart.by_browser.Chrome_Mobile.57:349|ms
+frontend.navtiming.responseStart.by_browser.Chrome_Mobile.all:349|ms
+frontend.navtiming.responseStart.by_continent.South_America:349|ms
+frontend.navtiming.responseStart.by_country.Argentina:349|ms
+frontend.navtiming.domInteractive.mobile.anonymous:2867|ms
+frontend.navtiming.domInteractive.mobile.overall:2867|ms
+frontend.navtiming.domInteractive.overall:2867|ms
+frontend.navtiming.domInteractive.by_browser.Chrome_Mobile.57:2867|ms
+frontend.navtiming.domInteractive.by_browser.Chrome_Mobile.all:2867|ms
+frontend.navtiming.domInteractive.by_continent.South_America:2867|ms
+frontend.navtiming.domInteractive.by_country.Argentina:2867|ms
+frontend.navtiming2.onLoad.mobile.anonymous:0|ms
+frontend.navtiming2.onLoad.mobile.overall:0|ms
+frontend.navtiming2.onLoad.overall:0|ms
+frontend.navtiming2.onLoad.by_browser.Chrome_Mobile.57:0|ms
+frontend.navtiming2.onLoad.by_browser.Chrome_Mobile.all:0|ms
+frontend.navtiming2.onLoad.by_continent.South_America:0|ms
+frontend.navtiming2.onLoad.by_country.Argentina:0|ms
+frontend.navtiming2.firstPaint.mobile.anonymous:2856|ms
+frontend.navtiming2.firstPaint.mobile.overall:2856|ms
+frontend.navtiming2.firstPaint.overall:2856|ms
+frontend.navtiming2.firstPaint.by_browser.Chrome_Mobile.57:2856|ms
+frontend.navtiming2.firstPaint.by_browser.Chrome_Mobile.all:2856|ms
+frontend.navtiming2.firstPaint.by_continent.South_America:2856|ms
+frontend.navtiming2.firstPaint.by_country.Argentina:2856|ms
+frontend.navtiming2.request.mobile.anonymous:206|ms
+frontend.navtiming2.request.mobile.overall:206|ms
+frontend.navtiming2.request.overall:206|ms
+frontend.navtiming2.request.by_browser.Chrome_Mobile.57:206|ms
+frontend.navtiming2.request.by_browser.Chrome_Mobile.all:206|ms
+frontend.navtiming2.request.by_continent.South_America:206|ms
+frontend.navtiming2.request.by_country.Argentina:206|ms
+frontend.navtiming2.tcp.mobile.anonymous:0|ms
+frontend.navtiming2.tcp.mobile.overall:0|ms
+frontend.navtiming2.tcp.overall:0|ms
+frontend.navtiming2.tcp.by_browser.Chrome_Mobile.57:0|ms
+frontend.navtiming2.tcp.by_browser.Chrome_Mobile.all:0|ms
+frontend.navtiming2.tcp.by_continent.South_America:0|ms
+frontend.navtiming2.tcp.by_country.Argentina:0|ms
+frontend.navtiming2.loadEventEnd.mobile.anonymous:2878|ms
+frontend.navtiming2.loadEventEnd.mobile.overall:2878|ms
+frontend.navtiming2.loadEventEnd.overall:2878|ms
+frontend.navtiming2.loadEventEnd.by_browser.Chrome_Mobile.57:2878|ms
+frontend.navtiming2.loadEventEnd.by_browser.Chrome_Mobile.all:2878|ms
+frontend.navtiming2.loadEventEnd.by_continent.South_America:2878|ms
+frontend.navtiming2.loadEventEnd.by_country.Argentina:2878|ms
+frontend.navtiming2.domComplete.mobile.anonymous:2878|ms
+frontend.navtiming2.domComplete.mobile.overall:2878|ms
+frontend.navtiming2.domComplete.overall:2878|ms
+frontend.navtiming2.domComplete.by_browser.Chrome_Mobile.57:2878|ms
+frontend.navtiming2.domComplete.by_browser.Chrome_Mobile.all:2878|ms
+frontend.navtiming2.domComplete.by_continent.South_America:2878|ms
+frontend.navtiming2.domComplete.by_country.Argentina:2878|ms
+frontend.navtiming2.domInteractive.mobile.anonymous:2865|ms
+frontend.navtiming2.domInteractive.mobile.overall:2865|ms
+frontend.navtiming2.domInteractive.overall:2865|ms
+frontend.navtiming2.domInteractive.by_browser.Chrome_Mobile.57:2865|ms
+frontend.navtiming2.domInteractive.by_browser.Chrome_Mobile.all:2865|ms
+frontend.navtiming2.domInteractive.by_continent.South_America:2865|ms
+frontend.navtiming2.domInteractive.by_country.Argentina:2865|ms
+frontend.navtiming.loadEventStart.mobile.anonymous:456|ms
+frontend.navtiming.loadEventStart.mobile.overall:456|ms
+frontend.navtiming.loadEventStart.overall:456|ms
+frontend.navtiming.loadEventStart.by_browser.Other._:456|ms
+frontend.navtiming.loadEventStart.by_browser.Other.all:456|ms
+frontend.navtiming.loadEventStart.by_continent.North_America:456|ms
+frontend.navtiming.loadEventStart.by_country.Canada:456|ms
+frontend.navtiming.dnsLookup.by_continent.North_America:0|ms
+frontend.navtiming.dnsLookup.by_country.Canada:0|ms
+frontend.navtiming.mediaWikiLoadComplete.mobile.anonymous:1625|ms
+frontend.navtiming.mediaWikiLoadComplete.mobile.overall:1625|ms
+frontend.navtiming.mediaWikiLoadComplete.overall:1625|ms
+frontend.navtiming.mediaWikiLoadComplete.by_browser.Other._:1625|ms
+frontend.navtiming.mediaWikiLoadComplete.by_browser.Other.all:1625|ms
+frontend.navtiming.mediaWikiLoadComplete.by_continent.North_America:1625|ms
+frontend.navtiming.mediaWikiLoadComplete.by_country.Canada:1625|ms
+frontend.navtiming.loadEventEnd.mobile.anonymous:479|ms
+frontend.navtiming.loadEventEnd.mobile.overall:479|ms
+frontend.navtiming.loadEventEnd.overall:479|ms
+frontend.navtiming.loadEventEnd.by_browser.Other._:479|ms
+frontend.navtiming.loadEventEnd.by_browser.Other.all:479|ms
+frontend.navtiming.loadEventEnd.by_continent.North_America:479|ms
+frontend.navtiming.loadEventEnd.by_country.Canada:479|ms
frontend.navtiming.waiting.mobile.anonymous:71|ms
-frontend.navtiming.waiting.mobile.overall:102|ms
-frontend.navtiming.waiting.mobile.overall:206|ms
-frontend.navtiming.waiting.mobile.overall:624|ms
frontend.navtiming.waiting.mobile.overall:71|ms
-frontend.navtiming.waiting.overall:102|ms
-frontend.navtiming.waiting.overall:196|ms
-frontend.navtiming.waiting.overall:206|ms
-frontend.navtiming.waiting.overall:231|ms
-frontend.navtiming.waiting.overall:624|ms
frontend.navtiming.waiting.overall:71|ms
-mw.performance.save:1042|ms
+frontend.navtiming.waiting.by_browser.Other._:71|ms
+frontend.navtiming.waiting.by_browser.Other.all:71|ms
+frontend.navtiming.waiting.by_continent.North_America:71|ms
+frontend.navtiming.waiting.by_country.Canada:71|ms
+frontend.navtiming.connecting.by_continent.North_America:0|ms
+frontend.navtiming.connecting.by_country.Canada:0|ms
+frontend.navtiming.fetchStart.mobile.anonymous:1|ms
+frontend.navtiming.fetchStart.mobile.overall:1|ms
+frontend.navtiming.fetchStart.overall:1|ms
+frontend.navtiming.fetchStart.by_browser.Other._:1|ms
+frontend.navtiming.fetchStart.by_browser.Other.all:1|ms
+frontend.navtiming.fetchStart.by_continent.North_America:1|ms
+frontend.navtiming.fetchStart.by_country.Canada:1|ms
+frontend.navtiming.domComplete.mobile.anonymous:455|ms
+frontend.navtiming.domComplete.mobile.overall:455|ms
+frontend.navtiming.domComplete.overall:455|ms
+frontend.navtiming.domComplete.by_browser.Other._:455|ms
+frontend.navtiming.domComplete.by_browser.Other.all:455|ms
+frontend.navtiming.domComplete.by_continent.North_America:455|ms
+frontend.navtiming.domComplete.by_country.Canada:455|ms
+frontend.navtiming.receiving.mobile.anonymous:51|ms
+frontend.navtiming.receiving.mobile.overall:51|ms
+frontend.navtiming.receiving.overall:51|ms
+frontend.navtiming.receiving.by_browser.Other._:51|ms
+frontend.navtiming.receiving.by_browser.Other.all:51|ms
+frontend.navtiming.receiving.by_continent.North_America:51|ms
+frontend.navtiming.receiving.by_country.Canada:51|ms
+frontend.navtiming.responseStart.mobile.anonymous:92|ms
+frontend.navtiming.responseStart.mobile.overall:92|ms
+frontend.navtiming.responseStart.overall:92|ms
+frontend.navtiming.responseStart.by_browser.Other._:92|ms
+frontend.navtiming.responseStart.by_browser.Other.all:92|ms
+frontend.navtiming.responseStart.by_continent.North_America:92|ms
+frontend.navtiming.responseStart.by_country.Canada:92|ms
+frontend.navtiming.domInteractive.mobile.anonymous:266|ms
+frontend.navtiming.domInteractive.mobile.overall:266|ms
+frontend.navtiming.domInteractive.overall:266|ms
+frontend.navtiming.domInteractive.by_browser.Other._:266|ms
+frontend.navtiming.domInteractive.by_browser.Other.all:266|ms
+frontend.navtiming.domInteractive.by_continent.North_America:266|ms
+frontend.navtiming.domInteractive.by_country.Canada:266|ms
+frontend.navtiming2.onLoad.mobile.anonymous:23|ms
+frontend.navtiming2.onLoad.mobile.overall:23|ms
+frontend.navtiming2.onLoad.overall:23|ms
+frontend.navtiming2.onLoad.by_browser.Other._:23|ms
+frontend.navtiming2.onLoad.by_browser.Other.all:23|ms
+frontend.navtiming2.onLoad.by_continent.North_America:23|ms
+frontend.navtiming2.onLoad.by_country.Canada:23|ms
+frontend.navtiming2.request.mobile.anonymous:71|ms
+frontend.navtiming2.request.mobile.overall:71|ms
+frontend.navtiming2.request.overall:71|ms
+frontend.navtiming2.request.by_browser.Other._:71|ms
+frontend.navtiming2.request.by_browser.Other.all:71|ms
+frontend.navtiming2.request.by_continent.North_America:71|ms
+frontend.navtiming2.request.by_country.Canada:71|ms
+frontend.navtiming2.tcp.mobile.anonymous:0|ms
+frontend.navtiming2.tcp.mobile.overall:0|ms
+frontend.navtiming2.tcp.overall:0|ms
+frontend.navtiming2.tcp.by_browser.Other._:0|ms
+frontend.navtiming2.tcp.by_browser.Other.all:0|ms
+frontend.navtiming2.tcp.by_continent.North_America:0|ms
+frontend.navtiming2.tcp.by_country.Canada:0|ms
+frontend.navtiming2.loadEventEnd.mobile.anonymous:478|ms
+frontend.navtiming2.loadEventEnd.mobile.overall:478|ms
+frontend.navtiming2.loadEventEnd.overall:478|ms
+frontend.navtiming2.loadEventEnd.by_browser.Other._:478|ms
+frontend.navtiming2.loadEventEnd.by_browser.Other.all:478|ms
+frontend.navtiming2.loadEventEnd.by_continent.North_America:478|ms
+frontend.navtiming2.loadEventEnd.by_country.Canada:478|ms
+frontend.navtiming2.domComplete.mobile.anonymous:454|ms
+frontend.navtiming2.domComplete.mobile.overall:454|ms
+frontend.navtiming2.domComplete.overall:454|ms
+frontend.navtiming2.domComplete.by_browser.Other._:454|ms
+frontend.navtiming2.domComplete.by_browser.Other.all:454|ms
+frontend.navtiming2.domComplete.by_continent.North_America:454|ms
+frontend.navtiming2.domComplete.by_country.Canada:454|ms
+frontend.navtiming2.domInteractive.mobile.anonymous:265|ms
+frontend.navtiming2.domInteractive.mobile.overall:265|ms
+frontend.navtiming2.domInteractive.overall:265|ms
+frontend.navtiming2.domInteractive.by_browser.Other._:265|ms
+frontend.navtiming2.domInteractive.by_browser.Other.all:265|ms
+frontend.navtiming2.domInteractive.by_continent.North_America:265|ms
+frontend.navtiming2.domInteractive.by_country.Canada:265|ms
+frontend.navtiming.loadEventStart.mobile.anonymous:5924|ms
+frontend.navtiming.loadEventStart.mobile.overall:5924|ms
+frontend.navtiming.loadEventStart.overall:5924|ms
+frontend.navtiming.loadEventStart.by_browser.Chrome_Mobile.59:5924|ms
+frontend.navtiming.loadEventStart.by_browser.Chrome_Mobile.all:5924|ms
+frontend.navtiming.loadEventStart.by_continent.Europe:5924|ms
+frontend.navtiming.loadEventStart.by_country.Italy:5924|ms
+frontend.navtiming.mediaWikiLoadComplete.mobile.anonymous:1697|ms
+frontend.navtiming.mediaWikiLoadComplete.mobile.overall:1697|ms
+frontend.navtiming.mediaWikiLoadComplete.overall:1697|ms
+frontend.navtiming.mediaWikiLoadComplete.by_browser.Chrome_Mobile.59:1697|ms
+frontend.navtiming.mediaWikiLoadComplete.by_browser.Chrome_Mobile.all:1697|ms
+frontend.navtiming.mediaWikiLoadComplete.by_continent.Europe:1697|ms
+frontend.navtiming.mediaWikiLoadComplete.by_country.Italy:1697|ms
+frontend.navtiming.dnsLookup.by_continent.Europe:0|ms
+frontend.navtiming.dnsLookup.by_country.Italy:0|ms
+frontend.navtiming.firstPaint.mobile.anonymous:424|ms
+frontend.navtiming.firstPaint.mobile.overall:424|ms
+frontend.navtiming.firstPaint.overall:424|ms
+frontend.navtiming.firstPaint.by_browser.Chrome_Mobile.59:424|ms
+frontend.navtiming.firstPaint.by_browser.Chrome_Mobile.all:424|ms
+frontend.navtiming.firstPaint.by_continent.Europe:424|ms
+frontend.navtiming.firstPaint.by_country.Italy:424|ms
+frontend.navtiming.loadEventEnd.mobile.anonymous:5925|ms
+frontend.navtiming.loadEventEnd.mobile.overall:5925|ms
+frontend.navtiming.loadEventEnd.overall:5925|ms
+frontend.navtiming.loadEventEnd.by_browser.Chrome_Mobile.59:5925|ms
+frontend.navtiming.loadEventEnd.by_browser.Chrome_Mobile.all:5925|ms
+frontend.navtiming.loadEventEnd.by_continent.Europe:5925|ms
+frontend.navtiming.loadEventEnd.by_country.Italy:5925|ms
+frontend.navtiming.waiting.mobile.anonymous:102|ms
+frontend.navtiming.waiting.mobile.overall:102|ms
+frontend.navtiming.waiting.overall:102|ms
+frontend.navtiming.waiting.by_browser.Chrome_Mobile.59:102|ms
+frontend.navtiming.waiting.by_browser.Chrome_Mobile.all:102|ms
+frontend.navtiming.waiting.by_continent.Europe:102|ms
+frontend.navtiming.waiting.by_country.Italy:102|ms
+frontend.navtiming.connecting.by_continent.Europe:0|ms
+frontend.navtiming.connecting.by_country.Italy:0|ms
+frontend.navtiming.fetchStart.mobile.anonymous:170|ms
+frontend.navtiming.fetchStart.mobile.overall:170|ms
+frontend.navtiming.fetchStart.overall:170|ms
+frontend.navtiming.fetchStart.by_browser.Chrome_Mobile.59:170|ms
+frontend.navtiming.fetchStart.by_browser.Chrome_Mobile.all:170|ms
+frontend.navtiming.fetchStart.by_continent.Europe:170|ms
+frontend.navtiming.fetchStart.by_country.Italy:170|ms
+frontend.navtiming.domComplete.mobile.anonymous:5921|ms
+frontend.navtiming.domComplete.mobile.overall:5921|ms
+frontend.navtiming.domComplete.overall:5921|ms
+frontend.navtiming.domComplete.by_browser.Chrome_Mobile.59:5921|ms
+frontend.navtiming.domComplete.by_browser.Chrome_Mobile.all:5921|ms
+frontend.navtiming.domComplete.by_continent.Europe:5921|ms
+frontend.navtiming.domComplete.by_country.Italy:5921|ms
+frontend.navtiming.receiving.mobile.anonymous:709|ms
+frontend.navtiming.receiving.mobile.overall:709|ms
+frontend.navtiming.receiving.overall:709|ms
+frontend.navtiming.receiving.by_browser.Chrome_Mobile.59:709|ms
+frontend.navtiming.receiving.by_browser.Chrome_Mobile.all:709|ms
+frontend.navtiming.receiving.by_continent.Europe:709|ms
+frontend.navtiming.receiving.by_country.Italy:709|ms
+frontend.navtiming.responseStart.mobile.anonymous:280|ms
+frontend.navtiming.responseStart.mobile.overall:280|ms
+frontend.navtiming.responseStart.overall:280|ms
+frontend.navtiming.responseStart.by_browser.Chrome_Mobile.59:280|ms
+frontend.navtiming.responseStart.by_browser.Chrome_Mobile.all:280|ms
+frontend.navtiming.responseStart.by_continent.Europe:280|ms
+frontend.navtiming.responseStart.by_country.Italy:280|ms
+frontend.navtiming.domInteractive.mobile.anonymous:1818|ms
+frontend.navtiming.domInteractive.mobile.overall:1818|ms
+frontend.navtiming.domInteractive.overall:1818|ms
+frontend.navtiming.domInteractive.by_browser.Chrome_Mobile.59:1818|ms
+frontend.navtiming.domInteractive.by_browser.Chrome_Mobile.all:1818|ms
+frontend.navtiming.domInteractive.by_continent.Europe:1818|ms
+frontend.navtiming.domInteractive.by_country.Italy:1818|ms
+frontend.navtiming2.onLoad.mobile.anonymous:1|ms
+frontend.navtiming2.onLoad.mobile.overall:1|ms
+frontend.navtiming2.onLoad.overall:1|ms
+frontend.navtiming2.onLoad.by_browser.Chrome_Mobile.59:1|ms
+frontend.navtiming2.onLoad.by_browser.Chrome_Mobile.all:1|ms
+frontend.navtiming2.onLoad.by_continent.Europe:1|ms
+frontend.navtiming2.onLoad.by_country.Italy:1|ms
+frontend.navtiming2.firstPaint.mobile.anonymous:254|ms
+frontend.navtiming2.firstPaint.mobile.overall:254|ms
+frontend.navtiming2.firstPaint.overall:254|ms
+frontend.navtiming2.firstPaint.by_browser.Chrome_Mobile.59:254|ms
+frontend.navtiming2.firstPaint.by_browser.Chrome_Mobile.all:254|ms
+frontend.navtiming2.firstPaint.by_continent.Europe:254|ms
+frontend.navtiming2.firstPaint.by_country.Italy:254|ms
+frontend.navtiming2.request.mobile.anonymous:102|ms
+frontend.navtiming2.request.mobile.overall:102|ms
+frontend.navtiming2.request.overall:102|ms
+frontend.navtiming2.request.by_browser.Chrome_Mobile.59:102|ms
+frontend.navtiming2.request.by_browser.Chrome_Mobile.all:102|ms
+frontend.navtiming2.request.by_continent.Europe:102|ms
+frontend.navtiming2.request.by_country.Italy:102|ms
+frontend.navtiming2.tcp.mobile.anonymous:0|ms
+frontend.navtiming2.tcp.mobile.overall:0|ms
+frontend.navtiming2.tcp.overall:0|ms
+frontend.navtiming2.tcp.by_browser.Chrome_Mobile.59:0|ms
+frontend.navtiming2.tcp.by_browser.Chrome_Mobile.all:0|ms
+frontend.navtiming2.tcp.by_continent.Europe:0|ms
+frontend.navtiming2.tcp.by_country.Italy:0|ms
+frontend.navtiming2.loadEventEnd.mobile.anonymous:5755|ms
+frontend.navtiming2.loadEventEnd.mobile.overall:5755|ms
+frontend.navtiming2.loadEventEnd.overall:5755|ms
+frontend.navtiming2.loadEventEnd.by_browser.Chrome_Mobile.59:5755|ms
+frontend.navtiming2.loadEventEnd.by_browser.Chrome_Mobile.all:5755|ms
+frontend.navtiming2.loadEventEnd.by_continent.Europe:5755|ms
+frontend.navtiming2.loadEventEnd.by_country.Italy:5755|ms
+frontend.navtiming2.domComplete.mobile.anonymous:5751|ms
+frontend.navtiming2.domComplete.mobile.overall:5751|ms
+frontend.navtiming2.domComplete.overall:5751|ms
+frontend.navtiming2.domComplete.by_browser.Chrome_Mobile.59:5751|ms
+frontend.navtiming2.domComplete.by_browser.Chrome_Mobile.all:5751|ms
+frontend.navtiming2.domComplete.by_continent.Europe:5751|ms
+frontend.navtiming2.domComplete.by_country.Italy:5751|ms
+frontend.navtiming2.domInteractive.mobile.anonymous:1648|ms
+frontend.navtiming2.domInteractive.mobile.overall:1648|ms
+frontend.navtiming2.domInteractive.overall:1648|ms
+frontend.navtiming2.domInteractive.by_browser.Chrome_Mobile.59:1648|ms
+frontend.navtiming2.domInteractive.by_browser.Chrome_Mobile.all:1648|ms
+frontend.navtiming2.domInteractive.by_continent.Europe:1648|ms
+frontend.navtiming2.domInteractive.by_country.Italy:1648|ms
+frontend.navtiming.dnsLookup.by_continent.North_America:0|ms
+frontend.navtiming.dnsLookup.by_country.United_States:0|ms
+frontend.navtiming.mediaWikiLoadComplete.mobile.anonymous:131|ms
+frontend.navtiming.mediaWikiLoadComplete.mobile.overall:131|ms
+frontend.navtiming.mediaWikiLoadComplete.overall:131|ms
+frontend.navtiming.mediaWikiLoadComplete.by_browser.Mobile_Safari.10_0:131|ms
+frontend.navtiming.mediaWikiLoadComplete.by_browser.Mobile_Safari.all:131|ms
+frontend.navtiming.mediaWikiLoadComplete.by_continent.North_America:131|ms
+frontend.navtiming.mediaWikiLoadComplete.by_country.United_States:131|ms
+frontend.navtiming.loadEventEnd.mobile.anonymous:350|ms
+frontend.navtiming.loadEventEnd.mobile.overall:350|ms
+frontend.navtiming.loadEventEnd.overall:350|ms
+frontend.navtiming.loadEventEnd.by_browser.Mobile_Safari.10_0:350|ms
+frontend.navtiming.loadEventEnd.by_browser.Mobile_Safari.all:350|ms
+frontend.navtiming.loadEventEnd.by_continent.North_America:350|ms
+frontend.navtiming.loadEventEnd.by_country.United_States:350|ms
+frontend.navtiming.loadEventStart.mobile.anonymous:343|ms
+frontend.navtiming.loadEventStart.mobile.overall:343|ms
+frontend.navtiming.loadEventStart.overall:343|ms
+frontend.navtiming.loadEventStart.by_browser.Mobile_Safari.10_0:343|ms
+frontend.navtiming.loadEventStart.by_browser.Mobile_Safari.all:343|ms
+frontend.navtiming.loadEventStart.by_continent.North_America:343|ms
+frontend.navtiming.loadEventStart.by_country.United_States:343|ms
+frontend.navtiming.domComplete.mobile.anonymous:343|ms
+frontend.navtiming.domComplete.mobile.overall:343|ms
+frontend.navtiming.domComplete.overall:343|ms
+frontend.navtiming.domComplete.by_browser.Mobile_Safari.10_0:343|ms
+frontend.navtiming.domComplete.by_browser.Mobile_Safari.all:343|ms
+frontend.navtiming.domComplete.by_continent.North_America:343|ms
+frontend.navtiming.domComplete.by_country.United_States:343|ms
+frontend.navtiming.receiving.mobile.anonymous:37|ms
+frontend.navtiming.receiving.mobile.overall:37|ms
+frontend.navtiming.receiving.overall:37|ms
+frontend.navtiming.receiving.by_browser.Mobile_Safari.10_0:37|ms
+frontend.navtiming.receiving.by_browser.Mobile_Safari.all:37|ms
+frontend.navtiming.receiving.by_continent.North_America:37|ms
+frontend.navtiming.receiving.by_country.United_States:37|ms
+frontend.navtiming.responseStart.mobile.anonymous:124|ms
+frontend.navtiming.responseStart.mobile.overall:124|ms
+frontend.navtiming.responseStart.overall:124|ms
+frontend.navtiming.responseStart.by_browser.Mobile_Safari.10_0:124|ms
+frontend.navtiming.responseStart.by_browser.Mobile_Safari.all:124|ms
+frontend.navtiming.responseStart.by_continent.North_America:124|ms
+frontend.navtiming.responseStart.by_country.United_States:124|ms
+frontend.navtiming.domInteractive.mobile.anonymous:204|ms
+frontend.navtiming.domInteractive.mobile.overall:204|ms
+frontend.navtiming.domInteractive.overall:204|ms
+frontend.navtiming.domInteractive.by_browser.Mobile_Safari.10_0:204|ms
+frontend.navtiming.domInteractive.by_browser.Mobile_Safari.all:204|ms
+frontend.navtiming.domInteractive.by_continent.North_America:204|ms
+frontend.navtiming.domInteractive.by_country.United_States:204|ms
+frontend.navtiming2.onLoad.mobile.anonymous:7|ms
+frontend.navtiming2.onLoad.mobile.overall:7|ms
+frontend.navtiming2.onLoad.overall:7|ms
+frontend.navtiming2.onLoad.by_browser.Mobile_Safari.10_0:7|ms
+frontend.navtiming2.onLoad.by_browser.Mobile_Safari.all:7|ms
+frontend.navtiming2.onLoad.by_continent.North_America:7|ms
+frontend.navtiming2.onLoad.by_country.United_States:7|ms
+frontend.navtiming2.domComplete.mobile.anonymous:343|ms
+frontend.navtiming2.domComplete.mobile.overall:343|ms
+frontend.navtiming2.domComplete.overall:343|ms
+frontend.navtiming2.domComplete.by_browser.Mobile_Safari.10_0:343|ms
+frontend.navtiming2.domComplete.by_browser.Mobile_Safari.all:343|ms
+frontend.navtiming2.domComplete.by_continent.North_America:343|ms
+frontend.navtiming2.domComplete.by_country.United_States:343|ms
+frontend.navtiming2.domInteractive.mobile.anonymous:204|ms
+frontend.navtiming2.domInteractive.mobile.overall:204|ms
+frontend.navtiming2.domInteractive.overall:204|ms
+frontend.navtiming2.domInteractive.by_browser.Mobile_Safari.10_0:204|ms
+frontend.navtiming2.domInteractive.by_browser.Mobile_Safari.all:204|ms
+frontend.navtiming2.domInteractive.by_continent.North_America:204|ms
+frontend.navtiming2.domInteractive.by_country.United_States:204|ms
+frontend.navtiming2.loadEventEnd.mobile.anonymous:350|ms
+frontend.navtiming2.loadEventEnd.mobile.overall:350|ms
+frontend.navtiming2.loadEventEnd.overall:350|ms
+frontend.navtiming2.loadEventEnd.by_browser.Mobile_Safari.10_0:350|ms
+frontend.navtiming2.loadEventEnd.by_browser.Mobile_Safari.all:350|ms
+frontend.navtiming2.loadEventEnd.by_continent.North_America:350|ms
+frontend.navtiming2.loadEventEnd.by_country.United_States:350|ms
+frontend.navtiming.dnsLookup.by_continent.Europe:0|ms
+frontend.navtiming.dnsLookup.by_country.United_Kingdom:0|ms
+frontend.navtiming.mediaWikiLoadComplete.mobile.anonymous:1253|ms
+frontend.navtiming.mediaWikiLoadComplete.mobile.overall:1253|ms
+frontend.navtiming.mediaWikiLoadComplete.overall:1253|ms
+frontend.navtiming.mediaWikiLoadComplete.by_browser.Mobile_Safari.10_0:1253|ms
+frontend.navtiming.mediaWikiLoadComplete.by_browser.Mobile_Safari.all:1253|ms
+frontend.navtiming.mediaWikiLoadComplete.by_continent.Europe:1253|ms
+frontend.navtiming.mediaWikiLoadComplete.by_country.United_Kingdom:1253|ms
+frontend.navtiming.loadEventEnd.mobile.anonymous:2427|ms
+frontend.navtiming.loadEventEnd.mobile.overall:2427|ms
+frontend.navtiming.loadEventEnd.overall:2427|ms
+frontend.navtiming.loadEventEnd.by_browser.Mobile_Safari.10_0:2427|ms
+frontend.navtiming.loadEventEnd.by_browser.Mobile_Safari.all:2427|ms
+frontend.navtiming.loadEventEnd.by_continent.Europe:2427|ms
+frontend.navtiming.loadEventEnd.by_country.United_Kingdom:2427|ms
+frontend.navtiming.waiting.mobile.anonymous:624|ms
+frontend.navtiming.waiting.mobile.overall:624|ms
+frontend.navtiming.waiting.overall:624|ms
+frontend.navtiming.waiting.by_browser.Mobile_Safari.10_0:624|ms
+frontend.navtiming.waiting.by_browser.Mobile_Safari.all:624|ms
+frontend.navtiming.waiting.by_continent.Europe:624|ms
+frontend.navtiming.waiting.by_country.United_Kingdom:624|ms
+frontend.navtiming.loadEventStart.mobile.anonymous:2381|ms
+frontend.navtiming.loadEventStart.mobile.overall:2381|ms
+frontend.navtiming.loadEventStart.overall:2381|ms
+frontend.navtiming.loadEventStart.by_browser.Mobile_Safari.10_0:2381|ms
+frontend.navtiming.loadEventStart.by_browser.Mobile_Safari.all:2381|ms
+frontend.navtiming.loadEventStart.by_continent.Europe:2381|ms
+frontend.navtiming.loadEventStart.by_country.United_Kingdom:2381|ms
+frontend.navtiming.domComplete.mobile.anonymous:2381|ms
+frontend.navtiming.domComplete.mobile.overall:2381|ms
+frontend.navtiming.domComplete.overall:2381|ms
+frontend.navtiming.domComplete.by_browser.Mobile_Safari.10_0:2381|ms
+frontend.navtiming.domComplete.by_browser.Mobile_Safari.all:2381|ms
+frontend.navtiming.domComplete.by_continent.Europe:2381|ms
+frontend.navtiming.domComplete.by_country.United_Kingdom:2381|ms
+frontend.navtiming.receiving.mobile.anonymous:208|ms
+frontend.navtiming.receiving.mobile.overall:208|ms
+frontend.navtiming.receiving.overall:208|ms
+frontend.navtiming.receiving.by_browser.Mobile_Safari.10_0:208|ms
+frontend.navtiming.receiving.by_browser.Mobile_Safari.all:208|ms
+frontend.navtiming.receiving.by_continent.Europe:208|ms
+frontend.navtiming.receiving.by_country.United_Kingdom:208|ms
+frontend.navtiming.responseStart.mobile.anonymous:625|ms
+frontend.navtiming.responseStart.mobile.overall:625|ms
+frontend.navtiming.responseStart.overall:625|ms
+frontend.navtiming.responseStart.by_browser.Mobile_Safari.10_0:625|ms
+frontend.navtiming.responseStart.by_browser.Mobile_Safari.all:625|ms
+frontend.navtiming.responseStart.by_continent.Europe:625|ms
+frontend.navtiming.responseStart.by_country.United_Kingdom:625|ms
+frontend.navtiming.domInteractive.mobile.anonymous:1072|ms
+frontend.navtiming.domInteractive.mobile.overall:1072|ms
+frontend.navtiming.domInteractive.overall:1072|ms
+frontend.navtiming.domInteractive.by_browser.Mobile_Safari.10_0:1072|ms
+frontend.navtiming.domInteractive.by_browser.Mobile_Safari.all:1072|ms
+frontend.navtiming.domInteractive.by_continent.Europe:1072|ms
+frontend.navtiming.domInteractive.by_country.United_Kingdom:1072|ms
+frontend.navtiming2.onLoad.mobile.anonymous:46|ms
+frontend.navtiming2.onLoad.mobile.overall:46|ms
+frontend.navtiming2.onLoad.overall:46|ms
+frontend.navtiming2.onLoad.by_browser.Mobile_Safari.10_0:46|ms
+frontend.navtiming2.onLoad.by_browser.Mobile_Safari.all:46|ms
+frontend.navtiming2.onLoad.by_continent.Europe:46|ms
+frontend.navtiming2.onLoad.by_country.United_Kingdom:46|ms
+frontend.navtiming2.domComplete.mobile.anonymous:2381|ms
+frontend.navtiming2.domComplete.mobile.overall:2381|ms
+frontend.navtiming2.domComplete.overall:2381|ms
+frontend.navtiming2.domComplete.by_browser.Mobile_Safari.10_0:2381|ms
+frontend.navtiming2.domComplete.by_browser.Mobile_Safari.all:2381|ms
+frontend.navtiming2.domComplete.by_continent.Europe:2381|ms
+frontend.navtiming2.domComplete.by_country.United_Kingdom:2381|ms
+frontend.navtiming2.request.mobile.anonymous:624|ms
+frontend.navtiming2.request.mobile.overall:624|ms
+frontend.navtiming2.request.overall:624|ms
+frontend.navtiming2.request.by_browser.Mobile_Safari.10_0:624|ms
+frontend.navtiming2.request.by_browser.Mobile_Safari.all:624|ms
+frontend.navtiming2.request.by_continent.Europe:624|ms
+frontend.navtiming2.request.by_country.United_Kingdom:624|ms
+frontend.navtiming2.domInteractive.mobile.anonymous:1072|ms
+frontend.navtiming2.domInteractive.mobile.overall:1072|ms
+frontend.navtiming2.domInteractive.overall:1072|ms
+frontend.navtiming2.domInteractive.by_browser.Mobile_Safari.10_0:1072|ms
+frontend.navtiming2.domInteractive.by_browser.Mobile_Safari.all:1072|ms
+frontend.navtiming2.domInteractive.by_continent.Europe:1072|ms
+frontend.navtiming2.domInteractive.by_country.United_Kingdom:1072|ms
+frontend.navtiming2.loadEventEnd.mobile.anonymous:2427|ms
+frontend.navtiming2.loadEventEnd.mobile.overall:2427|ms
+frontend.navtiming2.loadEventEnd.overall:2427|ms
+frontend.navtiming2.loadEventEnd.by_browser.Mobile_Safari.10_0:2427|ms
+frontend.navtiming2.loadEventEnd.by_browser.Mobile_Safari.all:2427|ms
+frontend.navtiming2.loadEventEnd.by_continent.Europe:2427|ms
+frontend.navtiming2.loadEventEnd.by_country.United_Kingdom:2427|ms
+frontend.navtiming.sslNegotiation.mobile.anonymous:1285|ms
+frontend.navtiming.sslNegotiation.mobile.overall:1285|ms
+frontend.navtiming.sslNegotiation.overall:1285|ms
+frontend.navtiming.sslNegotiation.by_browser.Chrome_Mobile.59:1285|ms
+frontend.navtiming.sslNegotiation.by_browser.Chrome_Mobile.all:1285|ms
+frontend.navtiming.sslNegotiation.by_continent.Europe:1285|ms
+frontend.navtiming.sslNegotiation.by_country.Germany:1285|ms
+frontend.navtiming2.onLoad.mobile.anonymous:81|ms
+frontend.navtiming2.onLoad.mobile.overall:81|ms
+frontend.navtiming2.onLoad.overall:81|ms
+frontend.navtiming2.onLoad.by_browser.Chrome_Mobile.59:81|ms
+frontend.navtiming2.onLoad.by_browser.Chrome_Mobile.all:81|ms
+frontend.navtiming2.onLoad.by_continent.Europe:81|ms
+frontend.navtiming2.onLoad.by_country.Germany:81|ms
+frontend.navtiming2.firstPaint.mobile.anonymous:5496|ms
+frontend.navtiming2.firstPaint.mobile.overall:5496|ms
+frontend.navtiming2.firstPaint.overall:5496|ms
+frontend.navtiming2.firstPaint.by_browser.Chrome_Mobile.59:5496|ms
+frontend.navtiming2.firstPaint.by_browser.Chrome_Mobile.all:5496|ms
+frontend.navtiming2.firstPaint.by_continent.Europe:5496|ms
+frontend.navtiming2.firstPaint.by_country.Germany:5496|ms
+frontend.navtiming2.request.mobile.anonymous:418|ms
+frontend.navtiming2.request.mobile.overall:418|ms
+frontend.navtiming2.request.overall:418|ms
+frontend.navtiming2.request.by_browser.Chrome_Mobile.59:418|ms
+frontend.navtiming2.request.by_browser.Chrome_Mobile.all:418|ms
+frontend.navtiming2.request.by_continent.Europe:418|ms
+frontend.navtiming2.request.by_country.Germany:418|ms
+frontend.navtiming2.tcp.mobile.anonymous:1708|ms
+frontend.navtiming2.tcp.mobile.overall:1708|ms
+frontend.navtiming2.tcp.overall:1708|ms
+frontend.navtiming2.tcp.by_browser.Chrome_Mobile.59:1708|ms
+frontend.navtiming2.tcp.by_browser.Chrome_Mobile.all:1708|ms
+frontend.navtiming2.tcp.by_continent.Europe:1708|ms
+frontend.navtiming2.tcp.by_country.Germany:1708|ms
+frontend.navtiming2.loadEventEnd.mobile.anonymous:10089|ms
+frontend.navtiming2.loadEventEnd.mobile.overall:10089|ms
+frontend.navtiming2.loadEventEnd.overall:10089|ms
+frontend.navtiming2.loadEventEnd.by_browser.Chrome_Mobile.59:10089|ms
+frontend.navtiming2.loadEventEnd.by_browser.Chrome_Mobile.all:10089|ms
+frontend.navtiming2.loadEventEnd.by_continent.Europe:10089|ms
+frontend.navtiming2.loadEventEnd.by_country.Germany:10089|ms
+frontend.navtiming2.ssl.mobile.anonymous:1285|ms
+frontend.navtiming2.ssl.mobile.overall:1285|ms
+frontend.navtiming2.ssl.overall:1285|ms
+frontend.navtiming2.ssl.by_browser.Chrome_Mobile.59:1285|ms
+frontend.navtiming2.ssl.by_browser.Chrome_Mobile.all:1285|ms
+frontend.navtiming2.ssl.by_continent.Europe:1285|ms
+frontend.navtiming2.ssl.by_country.Germany:1285|ms
+frontend.navtiming2.domComplete.mobile.anonymous:10008|ms
+frontend.navtiming2.domComplete.mobile.overall:10008|ms
+frontend.navtiming2.domComplete.overall:10008|ms
+frontend.navtiming2.domComplete.by_browser.Chrome_Mobile.59:10008|ms
+frontend.navtiming2.domComplete.by_browser.Chrome_Mobile.all:10008|ms
+frontend.navtiming2.domComplete.by_continent.Europe:10008|ms
+frontend.navtiming2.domComplete.by_country.Germany:10008|ms
+frontend.navtiming2.domInteractive.mobile.anonymous:5500|ms
+frontend.navtiming2.domInteractive.mobile.overall:5500|ms
+frontend.navtiming2.domInteractive.overall:5500|ms
+frontend.navtiming2.domInteractive.by_browser.Chrome_Mobile.59:5500|ms
+frontend.navtiming2.domInteractive.by_browser.Chrome_Mobile.all:5500|ms
+frontend.navtiming2.domInteractive.by_continent.Europe:5500|ms
+frontend.navtiming2.domInteractive.by_country.Germany:5500|ms
mw.performance.save:1452|ms
-mw.performance.save:2193|ms
-mw.performance.save:2495|ms
-mw.performance.save:2526|ms
-mw.performance.save:2729|ms
-mw.performance.save:620|ms
-mw.performance.save:627|ms
-mw.performance.save:636|ms
-mw.performance.save_by_version.1_30_0-wmf_14:1042|ms
mw.performance.save_by_version.1_30_0-wmf_14:1452|ms
-mw.performance.save_by_version.1_30_0-wmf_14:2193|ms
-mw.performance.save_by_version.1_30_0-wmf_14:2495|ms
-mw.performance.save_by_version.1_30_0-wmf_14:2526|ms
-mw.performance.save_by_version.1_30_0-wmf_14:2729|ms
-mw.performance.save_by_version.1_30_0-wmf_14:620|ms
+frontend.navtiming.dnsLookup.by_continent.Europe:0|ms
+frontend.navtiming.dnsLookup.by_country.United_Kingdom:0|ms
+frontend.navtiming.mediaWikiLoadComplete.desktop.anonymous:4920|ms
+frontend.navtiming.mediaWikiLoadComplete.desktop.overall:4920|ms
+frontend.navtiming.mediaWikiLoadComplete.overall:4920|ms
+frontend.navtiming.mediaWikiLoadComplete.by_browser.iOS_other.8:4920|ms
+frontend.navtiming.mediaWikiLoadComplete.by_browser.iOS_other.all:4920|ms
+frontend.navtiming.mediaWikiLoadComplete.by_continent.Europe:4920|ms
+frontend.navtiming.mediaWikiLoadComplete.by_country.United_Kingdom:4920|ms
+frontend.navtiming.loadEventEnd.desktop.anonymous:5899|ms
+frontend.navtiming.loadEventEnd.desktop.overall:5899|ms
+frontend.navtiming.loadEventEnd.overall:5899|ms
+frontend.navtiming.loadEventEnd.by_browser.iOS_other.8:5899|ms
+frontend.navtiming.loadEventEnd.by_browser.iOS_other.all:5899|ms
+frontend.navtiming.loadEventEnd.by_continent.Europe:5899|ms
+frontend.navtiming.loadEventEnd.by_country.United_Kingdom:5899|ms
+frontend.navtiming.waiting.desktop.anonymous:231|ms
+frontend.navtiming.waiting.desktop.overall:231|ms
+frontend.navtiming.waiting.overall:231|ms
+frontend.navtiming.waiting.by_browser.iOS_other.8:231|ms
+frontend.navtiming.waiting.by_browser.iOS_other.all:231|ms
+frontend.navtiming.waiting.by_continent.Europe:231|ms
+frontend.navtiming.waiting.by_country.United_Kingdom:231|ms
+frontend.navtiming.loadEventStart.desktop.anonymous:5513|ms
+frontend.navtiming.loadEventStart.desktop.overall:5513|ms
+frontend.navtiming.loadEventStart.overall:5513|ms
+frontend.navtiming.loadEventStart.by_browser.iOS_other.8:5513|ms
+frontend.navtiming.loadEventStart.by_browser.iOS_other.all:5513|ms
+frontend.navtiming.loadEventStart.by_continent.Europe:5513|ms
+frontend.navtiming.loadEventStart.by_country.United_Kingdom:5513|ms
+frontend.navtiming.domComplete.desktop.anonymous:5513|ms
+frontend.navtiming.domComplete.desktop.overall:5513|ms
+frontend.navtiming.domComplete.overall:5513|ms
+frontend.navtiming.domComplete.by_browser.iOS_other.8:5513|ms
+frontend.navtiming.domComplete.by_browser.iOS_other.all:5513|ms
+frontend.navtiming.domComplete.by_continent.Europe:5513|ms
+frontend.navtiming.domComplete.by_country.United_Kingdom:5513|ms
+frontend.navtiming.receiving.desktop.anonymous:338|ms
+frontend.navtiming.receiving.desktop.overall:338|ms
+frontend.navtiming.receiving.overall:338|ms
+frontend.navtiming.receiving.by_browser.iOS_other.8:338|ms
+frontend.navtiming.receiving.by_browser.iOS_other.all:338|ms
+frontend.navtiming.receiving.by_continent.Europe:338|ms
+frontend.navtiming.receiving.by_country.United_Kingdom:338|ms
+frontend.navtiming.responseStart.desktop.anonymous:232|ms
+frontend.navtiming.responseStart.desktop.overall:232|ms
+frontend.navtiming.responseStart.overall:232|ms
+frontend.navtiming.responseStart.by_browser.iOS_other.8:232|ms
+frontend.navtiming.responseStart.by_browser.iOS_other.all:232|ms
+frontend.navtiming.responseStart.by_continent.Europe:232|ms
+frontend.navtiming.responseStart.by_country.United_Kingdom:232|ms
+frontend.navtiming.domInteractive.desktop.anonymous:715|ms
+frontend.navtiming.domInteractive.desktop.overall:715|ms
+frontend.navtiming.domInteractive.overall:715|ms
+frontend.navtiming.domInteractive.by_browser.iOS_other.8:715|ms
+frontend.navtiming.domInteractive.by_browser.iOS_other.all:715|ms
+frontend.navtiming.domInteractive.by_continent.Europe:715|ms
+frontend.navtiming.domInteractive.by_country.United_Kingdom:715|ms
+frontend.navtiming2.onLoad.desktop.anonymous:386|ms
+frontend.navtiming2.onLoad.desktop.overall:386|ms
+frontend.navtiming2.onLoad.overall:386|ms
+frontend.navtiming2.onLoad.by_browser.iOS_other.8:386|ms
+frontend.navtiming2.onLoad.by_browser.iOS_other.all:386|ms
+frontend.navtiming2.onLoad.by_continent.Europe:386|ms
+frontend.navtiming2.onLoad.by_country.United_Kingdom:386|ms
+frontend.navtiming2.domComplete.desktop.anonymous:5513|ms
+frontend.navtiming2.domComplete.desktop.overall:5513|ms
+frontend.navtiming2.domComplete.overall:5513|ms
+frontend.navtiming2.domComplete.by_browser.iOS_other.8:5513|ms
+frontend.navtiming2.domComplete.by_browser.iOS_other.all:5513|ms
+frontend.navtiming2.domComplete.by_continent.Europe:5513|ms
+frontend.navtiming2.domComplete.by_country.United_Kingdom:5513|ms
+frontend.navtiming2.request.desktop.anonymous:231|ms
+frontend.navtiming2.request.desktop.overall:231|ms
+frontend.navtiming2.request.overall:231|ms
+frontend.navtiming2.request.by_browser.iOS_other.8:231|ms
+frontend.navtiming2.request.by_browser.iOS_other.all:231|ms
+frontend.navtiming2.request.by_continent.Europe:231|ms
+frontend.navtiming2.request.by_country.United_Kingdom:231|ms
+frontend.navtiming2.domInteractive.desktop.anonymous:715|ms
+frontend.navtiming2.domInteractive.desktop.overall:715|ms
+frontend.navtiming2.domInteractive.overall:715|ms
+frontend.navtiming2.domInteractive.by_browser.iOS_other.8:715|ms
+frontend.navtiming2.domInteractive.by_browser.iOS_other.all:715|ms
+frontend.navtiming2.domInteractive.by_continent.Europe:715|ms
+frontend.navtiming2.domInteractive.by_country.United_Kingdom:715|ms
+frontend.navtiming2.loadEventEnd.desktop.anonymous:5899|ms
+frontend.navtiming2.loadEventEnd.desktop.overall:5899|ms
+frontend.navtiming2.loadEventEnd.overall:5899|ms
+frontend.navtiming2.loadEventEnd.by_browser.iOS_other.8:5899|ms
+frontend.navtiming2.loadEventEnd.by_browser.iOS_other.all:5899|ms
+frontend.navtiming2.loadEventEnd.by_continent.Europe:5899|ms
+frontend.navtiming2.loadEventEnd.by_country.United_Kingdom:5899|ms
+mw.performance.save:627|ms
mw.performance.save_by_version.1_30_0-wmf_14:627|ms
-mw.performance.save_by_version.1_30_0-wmf_14:636|ms
--
To view, visit https://gerrit.wikimedia.org/r/375345
To unsubscribe, visit https://gerrit.wikimedia.org/r/settings
Gerrit-MessageType: newchange
Gerrit-Change-Id: I56a890bfd5838ed2537953d42e5f82d7e70ced42
Gerrit-PatchSet: 1
Gerrit-Project: operations/puppet
Gerrit-Branch: production
Gerrit-Owner: Phedenskog <[email protected]>
_______________________________________________
MediaWiki-commits mailing list
[email protected]
https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits