Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

disk cache hit is not recorded in the HAR file #947

Closed
gogo9th opened this issue Sep 23, 2019 · 16 comments
Closed

disk cache hit is not recorded in the HAR file #947

gogo9th opened this issue Sep 23, 2019 · 16 comments

Comments

@gogo9th
Copy link

gogo9th commented Sep 23, 2019

Hi,

I am building an efficient web proxy and I need to record how many URLs are hit from the disk or memory cache from inside the browser. However, browsertime seems to omit those URLs that are disk/memory-hit. I wonder if you could change the HAR file format to include the disk/memory hit URLs as well...

Another issue is that I try to run browsertime from a Ubuntu Emulator (Linux on Dex) but browsertime doesn't run on an older version of chromium that does not have ARM-compatible chromedriver. I wonder if there's any way for us to run browsertime without requiring chromedriver (e.g., exclude speed index computation).

Thanks a lot for your help.

@soulgalore
Copy link
Member

Hi @gogo9th sorry I missed this issue.

disk/memory hit URLs

This was discussed a couple of years ago in the issues but I don't remember the outcome. Let me have a look early the coming week.

browsertime without requiring chromedriver

Yes you can skip the installation of Chromedriver set process.env.CHROMEDRIVER_SKIP_DOWNLOAD when you install, see https://github.com/sitespeedio/chromedriver

Best
Peter

@soulgalore
Copy link
Member

I've added an example in the docs on how to skip installing:
https://www.sitespeed.io/documentation/sitespeed.io/installation/#skip-installing-chromedrivergeckodriver

It's the same way if you use Browsertime.

@soulgalore
Copy link
Member

Hi @gogo9th do you use Chrome or Firefox?

For Firefox we used to strip out those cache hits because of an upstream bug in the Firefox/Har exporter where they wasn't marked as cache hits firebug/har-export-trigger#36 - but now we use the new HAR Exporter and I need to investigate how that works, I don't remember.

For Chrome its configurable but we have hidden that configuration (to include the cache hits), let me add that so at least you as a user can choose.

@gogo9th
Copy link
Author

gogo9th commented Oct 6, 2019

Hi, thanks very much for taking care of the issue of disk hit recordings and chromdriver skipping.

About the chromedriver skipping, the issue was not only non installing chromedriver, but making browsertime run without using chromedriver. Currently if I don't install chromedriver as shown in your example webpage, browsertime doesn't run properly. But I thought chromedriver would be needed only for computing speed index (not necessary for computing page loadtime), so I was wondering if it's possible to let browsertime run without chromedriver and without speedindex computation..

@soulgalore
Copy link
Member

Hi, Chromedriver drives Chrome (see http://chromedriver.chromium.org), so if you skip it you cannot use Chrome but you can run Firefox (for example if you are on a ARM setup). To collect Visual Metrics we use https://github.com/WPO-Foundation/visualmetrics. By default using npm Visual metrics isn't used, you need to enable it with --visualMetrics

Best
Peter

@gogo9th
Copy link
Author

gogo9th commented Oct 7, 2019

Hi Peter, thanks for your clarification. Meanwhile, I found another potential issue that doesn't work as I expect:

node ../node_modules/browsertime/bin/browsertime.js --chrome.includeResponseBodies all -n 1 https://www.google.com

... After running this command, the HAR file doesn't print any contents of downloaded objects under ['response']['content']['text']. But if I change "all" to "html", the HAR file contains only html contents. So I think the "all" option is not properly working.

@soulgalore
Copy link
Member

Hi @gogo9th did you see f you got a redirect for https://www.google.com ? I tried it a couple of days ago but then it worked for me. Did you get any error log? If we try to get the HTML and do not find any matching responses, we log.

Best
Peter

@gogo9th
Copy link
Author

gogo9th commented Oct 9, 2019

Hi Peter,

If I run the following:

node node_modules/browsertime/bin/browsertime.js --chrome.includeResponseBodies all -n 1 https://www.google.com

I get the following HAR output, which doesn't include any "text" field for any URLs:

:Desktop/expose_runner2$ node node_modules/browsertime/bin/browsertime.js --chrome.includeResponseBodies all -n 1 https://www.google.com
[2019-10-09 18:36:09] INFO: Running tests using Chrome - 1 iteration(s)
[2019-10-09 18:36:10] INFO: Testing url https://www.google.com iteration 1
[2019-10-09 18:36:16] INFO: https://www.google.com 19 requests, 433.96 kb, backEndTime: 285ms, firstPaint: 428ms, DOMContentLoaded: 482ms, Load: 1.22s, rumSpeedIndex: 432
[2019-10-09 18:36:16] INFO: Wrote data to browsertime-results/www.google.com/2019-10-09T183608-0400

{
"log": {
"version": "1.2",
"creator": {
"name": "chrome-har",
"version": "0.9.1",
"comment": "https://github.com/sitespeedio/chrome-har"
},
"pages": [{
"id": "page_1",
"startedDateTime": "2019-10-09T22:36:10.193Z",
"title": "https://www.google.com run 1",
"pageTimings": {
"onContentLoad": 481.789,
"onLoad": 1222.029,
"_firstPaint": 428,
"_domInteractiveTime": 482,
"_domContentLoadedTime": 482
},
"_url": "https://www.google.com",
"_meta": {
"connectivity": "native"
},
"_visualMetrics": {}
}],
"entries": [{
"cache": {},
"startedDateTime": "2019-10-09T22:36:10.195Z",
"_initialPriority": "VeryHigh",
"_priority": "VeryHigh",
"pageref": "page_1",
"request": {
"method": "GET",
"url": "https://www.google.com/",
"queryString": [],
"headersSize": -1,
"bodySize": 0,
"cookies": [],
"headers": [{
"name": ":authority",
"value": "www.google.com"
}, {
"name": ":method",
"value": "GET"
}, {
"name": ":path",
"value": "/"
}, {
"name": ":scheme",
"value": "https"
}, {
"name": "accept",
"value": "text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,image/apng,/;q=0.8,application/signed-exchange;v=b3"
}, {
"name": "accept-encoding",
"value": "gzip, deflate, br"
}, {
"name": "accept-language",
"value": "en-US,en;q=0.9"
}, {
"name": "sec-fetch-mode",
"value": "navigate"
}, {
"name": "sec-fetch-site",
"value": "cross-site"
}, {
"name": "upgrade-insecure-requests",
"value": "1"
}, {
"name": "user-agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/76.0.3809.100 Chrome/76.0.3809.100 Safari/537.36"
}],
"httpVersion": "h2"
},
"time": 372.72200000000004,
"_initiator_detail": "{"stack":{"callFrames":[{"columnNumber":29,"functionName":"","lineNumber":369,"scriptId":"16","url":""}]},"type":"script"}",
"_initiator_type": "script",
"_initiator": "",
"_initiator_line": 370,
"_initiator_column": 30,
"_initiator_function_name": "",
"_initiator_script_id": "16",
"response": {
"httpVersion": "h2",
"redirectURL": "",
"status": 200,
"statusText": "",
"content": {
"mimeType": "text/html",
"size": 222935,
"compression": 157341
},
"headersSize": -1,
"bodySize": 65594,
"cookies": [{
"name": "1P_JAR",
"value": "2019-10-09-22",
"path": "/",
"domain": "google.com",
"expires": "2019-11-08T22:36:10.000Z",
"httpOnly": false,
"secure": false
}, {
"name": "NID",
"value": "189=aKqKmzPo-LLmIlOloVZw77-HKwvNjGysg4DrHM5KSDQdgigWeOO20YN__UgNBYoTPfa2HMxjX82ps4KIJvYJ6eukDqSIUV4Yax0OWmhxVhALNTcvLTt1Jw0toF8RFJvUpoBshno2Rezp3qIdWXG1tbAmJN0Xje9Adgwhg7xQiTc",
"path": "/",
"domain": "google.com",
"expires": "2020-04-09T22:36:10.000Z",
"httpOnly": true,
"secure": false
}],
"headers": [{
"name": "alt-svc",
"value": "quic=":443"; ma=2592000; v="46,43",h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000"
}, {
"name": "cache-control",
"value": "private, max-age=0"
}, {
"name": "content-encoding",
"value": "br"
}, {
"name": "content-length",
"value": "64926"
}, {
"name": "content-type",
"value": "text/html; charset=UTF-8"
}, {
"name": "date",
"value": "Wed, 09 Oct 2019 22:36:10 GMT"
}, {
"name": "expires",
"value": "-1"
}, {
"name": "p3p",
"value": "CP="This is not a P3P policy! See g.co/p3phelp for more info.""
}, {
"name": "server",
"value": "gws"
}, {
"name": "set-cookie",
"value": "1P_JAR=2019-10-09-22; expires=Fri, 08-Nov-2019 22:36:10 GMT; path=/; domain=.google.com; SameSite=none\nNID=189=aKqKmzPo-LLmIlOloVZw77-HKwvNjGysg4DrHM5KSDQdgigWeOO20YN__UgNBYoTPfa2HMxjX82ps4KIJvYJ6eukDqSIUV4Yax0OWmhxVhALNTcvLTt1Jw0toF8RFJvUpoBshno2Rezp3qIdWXG1tbAmJN0Xje9Adgwhg7xQiTc; expires=Thu, 09-Apr-2020 22:36:10 GMT; path=/; domain=.google.com; HttpOnly"
}, {
"name": "status",
"value": "200"
}, {
"name": "strict-transport-security",
"value": "max-age=31536000"
}, {
"name": "x-frame-options",
"value": "SAMEORIGIN"
}, {
"name": "x-xss-protection",
"value": "0"
}],
"_transferSize": 65594
},
"connection": "32",
"serverIPAddress": "172.217.10.132",
"timings": {
"blocked": 0,
"dns": 0,
"connect": 99.145,
"send": 0.065,
"wait": 173.234,
"receive": 100.278,
"ssl": 77.125,
"_queued": 1.894
},
"_requestTime": 3833.625874
}, {
"cache": {},
"startedDateTime": "2019-10-09T22:36:10.542Z",
"_initialPriority": "Low",
"_priority": "Low",
"pageref": "page_1",
"request": {
"method": "GET",
"url": "https://www.google.com/images/branding/googlelogo/1x/googlelogo_color_272x92dp.png",
"queryString": [],
"headersSize": -1,
"bodySize": 0,
"cookies": [],
"headers": [{
"name": "Referer",
"value": "https://www.google.com/"
}, {
"name": "Sec-Fetch-Mode",
"value": "no-cors"
}, {
"name": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/76.0.3809.100 Chrome/76.0.3809.100 Safari/537.36"
}],
"httpVersion": "h2"
},
"time": 41.534,
"_initiator_detail": "{"lineNumber":92,"type":"parser","url":"https://www.google.com/"}",
"_initiator_type": "parser",
"_initiator": "https://www.google.com/",
"_initiator_line": 93,
"response": {
"httpVersion": "h2",
"redirectURL": "",
"status": 200,
"statusText": "",
"content": {
"mimeType": "image/png",
"size": 5969
},
"headersSize": -1,
"bodySize": 6144,
"cookies": [],
"headers": [{
"name": "accept-ranges",
"value": "bytes"
}, {
"name": "alt-svc",
"value": "quic=":443"; ma=2592000; v="46,43",h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000"
}, {
"name": "cache-control",
"value": "private, max-age=31536000"
}, {
"name": "content-length",
"value": "5969"
}, {
"name": "content-type",
"value": "image/png"
}, {
"name": "date",
"value": "Wed, 09 Oct 2019 22:36:10 GMT"
}, {
"name": "expires",
"value": "Wed, 09 Oct 2019 22:36:10 GMT"
}, {
"name": "last-modified",
"value": "Thu, 08 Dec 2016 01:00:57 GMT"
}, {
"name": "server",
"value": "sffe"
}, {
"name": "status",
"value": "200"
}, {
"name": "x-content-type-options",
"value": "nosniff"
}, {
"name": "x-xss-protection",
"value": "0"
}],
"_transferSize": 6144
},
"connection": "32",
"serverIPAddress": "172.217.10.132",
"timings": {
"blocked": 0.43,
"dns": -1,
"connect": -1,
"send": 0.18,
"wait": 38.022,
"receive": 2.902,
"ssl": -1,
"_queued": 0.724
},
"_requestTime": 3833.972883
}, {
"cache": {},
"startedDateTime": "2019-10-09T22:36:10.609Z",
"_initialPriority": "VeryHigh",
"_priority": "VeryHigh",
"pageref": "page_1",
"request": {
"method": "GET",
"url": "https://fonts.gstatic.com/s/roboto/v18/KFOmCnqEu92Fr1Mu4mxK.woff2",
"queryString": [],
"headersSize": -1,
"bodySize": 0,
"cookies": [],
"headers": [{
"name": "Origin",
"value": "https://www.google.com"
}, {
"name": "Referer",
"value": "https://www.google.com/"
}, {
"name": "Sec-Fetch-Mode",
"value": "cors"
}, {
"name": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/76.0.3809.100 Chrome/76.0.3809.100 Safari/537.36"
}],
"httpVersion": "h2"
},
"time": 430.40900000000005,
"_initiator_detail": "{"stack":{"callFrames":[{"columnNumber":12962,"functionName":"a","lineNumber":90,"scriptId":"14","url":"https://www.google.com/"},{"columnNumber":13156,"functionName":"","lineNumber":90,"scriptId":"14","url":"https://www.google.com/"},{"columnNumber":13162,"functionName":"","lineNumber":90,"scriptId":"14","url":"https://www.google.com/"}]},"type":"script"}",
"_initiator_type": "script",
"_initiator": "https://www.google.com/",
"_initiator_line": 91,
"_initiator_column": 12963,
"_initiator_function_name": "a",
"_initiator_script_id": "14",
"response": {
"httpVersion": "h2",
"redirectURL": "",
"status": 200,
"statusText": "",
"content": {
"mimeType": "font/woff2",
"size": 15344
},
"headersSize": -1,
"bodySize": 15655,
"cookies": [],
"headers": [{
"name": "accept-ranges",
"value": "bytes"
}, {
"name": "access-control-allow-origin",
"value": ""
}, {
"name": "age",
"value": "70679"
}, {
"name": "alt-svc",
"value": "quic=":443"; ma=2592000; v="46,43",h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000"
}, {
"name": "cache-control",
"value": "public, max-age=31536000"
}, {
"name": "content-length",
"value": "15344"
}, {
"name": "content-type",
"value": "font/woff2"
}, {
"name": "date",
"value": "Wed, 09 Oct 2019 02:58:11 GMT"
}, {
"name": "expires",
"value": "Thu, 08 Oct 2020 02:58:11 GMT"
}, {
"name": "last-modified",
"value": "Mon, 16 Oct 2017 17:32:55 GMT"
}, {
"name": "server",
"value": "sffe"
}, {
"name": "status",
"value": "200"
}, {
"name": "timing-allow-origin",
"value": "
"
}, {
"name": "x-content-type-options",
"value": "nosniff"
}, {
"name": "x-xss-protection",
"value": "0"
}],
"_transferSize": 15655
},
"connection": "65",
"serverIPAddress": "172.217.11.3",
"timings": {
"blocked": 0.164,
"dns": 0.722,
"connect": 106.933,
"send": 0.154,
"wait": 321.869,
"receive": 0.567,
"ssl": 67.293,
"_queued": 50.67
},
"_requestTime": 3834.040253
}, {
"cache": {},
"startedDateTime": "2019-10-09T22:36:10.610Z",
"_initialPriority": "VeryHigh",
"_priority": "VeryHigh",
"pageref": "page_1",
"request": {
"method": "GET",
"url": "https://fonts.gstatic.com/s/roboto/v18/KFOlCnqEu92Fr1MmWUlfBBc4.woff2",
"queryString": [],
"headersSize": -1,
"bodySize": 0,
"cookies": [],
"headers": [{
"name": "Origin",
"value": "https://www.google.com"
}, {
"name": "Referer",
"value": "https://www.google.com/"
}, {
"name": "Sec-Fetch-Mode",
"value": "cors"
}, {
"name": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/76.0.3809.100 Chrome/76.0.3809.100 Safari/537.36"
}],
"httpVersion": "h2"
},
"time": 431.977,
"_initiator_detail": "{"stack":{"callFrames":[{"columnNumber":12962,"functionName":"a","lineNumber":90,"scriptId":"14","url":"https://www.google.com/"},{"columnNumber":13156,"functionName":"","lineNumber":90,"scriptId":"14","url":"https://www.google.com/"},{"columnNumber":13162,"functionName":"","lineNumber":90,"scriptId":"14","url":"https://www.google.com/"}]},"type":"script"}",
"_initiator_type": "script",
"_initiator": "https://www.google.com/",
"_initiator_line": 91,
"_initiator_column": 12963,
"_initiator_function_name": "a",
"_initiator_script_id": "14",
"response": {
"httpVersion": "h2",
"redirectURL": "",
"status": 200,
"statusText": "",
"content": {
"mimeType": "font/woff2",
"size": 15436
},
"headersSize": -1,
"bodySize": 15553,
"cookies": [],
"headers": [{
"name": "accept-ranges",
"value": "bytes"
}, {
"name": "access-control-allow-origin",
"value": ""
}, {
"name": "age",
"value": "132194"
}, {
"name": "alt-svc",
"value": "quic=":443"; ma=2592000; v="46,43",h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000"
}, {
"name": "cache-control",
"value": "public, max-age=31536000"
}, {
"name": "content-length",
"value": "15436"
}, {
"name": "content-type",
"value": "font/woff2"
}, {
"name": "date",
"value": "Tue, 08 Oct 2019 09:52:56 GMT"
}, {
"name": "expires",
"value": "Wed, 07 Oct 2020 09:52:56 GMT"
}, {
"name": "last-modified",
"value": "Mon, 16 Oct 2017 17:33:12 GMT"
}, {
"name": "server",
"value": "sffe"
}, {
"name": "status",
"value": "200"
}, {
"name": "timing-allow-origin",
"value": "
"
}, {
"name": "x-content-type-options",
"value": "nosniff"
}, {
"name": "x-xss-protection",
"value": "0"
}],
"_transferSize": 15553
},
"connection": "65",
"serverIPAddress": "172.217.11.3",
"timings": {
"blocked": 108.858,
"dns": -1,
"connect": -1,
"send": 0.114,
"wait": 322.621,
"receive": 0.384,
"ssl": -1,
"_queued": 44.989
},
"_requestTime": 3834.040582
}, {
"cache": {},
"startedDateTime": "2019-10-09T22:36:10.569Z",
"_initialPriority": "Low",
"_priority": "High",
"pageref": "page_1",
"request": {
"method": "GET",
"url": "https://ssl.gstatic.com/gb/images/i2_2ec824b0.png",
"queryString": [],
"headersSize": -1,
"bodySize": 0,
"cookies": [],
"headers": [{
"name": "Referer",
"value": "https://www.google.com/"
}, {
"name": "Sec-Fetch-Mode",
"value": "no-cors"
}, {
"name": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/76.0.3809.100 Chrome/76.0.3809.100 Safari/537.36"
}],
"httpVersion": "h2"
},
"time": 410.626,
"_initiator_detail": "{"lineNumber":90,"type":"parser","url":"https://www.google.com/"}",
"_initiator_type": "parser",
"_initiator": "https://www.google.com/",
"_initiator_line": 91,
"response": {
"httpVersion": "h2",
"redirectURL": "",
"status": 200,
"statusText": "",
"content": {
"mimeType": "image/png",
"size": 24211
},
"headersSize": -1,
"bodySize": 24517,
"cookies": [],
"headers": [{
"name": "accept-ranges",
"value": "bytes"
}, {
"name": "age",
"value": "104934"
}, {
"name": "alt-svc",
"value": "quic=":443"; ma=2592000; v="46,43",h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000"
}, {
"name": "cache-control",
"value": "public, max-age=31536000"
}, {
"name": "content-length",
"value": "24211"
}, {
"name": "content-type",
"value": "image/png"
}, {
"name": "date",
"value": "Tue, 08 Oct 2019 17:27:16 GMT"
}, {
"name": "expires",
"value": "Wed, 07 Oct 2020 17:27:16 GMT"
}, {
"name": "last-modified",
"value": "Mon, 12 Dec 2016 14:45:00 GMT"
}, {
"name": "server",
"value": "sffe"
}, {
"name": "status",
"value": "200"
}, {
"name": "vary",
"value": "Origin"
}, {
"name": "x-content-type-options",
"value": "nosniff"
}, {
"name": "x-xss-protection",
"value": "0"
}],
"_transferSize": 24517
},
"connection": "53",
"serverIPAddress": "172.217.12.131",
"timings": {
"blocked": 0.174,
"dns": 0.454,
"connect": 83.389,
"send": 0.077,
"wait": 50.655,
"receive": 275.877,
"ssl": 62.084,
"_queued": 0.635
},
"_requestTime": 3834.000264
}, {
"cache": {},
"startedDateTime": "2019-10-09T22:36:10.617Z",
"_initialPriority": "Low",
"_priority": "High",
"pageref": "page_1",
"request": {
"method": "GET",
"url": "https://www.gstatic.com/images/branding/googlemic/2x/googlemic_color_24dp.png",
"queryString": [],
"headersSize": -1,
"bodySize": 0,
"cookies": [],
"headers": [{
"name": "Referer",
"value": "https://www.google.com/"
}, {
"name": "Sec-Fetch-Mode",
"value": "no-cors"
}, {
"name": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/76.0.3809.100 Chrome/76.0.3809.100 Safari/537.36"
}],
"httpVersion": "h2"
},
"time": 359.296,
"_initiator_detail": "{"lineNumber":92,"type":"parser","url":"https://www.google.com/"}",
"_initiator_type": "parser",
"_initiator": "https://www.google.com/",
"_initiator_line": 93,
"response": {
"httpVersion": "h2",
"redirectURL": "",
"status": 200,
"statusText": "",
"content": {
"mimeType": "image/png",
"size": 646
},
"headersSize": -1,
"bodySize": 935,
"cookies": [],
"headers": [{
"name": "accept-ranges",
"value": "bytes"
}, {
"name": "age",
"value": "161839"
}, {
"name": "alt-svc",
"value": "quic=":443"; ma=2592000; v="46,43",h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000"
}, {
"name": "cache-control",
"value": "public, max-age=31536000"
}, {
"name": "content-length",
"value": "646"
}, {
"name": "content-type",
"value": "image/png"
}, {
"name": "date",
"value": "Tue, 08 Oct 2019 01:38:51 GMT"
}, {
"name": "expires",
"value": "Wed, 07 Oct 2020 01:38:51 GMT"
}, {
"name": "last-modified",
"value": "Thu, 03 Oct 2019 10:15:00 GMT"
}, {
"name": "server",
"value": "sffe"
}, {
"name": "status",
"value": "200"
}, {
"name": "x-content-type-options",
"value": "nosniff"
}, {
"name": "x-xss-protection",
"value": "0"
}],
"_transferSize": 935
},
"connection": "75",
"serverIPAddress": "172.217.10.131",
"timings": {
"blocked": 0.226,
"dns": 0.668,
"connect": 134.402,
"send": 0.111,
"wait": 223.375,
"receive": 0.514,
"ssl": 87.787,
"_queued": 0.735
},
"_requestTime": 3834.047344
}, {
"cache": {},
"startedDateTime": "2019-10-09T22:36:10.617Z",
"_initialPriority": "Low",
"_priority": "High",
"pageref": "page_1",
"request": {
"method": "GET",
"url": "https://www.google.com/images/searchbox/desktop_searchbox_sprites302_hr.webp",
"queryString": [],
"headersSize": -1,
"bodySize": 0,
"cookies": [],
"headers": [{
"name": "Referer",
"value": "https://www.google.com/"
}, {
"name": "Sec-Fetch-Mode",
"value": "no-cors"
}, {
"name": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/76.0.3809.100 Chrome/76.0.3809.100 Safari/537.36"
}],
"httpVersion": "h2"
},
"time": 88.306,
"_initiator_detail": "{"lineNumber":92,"type":"parser","url":"https://www.google.com/"}",
"_initiator_type": "parser",
"_initiator": "https://www.google.com/",
"_initiator_line": 93,
"response": {
"httpVersion": "h2",
"redirectURL": "",
"status": 200,
"statusText": "",
"content": {
"mimeType": "image/webp",
"size": 574
},
"headersSize": -1,
"bodySize": 676,
"cookies": [],
"headers": [{
"name": "accept-ranges",
"value": "bytes"
}, {
"name": "alt-svc",
"value": "quic=":443"; ma=2592000; v="46,43",h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000"
}, {
"name": "cache-control",
"value": "private, max-age=31536000"
}, {
"name": "content-length",
"value": "574"
}, {
"name": "content-type",
"value": "image/webp"
}, {
"name": "date",
"value": "Wed, 09 Oct 2019 22:36:10 GMT"
}, {
"name": "expires",
"value": "Wed, 09 Oct 2019 22:36:10 GMT"
}, {
"name": "last-modified",
"value": "Mon, 20 May 2019 18:00:00 GMT"
}, {
"name": "server",
"value": "sffe"
}, {
"name": "status",
"value": "200"
}, {
"name": "x-content-type-options",
"value": "nosniff"
}, {
"name": "x-xss-protection",
"value": "0"
}],
"_transferSize": 676
},
"connection": "32",
"serverIPAddress": "172.217.10.132",
"timings": {
"blocked": 0.391,
"dns": -1,
"connect": -1,
"send": 0.109,
"wait": 87.3,
"receive": 0.506,
"ssl": -1,
"_queued": 0.809
},
"_requestTime": 3834.048054
}, {
"cache": {},
"startedDateTime": "2019-10-09T22:36:10.665Z",
"_initialPriority": "VeryLow",
"_priority": "VeryLow",
"pageref": "page_1",
"request": {
"method": "POST",
"url": "https://www.google.com/gen_204?s=webhp&t=aft&atyp=csi&ei=2mCeXbriFY-Jgge34LyYBw&rt=wsrt.285,aft.164,prt.188&bl=YhWz&ima=1&imad=0&imn=1",
"queryString": [{
"name": "s",
"value": "webhp"
}, {
"name": "t",
"value": "aft"
}, {
"name": "atyp",
"value": "csi"
}, {
"name": "ei",
"value": "2mCeXbriFY-Jgge34LyYBw"
}, {
"name": "rt",
"value": "wsrt.285,aft.164,prt.188"
}, {
"name": "bl",
"value": "YhWz"
}, {
"name": "ima",
"value": "1"
}, {
"name": "imad",
"value": "0"
}, {
"name": "imn",
"value": "1"
}],
"headersSize": -1,
"bodySize": 0,
"cookies": [],
"headers": [{
"name": "Content-Type",
"value": "text/plain;charset=UTF-8"
}, {
"name": "Referer",
"value": "https://www.google.com/"
}, {
"name": "Sec-Fetch-Mode",
"value": "no-cors"
}, {
"name": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/76.0.3809.100 Chrome/76.0.3809.100 Safari/537.36"
}],
"httpVersion": "h2"
},
"time": 387.98,
"_initiator_detail": "{"stack":{"callFrames":[{"columnNumber":288,"functionName":"D","lineNumber":343,"scriptId":"21","url":"https://www.google.com/"},{"columnNumber":589,"functionName":"","lineNumber":344,"scriptId":"21","url":"https://www.google.com/"},{"columnNumber":671,"functionName":"","lineNumber":344,"scriptId":"21","url":"https://www.google.com/"},{"columnNumber":677,"functionName":"","lineNumber":344,"scriptId":"21","url":"https://www.google.com/"}]},"type":"script"}",
"_initiator_type": "script",
"_initiator": "https://www.google.com/",
"_initiator_line": 344,
"_initiator_column": 289,
"_initiator_function_name": "D",
"_initiator_script_id": "21",
"response": {
"httpVersion": "h2",
"redirectURL": "",
"status": 204,
"statusText": "",
"content": {
"mimeType": "text/html",
"size": 0
},
"headersSize": -1,
"bodySize": 55,
"cookies": [],
"headers": [{
"name": "alt-svc",
"value": "quic=":443"; ma=2592000; v="46,43",h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000"
}, {
"name": "content-length",
"value": "0"
}, {
"name": "content-type",
"value": "text/html; charset=UTF-8"
}, {
"name": "date",
"value": "Wed, 09 Oct 2019 22:36:10 GMT"
}, {
"name": "server",
"value": "gws"
}, {
"name": "status",
"value": "204"
}, {
"name": "x-frame-options",
"value": "SAMEORIGIN"
}, {
"name": "x-xss-protection",
"value": "0"
}],
"_transferSize": 55
},
"connection": "32",
"serverIPAddress": "172.217.10.132",
"timings": {
"blocked": 0.362,
"dns": -1,
"connect": -1,
"send": 0.193,
"wait": 387.086,
"receive": 0.339,
"ssl": -1,
"_queued": 0.867
},
"_requestTime": 3834.095819
}, {
"cache": {},
"startedDateTime": "2019-10-09T22:36:10.675Z",
"_initialPriority": "Low",
"_priority": "Low",
"pageref": "page_1",
"request": {
"method": "GET",
"url": "https://www.google.com/images/nav_logo299.webp",
"queryString": [],
"headersSize": -1,
"bodySize": 0,
"cookies": [],
"headers": [{
"name": "Referer",
"value": "https://www.google.com/"
}, {
"name": "Sec-Fetch-Mode",
"value": "no-cors"
}, {
"name": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/76.0.3809.100 Chrome/76.0.3809.100 Safari/537.36"
}],
"httpVersion": "h2"
},
"time": 377.79,
"_initiator_detail": "{"lineNumber":0,"type":"parser","url":"https://www.google.com/"}",
"_initiator_type": "parser",
"_initiator": "https://www.google.com/",
"_initiator_line": 1,
"response": {
"httpVersion": "h2",
"redirectURL": "",
"status": 200,
"statusText": "",
"content": {
"mimeType": "image/webp",
"size": 4396
},
"headersSize": -1,
"bodySize": 4489,
"cookies": [],
"headers": [{
"name": "accept-ranges",
"value": "bytes"
}, {
"name": "alt-svc",
"value": "quic=":443"; ma=2592000; v="46,43",h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000"
}, {
"name": "cache-control",
"value": "private, max-age=31536000"
}, {
"name": "content-length",
"value": "4396"
}, {
"name": "content-type",
"value": "image/webp"
}, {
"name": "date",
"value": "Wed, 09 Oct 2019 22:36:10 GMT"
}, {
"name": "expires",
"value": "Wed, 09 Oct 2019 22:36:10 GMT"
}, {
"name": "last-modified",
"value": "Tue, 23 Apr 2019 01:00:00 GMT"
}, {
"name": "server",
"value": "sffe"
}, {
"name": "status",
"value": "200"
}, {
"name": "x-content-type-options",
"value": "nosniff"
}, {
"name": "x-xss-protection",
"value": "0"
}],
"_transferSize": 4489
},
"connection": "32",
"serverIPAddress": "172.217.10.132",
"timings": {
"blocked": 0.511,
"dns": -1,
"connect": -1,
"send": 0.143,
"wait": 376.432,
"receive": 0.704,
"ssl": -1,
"_queued": 0.786
},
"_requestTime": 3834.105411
}, {
"cache": {},
"startedDateTime": "2019-10-09T22:36:10.681Z",
"_initialPriority": "Low",
"priority": "Low",
"pageref": "page_1",
"request": {
"method": "GET",
"url": "https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg",
"queryString": [],
"headersSize": -1,
"bodySize": 0,
"cookies": [],
"headers": [{
"name": "Referer",
"value": "https://www.google.com/"
}, {
"name": "Sec-Fetch-Mode",
"value": "no-cors"
}, {
"name": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/76.0.3809.100 Chrome/76.0.3809.100 Safari/537.36"
}],
"httpVersion": "h2"
},
"time": 369.831,
"_initiator_detail": "{"stack":{"callFrames":[{"columnNumber":17799,"functionName":"","lineNumber":92,"scriptId":"18","url":"https://www.google.com/"}]},"type":"script"}",
"_initiator_type": "script",
"_initiator": "https://www.google.com/",
"_initiator_line": 93,
"initiator_column": 17800,
"initiator_function_name": "",
"initiator_script_id": "18",
"response": {
"httpVersion": "h2",
"redirectURL": "",
"status": 200,
"statusText": "",
"content": {
"mimeType": "text/javascript",
"size": 455792,
"compression": 312756
},
"headersSize": -1,
"bodySize": 143036,
"cookies": [],
"headers": [{
"name": "accept-ranges",
"value": "bytes"
}, {
"name": "age",
"value": "22785"
}, {
"name": "alt-svc",
"value": "quic=":443"; ma=2592000; v="46,43",h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000"
}, {
"name": "cache-control",
"value": "public, max-age=31536000"
}, {
"name": "content-encoding",
"value": "br"
}, {
"name": "content-length",
"value": "142793"
}, {
"name": "content-type",
"value": "text/javascript; charset=UTF-8"
}, {
"name": "date",
"value": "Wed, 09 Oct 2019 16:16:25 GMT"
}, {
"name": "expires",
"value": "Thu, 08 Oct 2020 16:16:25 GMT"
}, {
"name": "last-modified",
"value": "Thu, 03 Oct 2019 08:20:07 GMT"
}, {
"name": "server",
"value": "sffe"
}, {
"name": "status",
"value": "200"
}, {
"name": "vary",
"value": "Accept-Encoding"
}, {
"name": "x-content-type-options",
"value": "nosniff"
}, {
"name": "x-xss-protection",
"value": "0"
}],
"transferSize": 143036
},
"connection": "32",
"serverIPAddress": "172.217.10.132",
"timings": {
"blocked": 0.484,
"dns": -1,
"connect": -1,
"send": 0.297,
"wait": 63,
"receive": 306.05,
"ssl": -1,
"queued": 1.58
},
"requestTime": 3834.112288
}, {
"cache": {},
"startedDateTime": "2019-10-09T22:36:10.873Z",
"initialPriority": "Low",
"priority": "Low",
"pageref": "page_1",
"request": {
"method": "GET",
"url": "https://www.gstatic.com/og/
/js/k=og.og2.en_US.CkOHxH_0Mc4.O/rt=j/m=def,aswid/exm=in,fot/d=1/ed=1/rs=AA2YrTsrSgC4dyJ65l0QyMBk7a8GMHDrjg",
"queryString": [],
"headersSize": -1,
"bodySize": 0,
"cookies": [],
"headers": [{
"name": "Referer",
"value": "https://www.google.com/"
}, {
"name": "Sec-Fetch-Mode",
"value": "no-cors"
}, {
"name": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/76.0.3809.100 Chrome/76.0.3809.100 Safari/537.36"
}],
"httpVersion": "h2"
},
"time": 193.144,
"initiator_detail": "{"stack":{"callFrames":[{"columnNumber":177,"functionName":"hq","lineNumber":298,"scriptId":"19","url":"https://www.google.com/"},{"columnNumber":304,"functionName":".iq","lineNumber":296,"scriptId":"19","url":"https://www.google.com/"},{"columnNumber":113,"functionName":"
.gq.D","lineNumber":300,"scriptId":"19","url":"https://www.google.com/"}]},"type":"script"}",
"initiator_type": "script",
"initiator": "https://www.google.com/",
"initiator_line": 299,
"initiator_column": 178,
"initiator_function_name": "hq",
"initiator_script_id": "19",
"response": {
"httpVersion": "h2",
"redirectURL": "",
"status": 200,
"statusText": "",
"content": {
"mimeType": "text/javascript",
"size": 171935,
"compression": 111717
},
"headersSize": -1,
"bodySize": 60218,
"cookies": [],
"headers": [{
"name": "accept-ranges",
"value": "bytes"
}, {
"name": "age",
"value": "182977"
}, {
"name": "alt-svc",
"value": "quic=":443"; ma=2592000; v="46,43",h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000"
}, {
"name": "cache-control",
"value": "public, max-age=31536000"
}, {
"name": "content-encoding",
"value": "gzip"
}, {
"name": "content-length",
"value": "60029"
}, {
"name": "content-type",
"value": "text/javascript; charset=UTF-8"
}, {
"name": "date",
"value": "Mon, 07 Oct 2019 19:46:33 GMT"
}, {
"name": "expires",
"value": "Tue, 06 Oct 2020 19:46:33 GMT"
}, {
"name": "last-modified",
"value": "Tue, 01 Oct 2019 17:57:08 GMT"
}, {
"name": "server",
"value": "sffe"
}, {
"name": "status",
"value": "200"
}, {
"name": "vary",
"value": "Accept-Encoding, Origin"
}, {
"name": "x-content-type-options",
"value": "nosniff"
}, {
"name": "x-xss-protection",
"value": "0"
}],
"transferSize": 60218
},
"connection": "75",
"serverIPAddress": "172.217.10.131",
"timings": {
"blocked": 0.262,
"dns": -1,
"connect": -1,
"send": 0.127,
"wait": 105.584,
"receive": 87.171,
"ssl": -1,
"queued": 0.648
},
"requestTime": 3834.303592
}, {
"cache": {},
"startedDateTime": "2019-10-09T22:36:11.085Z",
"initialPriority": "Low",
"priority": "Low",
"pageref": "page_1",
"request": {
"method": "GET",
"url": "https://apis.google.com/
/scs/abc-static/
/js/k=gapi.gapi.en.4CFxRrSvxq0.O/m=gapi_iframes,googleapis_client,plusone/rt=j/sv=1/d=1/ed=1/rs=AHpOoo8skdVJHB5uqGRXCunlhzuKwaF7Ag/cb=gapi.loaded_0",
"queryString": [],
"headersSize": -1,
"bodySize": 0,
"cookies": [],
"headers": [{
"name": "Referer",
"value": "https://www.google.com/"
}, {
"name": "Sec-Fetch-Mode",
"value": "no-cors"
}, {
"name": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/76.0.3809.100 Chrome/76.0.3809.100 Safari/537.36"
}],
"httpVersion": "h2"
},
"time": 287.078,
"initiator_detail": "{"stack":{"callFrames":[{"columnNumber":288,"functionName":"Lv","lineNumber":249,"scriptId":"24","url":"https://www.gstatic.com/og//js/k=og.og2.en_US.CkOHxH_0Mc4.O/rt=j/m=def,aswid/exm=in,fot/d=1/ed=1/rs=AA2YrTsrSgC4dyJ65l0QyMBk7a8GMHDrjg"},{"columnNumber":127,"functionName":"Rv","lineNumber":253,"scriptId":"24","url":"https://www.gstatic.com/og/
/js/k=og.og2.en_US.CkOHxH_0Mc4.O/rt=j/m=def,aswid/exm=in,fot/d=1/ed=1/rs=AA2YrTsrSgC4dyJ65l0QyMBk7a8GMHDrjg"},{"columnNumber":101,"functionName":"Sv","lineNumber":251,"scriptId":"24","url":"https://www.gstatic.com/og/
/js/k=og.og2.en_US.CkOHxH_0Mc4.O/rt=j/m=def,aswid/exm=in,fot/d=1/ed=1/rs=AA2YrTsrSgC4dyJ65l0QyMBk7a8GMHDrjg"},{"columnNumber":50,"functionName":"","lineNumber":255,"scriptId":"24","url":"https://www.gstatic.com/og/
/js/k=og.og2.en_US.CkOHxH_0Mc4.O/rt=j/m=def,aswid/exm=in,fot/d=1/ed=1/rs=AA2YrTsrSgC4dyJ65l0QyMBk7a8GMHDrjg"},{"columnNumber":173,"functionName":"Ov","lineNumber":254,"scriptId":"24","url":"https://www.gstatic.com/og/
/js/k=og.og2.en_US.CkOHxH_0Mc4.O/rt=j/m=def,aswid/exm=in,fot/d=1/ed=1/rs=AA2YrTsrSgC4dyJ65l0QyMBk7a8GMHDrjg"},{"columnNumber":29,"functionName":"fv.load","lineNumber":255,"scriptId":"24","url":"https://www.gstatic.com/og/
/js/k=og.og2.en_US.CkOHxH_0Mc4.O/rt=j/m=def,aswid/exm=in,fot/d=1/ed=1/rs=AA2YrTsrSgC4dyJ65l0QyMBk7a8GMHDrjg"},{"columnNumber":295,"functionName":"Rs.init","lineNumber":145,"scriptId":"24","url":"https://www.gstatic.com/og/
/js/k=og.og2.en_US.CkOHxH_0Mc4.O/rt=j/m=def,aswid/exm=in,fot/d=1/ed=1/rs=AA2YrTsrSgC4dyJ65l0QyMBk7a8GMHDrjg"},{"columnNumber":43,"functionName":"","lineNumber":260,"scriptId":"24","url":"https://www.gstatic.com/og/
/js/k=og.og2.en_US.CkOHxH_0Mc4.O/rt=j/m=def,aswid/exm=in,fot/d=1/ed=1/rs=AA2YrTsrSgC4dyJ65l0QyMBk7a8GMHDrjg"},{"columnNumber":2,"functionName":"","lineNumber":513,"scriptId":"24","url":"https://www.gstatic.com/og/
/js/k=og.og2.en_US.CkOHxH_0Mc4.O/rt=j/m=def,aswid/exm=in,fot/d=1/ed=1/rs=AA2YrTsrSgC4dyJ65l0QyMBk7a8GMHDrjg"}]},"type":"script"}",
"initiator_type": "script",
"initiator": "https://www.gstatic.com/og//js/k=og.og2.en_US.CkOHxH_0Mc4.O/rt=j/m=def,aswid/exm=in,fot/d=1/ed=1/rs=AA2YrTsrSgC4dyJ65l0QyMBk7a8GMHDrjg",
"initiator_line": 250,
"initiator_column": 289,
"initiator_function_name": "Lv",
"initiator_script_id": "24",
"response": {
"httpVersion": "h2",
"redirectURL": "",
"status": 200,
"statusText": "",
"content": {
"mimeType": "text/javascript",
"size": 147525,
"compression": 95993
},
"headersSize": -1,
"bodySize": 51532,
"cookies": [],
"headers": [{
"name": "accept-ranges",
"value": "bytes"
}, {
"name": "age",
"value": "89012"
}, {
"name": "alt-svc",
"value": "quic=":443"; ma=2592000; v="46,43",h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000"
}, {
"name": "cache-control",
"value": "public, max-age=31536000"
}, {
"name": "content-encoding",
"value": "gzip"
}, {
"name": "content-length",
"value": "51183"
}, {
"name": "content-type",
"value": "text/javascript; charset=UTF-8"
}, {
"name": "date",
"value": "Tue, 08 Oct 2019 21:52:39 GMT"
}, {
"name": "expires",
"value": "Wed, 07 Oct 2020 21:52:39 GMT"
}, {
"name": "last-modified",
"value": "Sun, 04 Aug 2019 15:13:46 GMT"
}, {
"name": "server",
"value": "sffe"
}, {
"name": "status",
"value": "200"
}, {
"name": "vary",
"value": "Accept-Encoding"
}, {
"name": "x-content-type-options",
"value": "nosniff"
}, {
"name": "x-xss-protection",
"value": "0"
}],
"transferSize": 51532
},
"connection": "113",
"serverIPAddress": "172.217.12.142",
"timings": {
"blocked": 0.343,
"dns": 24.706,
"connect": 169.515,
"send": 0.239,
"wait": 27.757,
"receive": 64.518,
"ssl": 149.268,
"queued": 0.706
},
"requestTime": 3834.51627
}, {
"cache": {},
"startedDateTime": "2019-10-09T22:36:11.105Z",
"initialPriority": "VeryLow",
"priority": "VeryLow",
"pageref": "page_1",
"request": {
"method": "GET",
"url": "https://ogs.google.com/widget/app/so?hl=en&origin=https%3A%2F%2Fwww.google.com&pid=1&spid=1&usegapi=1",
"queryString": [{
"name": "hl",
"value": "en"
}, {
"name": "origin",
"value": "https://www.google.com"
}, {
"name": "pid",
"value": "1"
}, {
"name": "spid",
"value": "1"
}, {
"name": "usegapi",
"value": "1"
}],
"headersSize": -1,
"bodySize": 0,
"cookies": [],
"headers": [{
"name": "Origin",
"value": "https://www.google.com"
}, {
"name": "Referer",
"value": "https://www.google.com/"
}, {
"name": "Sec-Fetch-Mode",
"value": "cors"
}, {
"name": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/76.0.3809.100 Chrome/76.0.3809.100 Safari/537.36"
}],
"httpVersion": "h2"
},
"time": 320.07,
"initiator_detail": "{"stack":{"callFrames":[{"columnNumber":438,"functionName":"im","lineNumber":484,"scriptId":"24","url":"https://www.gstatic.com/og//js/k=og.og2.en_US.CkOHxH_0Mc4.O/rt=j/m=def,aswid/exm=in,fot/d=1/ed=1/rs=AA2YrTsrSgC4dyJ65l0QyMBk7a8GMHDrjg"},{"columnNumber":91,"functionName":"","lineNumber":510,"scriptId":"24","url":"https://www.gstatic.com/og/
/js/k=og.og2.en_US.CkOHxH_0Mc4.O/rt=j/m=def,aswid/exm=in,fot/d=1/ed=1/rs=AA2YrTsrSgC4dyJ65l0QyMBk7a8GMHDrjg"},{"columnNumber":74,"functionName":"
.il","lineNumber":258,"scriptId":"19","url":"https://www.google.com/"},{"columnNumber":2,"functionName":"","lineNumber":508,"scriptId":"24","url":"https://www.gstatic.com/og/
/js/k=og.og2.en_US.CkOHxH_0Mc4.O/rt=j/m=def,aswid/exm=in,fot/d=1/ed=1/rs=AA2YrTsrSgC4dyJ65l0QyMBk7a8GMHDrjg"},{"columnNumber":2,"functionName":"","lineNumber":513,"scriptId":"24","url":"https://www.gstatic.com/og/
/js/k=og.og2.en_US.CkOHxH_0Mc4.O/rt=j/m=def,aswid/exm=in,fot/d=1/ed=1/rs=AA2YrTsrSgC4dyJ65l0QyMBk7a8GMHDrjg"}]},"type":"script"}",
"initiator_type": "script",
"initiator": "https://www.gstatic.com/og//js/k=og.og2.en_US.CkOHxH_0Mc4.O/rt=j/m=def,aswid/exm=in,fot/d=1/ed=1/rs=AA2YrTsrSgC4dyJ65l0QyMBk7a8GMHDrjg",
"initiator_line": 485,
"initiator_column": 439,
"initiator_function_name": "im",
"initiator_script_id": "24",
"response": {
"httpVersion": "h2",
"redirectURL": "",
"status": 200,
"statusText": "",
"content": {
"mimeType": "text/html",
"size": 0
},
"headersSize": -1,
"bodySize": 13398,
"cookies": [],
"headers": [{
"name": "access-control-allow-credentials",
"value": "true"
}, {
"name": "access-control-allow-origin",
"value": "https://www.google.com"
}, {
"name": "alt-svc",
"value": "quic=":443"; ma=2592000; v="46,43",h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000"
}, {
"name": "cache-control",
"value": "private, max-age=259200"
}, {
"name": "content-encoding",
"value": "gzip"
}, {
"name": "content-security-policy",
"value": "script-src 'report-sample' 'nonce-HuqopsOUcnpW3AEjwIt/zQ' 'unsafe-inline';object-src 'none';base-uri 'self';report-uri /
/OneGoogleWidgetUi/cspreport;worker-src 'self', script-src 'nonce-HuqopsOUcnpW3AEjwIt/zQ' 'self' 'unsafe-eval' https://apis.google.com https://ssl.gstatic.com https://www.google.com https://www.gstatic.com https://www.google-analytics.com;report-uri /
/OneGoogleWidgetUi/cspreport;frame-ancestors https://www.google.com"
}, {
"name": "content-type",
"value": "text/html; charset=utf-8"
}, {
"name": "date",
"value": "Wed, 09 Oct 2019 22:36:11 GMT"
}, {
"name": "expires",
"value": "Wed, 09 Oct 2019 22:36:11 GMT"
}, {
"name": "server",
"value": "ESF"
}, {
"name": "status",
"value": "200"
}, {
"name": "strict-transport-security",
"value": "max-age=31536000"
}, {
"name": "x-content-type-options",
"value": "nosniff"
}, {
"name": "x-ua-compatible",
"value": "IE=edge"
}, {
"name": "x-xss-protection",
"value": "0"
}],
"transferSize": 13398
},
"connection": "112",
"serverIPAddress": "172.217.6.206",
"timings": {
"blocked": 0.273,
"dns": 0.492,
"connect": 173.148,
"send": 0.526,
"wait": 94.743,
"receive": 50.888,
"ssl": 147.964,
"queued": 0.792
},
"requestTime": 3834.535904
}, {
"cache": {},
"startedDateTime": "2019-10-09T22:36:11.204Z",
"initialPriority": "Low",
"priority": "Low",
"pageref": "page_1",
"request": {
"method": "GET",
"url": "https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/exm=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,csi,d,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff/ed=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg/m=aa,abd,async,dvl,fEVMic,foot,ifl,lu,m,mUpTid,mu,sb_wiz,sf,sonic,spch,wft,xz7cCd?xjs=s1",
"queryString": [{
"name": "xjs",
"value": "s1"
}],
"headersSize": -1,
"bodySize": 0,
"cookies": [],
"headers": [{
"name": "Referer",
"value": "https://www.google.com/"
}, {
"name": "Sec-Fetch-Mode",
"value": "no-cors"
}, {
"name": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/76.0.3809.100 Chrome/76.0.3809.100 Safari/537.36"
}],
"httpVersion": "h2"
},
"time": 122.84299999999999,
"initiator_detail": "{"stack":{"callFrames":[{"columnNumber":115,"functionName":"s_xh","lineNumber":421,"scriptId":"23","url":"https://www.google.com/xjs//js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":184,"functionName":"","lineNumber":461,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":92,"functionName":"s_jka","lineNumber":461,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":474,"functionName":"s_hka","lineNumber":460,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":231,"functionName":"s_gka","lineNumber":460,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":66,"functionName":"s_fka","lineNumber":460,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":128,"functionName":"s_nba.Da","lineNumber":459,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":385,"functionName":"s_ai.Ya","lineNumber":492,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":57,"functionName":"s_Jka","lineNumber":492,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":373,"functionName":"s_Kka","lineNumber":491,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":358,"functionName":"s_sba","lineNumber":495,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":456,"functionName":"s_vba","lineNumber":14,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":118,"functionName":"s_5Ga","lineNumber":2445,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":168,"functionName":"s_7Ga","lineNumber":2446,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":419,"functionName":"s_9Ga","lineNumber":2446,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":136,"functionName":"","lineNumber":1710,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":483,"functionName":"e.wa","lineNumber":326,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":234,"functionName":"s_8ha","lineNumber":330,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":97,"functionName":"s_4ha","lineNumber":330,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":237,"functionName":"s__a.Fa","lineNumber":329,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":325,"functionName":"s_Tha","lineNumber":320,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"}]},"type":"script"}",
"_initiator_type": "script",
"initiator": "https://www.google.com/xjs//js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg",
"_initiator_line": 422,
"initiator_column": 116,
"initiator_function_name": "s_xh",
"initiator_script_id": "23",
"response": {
"httpVersion": "h2",
"redirectURL": "",
"status": 200,
"statusText": "",
"content": {
"mimeType": "text/javascript",
"size": 126317,
"compression": 85603
},
"headersSize": -1,
"bodySize": 40714,
"cookies": [],
"headers": [{
"name": "accept-ranges",
"value": "bytes"
}, {
"name": "age",
"value": "22745"
}, {
"name": "alt-svc",
"value": "quic=":443"; ma=2592000; v="46,43",h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000"
}, {
"name": "cache-control",
"value": "public, max-age=31536000"
}, {
"name": "content-encoding",
"value": "br"
}, {
"name": "content-length",
"value": "40603"
}, {
"name": "content-type",
"value": "text/javascript; charset=UTF-8"
}, {
"name": "date",
"value": "Wed, 09 Oct 2019 16:17:06 GMT"
}, {
"name": "expires",
"value": "Thu, 08 Oct 2020 16:17:06 GMT"
}, {
"name": "last-modified",
"value": "Thu, 03 Oct 2019 08:20:07 GMT"
}, {
"name": "server",
"value": "sffe"
}, {
"name": "status",
"value": "200"
}, {
"name": "vary",
"value": "Accept-Encoding"
}, {
"name": "x-content-type-options",
"value": "nosniff"
}, {
"name": "x-xss-protection",
"value": "0"
}],
"transferSize": 40714
},
"connection": "32",
"serverIPAddress": "172.217.10.132",
"timings": {
"blocked": 0.339,
"dns": -1,
"connect": -1,
"send": 0.128,
"wait": 71.46,
"receive": 50.916,
"ssl": -1,
"queued": 0.555
},
"requestTime": 3834.634781
}, {
"cache": {},
"startedDateTime": "2019-10-09T22:36:11.414Z",
"initialPriority": "VeryLow",
"priority": "VeryLow",
"pageref": "page_1",
"request": {
"method": "POST",
"url": "https://www.google.com/gen_204?atyp=csi&ei=2mCeXbriFY-Jgge34LyYBw&s=webhp&t=all&bl=YhWz&imn=1&adh=&conn=onchange&ima=1&imad=0&ime=1&imeb=0&imeo=0&wh=698&scp=0&net=dl.2300,ect.4g,rtt.100&mem=ujhs.11,tjhs.13,jhsl.2198,dm.8&sto=&sys=hc.8&rt=aft.164,iml.164,prt.188,dcl.197,xjsls.212,xjses.652,xjsee.695,xjs.695,ol.939,wsrt.285,cst.99,dnst.0,rqst.274,rspt.101,sslt.77,rqstt.112,unt.10,cstt.12,dit.482&zx=1570660571412",
"queryString": [{
"name": "atyp",
"value": "csi"
}, {
"name": "ei",
"value": "2mCeXbriFY-Jgge34LyYBw"
}, {
"name": "s",
"value": "webhp"
}, {
"name": "t",
"value": "all"
}, {
"name": "bl",
"value": "YhWz"
}, {
"name": "imn",
"value": "1"
}, {
"name": "adh",
"value": ""
}, {
"name": "conn",
"value": "onchange"
}, {
"name": "ima",
"value": "1"
}, {
"name": "imad",
"value": "0"
}, {
"name": "ime",
"value": "1"
}, {
"name": "imeb",
"value": "0"
}, {
"name": "imeo",
"value": "0"
}, {
"name": "wh",
"value": "698"
}, {
"name": "scp",
"value": "0"
}, {
"name": "net",
"value": "dl.2300,ect.4g,rtt.100"
}, {
"name": "mem",
"value": "ujhs.11,tjhs.13,jhsl.2198,dm.8"
}, {
"name": "sto",
"value": ""
}, {
"name": "sys",
"value": "hc.8"
}, {
"name": "rt",
"value": "aft.164,iml.164,prt.188,dcl.197,xjsls.212,xjses.652,xjsee.695,xjs.695,ol.939,wsrt.285,cst.99,dnst.0,rqst.274,rspt.101,sslt.77,rqstt.112,unt.10,cstt.12,dit.482"
}, {
"name": "zx",
"value": "1570660571412"
}],
"headersSize": -1,
"bodySize": 0,
"cookies": [],
"headers": [{
"name": "Content-Type",
"value": "text/plain;charset=UTF-8"
}, {
"name": "Referer",
"value": "https://www.google.com/"
}, {
"name": "Sec-Fetch-Mode",
"value": "no-cors"
}, {
"name": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/76.0.3809.100 Chrome/76.0.3809.100 Safari/537.36"
}],
"httpVersion": "h2"
},
"time": 139.609,
"initiator_detail": "{"stack":{"callFrames":[{"columnNumber":120,"functionName":"s_ODa.log","lineNumber":1733,"scriptId":"23","url":"https://www.google.com/xjs//js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":190,"functionName":"s_Rf.Zha","lineNumber":265,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":116,"functionName":"s_1f.log","lineNumber":289,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":389,"functionName":"s_Zi.log","lineNumber":609,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":174,"functionName":"s_PGa","lineNumber":2476,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":401,"functionName":"","lineNumber":2475,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":89,"functionName":"","lineNumber":2470,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":80,"functionName":"","lineNumber":2477,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":89,"functionName":"","lineNumber":2470,"scriptId":"23","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg"},{"columnNumber":2954,"functionName":"google.c.u","lineNumber":0,"scriptId":"13","url":"https://www.google.com/"},{"columnNumber":659,"functionName":"","lineNumber":344,"scriptId":"21","url":"https://www.google.com/"},{"columnNumber":3048,"functionName":"e","lineNumber":0,"scriptId":"13","url":"https://www.google.com/"}]},"type":"script"}",
"_initiator_type": "script",
"initiator": "https://www.google.com/xjs//js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/m=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff,d,csi/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg",
"_initiator_line": 1734,
"_initiator_column": 121,
"_initiator_function_name": "s_ODa.log",
"_initiator_script_id": "23",
"response": {
"httpVersion": "h2",
"redirectURL": "",
"status": 204,
"statusText": "",
"content": {
"mimeType": "text/html",
"size": 0
},
"headersSize": -1,
"bodySize": 53,
"cookies": [],
"headers": [{
"name": "alt-svc",
"value": "quic=":443"; ma=2592000; v="46,43",h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000"
}, {
"name": "content-length",
"value": "0"
}, {
"name": "content-type",
"value": "text/html; charset=UTF-8"
}, {
"name": "date",
"value": "Wed, 09 Oct 2019 22:36:11 GMT"
}, {
"name": "server",
"value": "gws"
}, {
"name": "status",
"value": "204"
}, {
"name": "x-frame-options",
"value": "SAMEORIGIN"
}, {
"name": "x-xss-protection",
"value": "0"
}],
"_transferSize": 53
},
"connection": "32",
"serverIPAddress": "172.217.10.132",
"timings": {
"blocked": 0.267,
"dns": -1,
"connect": -1,
"send": 0.173,
"wait": 138.871,
"receive": 0.298,
"ssl": -1,
"_queued": 0.923
},
"_requestTime": 3834.844976
}, {
"cache": {},
"startedDateTime": "2019-10-09T22:36:11.416Z",
"_initialPriority": "Low",
"_priority": "Low",
"pageref": "page_1",
"request": {
"method": "GET",
"url": "https://adservice.google.com/adsid/google/ui",
"queryString": [],
"headersSize": -1,
"bodySize": 0,
"cookies": [],
"headers": [{
"name": "Referer",
"value": "https://www.google.com/"
}, {
"name": "Sec-Fetch-Mode",
"value": "no-cors"
}, {
"name": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/76.0.3809.100 Chrome/76.0.3809.100 Safari/537.36"
}],
"httpVersion": "h2"
},
"time": 326.52099999999996,
"_initiator_detail": "{"type":"other"}",
"_initiator_type": "other",
"response": {
"httpVersion": "h2",
"redirectURL": "",
"status": 204,
"statusText": "",
"content": {
"mimeType": "text/html",
"size": 0
},
"headersSize": -1,
"bodySize": 0,
"cookies": [],
"headers": [],
"_transferSize": 0
},
"connection": "141",
"serverIPAddress": "172.217.12.194",
"timings": {
"blocked": 0.271,
"dns": 61.385,
"connect": 179.283,
"send": 0.13,
"wait": 84.41,
"receive": 1.042,
"ssl": 102.57,
"_queued": 0.577
},
"_requestTime": 3834.846341
}, {
"cache": {},
"startedDateTime": "2019-10-09T22:36:11.426Z",
"_initialPriority": "High",
"_priority": "High",
"pageref": "page_1",
"request": {
"method": "GET",
"url": "https://www.google.com/favicon.ico",
"queryString": [],
"headersSize": -1,
"bodySize": 0,
"cookies": [],
"headers": [{
"name": "Referer",
"value": "https://www.google.com/"
}, {
"name": "Sec-Fetch-Mode",
"value": "no-cors"
}, {
"name": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/76.0.3809.100 Chrome/76.0.3809.100 Safari/537.36"
}],
"httpVersion": "h2"
},
"time": 65.976,
"_initiator_detail": "{"type":"other"}",
"_initiator_type": "other",
"response": {
"httpVersion": "h2",
"redirectURL": "",
"status": 200,
"statusText": "",
"content": {
"mimeType": "image/x-icon",
"size": 5430,
"compression": 3813
},
"headersSize": -1,
"bodySize": 1617,
"cookies": [],
"headers": [{
"name": "accept-ranges",
"value": "bytes"
}, {
"name": "age",
"value": "15315"
}, {
"name": "alt-svc",
"value": "quic=":443"; ma=2592000; v="46,43",h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000"
}, {
"name": "cache-control",
"value": "public, max-age=691200"
}, {
"name": "content-encoding",
"value": "gzip"
}, {
"name": "content-length",
"value": "1494"
}, {
"name": "content-type",
"value": "image/x-icon"
}, {
"name": "date",
"value": "Wed, 09 Oct 2019 18:20:56 GMT"
}, {
"name": "expires",
"value": "Thu, 17 Oct 2019 18:20:56 GMT"
}, {
"name": "last-modified",
"value": "Thu, 08 Dec 2016 01:00:57 GMT"
}, {
"name": "server",
"value": "sffe"
}, {
"name": "status",
"value": "200"
}, {
"name": "vary",
"value": "Accept-Encoding"
}, {
"name": "x-content-type-options",
"value": "nosniff"
}, {
"name": "x-xss-protection",
"value": "0"
}],
"_transferSize": 1617
},
"connection": "32",
"serverIPAddress": "172.217.10.132",
"timings": {
"blocked": 1.337,
"dns": -1,
"connect": -1,
"send": 0.417,
"wait": 63.692,
"receive": 0.53,
"ssl": -1,
"_queued": 0.674
},
"_requestTime": 3834.856768
}, {
"cache": {},
"startedDateTime": "2019-10-09T22:36:11.590Z",
"initialPriority": "VeryLow",
"priority": "VeryLow",
"pageref": "page_1",
"request": {
"method": "POST",
"url": "https://www.google.com/gen_204?atyp=i&ct=&cad=udla=1&ei=2mCeXbriFY-Jgge34LyYBw&di=292&lt=21933&ln=19443&zx=1570660571589",
"queryString": [{
"name": "atyp",
"value": "i"
}, {
"name": "ct",
"value": ""
}, {
"name": "cad",
"value": "udla=1"
}, {
"name": "ei",
"value": "2mCeXbriFY-Jgge34LyYBw"
}, {
"name": "di",
"value": "292"
}, {
"name": "lt",
"value": "21933"
}, {
"name": "ln",
"value": "19443"
}, {
"name": "zx",
"value": "1570660571589"
}],
"headersSize": -1,
"bodySize": 0,
"cookies": [],
"headers": [{
"name": "Content-Type",
"value": "text/plain;charset=UTF-8"
}, {
"name": "Referer",
"value": "https://www.google.com/"
}, {
"name": "Sec-Fetch-Mode",
"value": "no-cors"
}, {
"name": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/76.0.3809.100 Chrome/76.0.3809.100 Safari/537.36"
}],
"httpVersion": "h2"
},
"time": 62.523999999999994,
"initiator_detail": "{"stack":{"callFrames":[{"columnNumber":286,"functionName":"","lineNumber":383,"scriptId":"25","url":"https://www.google.com/xjs//js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/exm=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,csi,d,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff/ed=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg/m=aa,abd,async,dvl,fEVMic,foot,ifl,lu,m,mUpTid,mu,sb_wiz,sf,sonic,spch,wft,xz7cCd?xjs=s1"},{"columnNumber":238,"functionName":"s_3Jb.flush","lineNumber":384,"scriptId":"25","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/exm=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,csi,d,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff/ed=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg/m=aa,abd,async,dvl,fEVMic,foot,ifl,lu,m,mUpTid,mu,sb_wiz,sf,sonic,spch,wft,xz7cCd?xjs=s1"},{"columnNumber":185,"functionName":"s_n9.Fa","lineNumber":654,"scriptId":"25","url":"https://www.google.com/xjs/
/js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/exm=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,csi,d,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff/ed=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg/m=aa,abd,async,dvl,fEVMic,foot,ifl,lu,m,mUpTid,mu,sb_wiz,sf,sonic,spch,wft,xz7cCd?xjs=s1"}]},"type":"script"}",
"_initiator_type": "script",
"initiator": "https://www.google.com/xjs//js/k=xjs.s.en_US.yzTn8OWvhbA.O/ck=xjs.s.gPUjkjqZO8E.L.W.O/am=BAAAWATs3YEg_18BACDwCQAABLgFGyyQDgkVY3VABAg/d=1/exm=Fkg7bd,HcFEGb,IvlUe,MC8mtf,OF7gzc,RMhBfe,T4BAC,TJw5qb,TbaHGc,Y33vzc,cdos,csi,d,hsm,iDPoPb,jsa,mvYTse,tg8oTe,uz938c,vWNDde,ws9Tlc,yQ43ff/ed=1/dg=2/br=1/ct=zgms/rs=ACT90oEyea84aNF5OuHzH1NHz9MwSa-Qeg/m=aa,abd,async,dvl,fEVMic,foot,ifl,lu,m,mUpTid,mu,sb_wiz,sf,sonic,spch,wft,xz7cCd?xjs=s1",
"_initiator_line": 384,
"_initiator_column": 287,
"_initiator_function_name": "",
"_initiator_script_id": "25",
"response": {
"httpVersion": "h2",
"redirectURL": "",
"status": 204,
"statusText": "",
"content": {
"mimeType": "text/html",
"size": 0
},
"headersSize": -1,
"bodySize": 53,
"cookies": [],
"headers": [{
"name": "alt-svc",
"value": "quic=":443"; ma=2592000; v="46,43",h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000"
}, {
"name": "content-length",
"value": "0"
}, {
"name": "content-type",
"value": "text/html; charset=UTF-8"
}, {
"name": "date",
"value": "Wed, 09 Oct 2019 22:36:11 GMT"
}, {
"name": "server",
"value": "gws"
}, {
"name": "status",
"value": "204"
}, {
"name": "x-frame-options",
"value": "SAMEORIGIN"
}, {
"name": "x-xss-protection",
"value": "0"
}],
"_transferSize": 53
},
"connection": "32",
"serverIPAddress": "172.217.10.132",
"timings": {
"blocked": 0.278,
"dns": -1,
"connect": -1,
"send": 0.189,
"wait": 61.614,
"receive": 0.443,
"ssl": -1,
"_queued": 0.793
},
"_requestTime": 3835.021284
}, {
"cache": {},
"startedDateTime": "2019-10-09T22:36:13.346Z",
"_initialPriority": "Low",
"_priority": "Low",
"pageref": "page_1",
"request": {
"method": "GET",
"url": "https://www.google.com/gen_204?atyp=i&ct=webfont_timing&cad=@2sec,1.s.376,1.ds.51,1.de.52,1.cs.52,1.ce.158,1.rq.160,1.rs.482,1.re.482,1.d.482,2.s.382,2.ds.0,2.de.0,2.cs.0,2.ce.0,2.rq.154,2.rs.476,2.re.477,2.d.477&s=365&er=866&eb=866&ei=2mCeXbriFY-Jgge34LyYBw&zx=1570660573345",
"queryString": [{
"name": "atyp",
"value": "i"
}, {
"name": "ct",
"value": "webfont_timing"
}, {
"name": "cad",
"value": "@2sec,1.s.376,1.ds.51,1.de.52,1.cs.52,1.ce.158,1.rq.160,1.rs.482,1.re.482,1.d.482,2.s.382,2.ds.0,2.de.0,2.cs.0,2.ce.0,2.rq.154,2.rs.476,2.re.477,2.d.477"
}, {
"name": "s",
"value": "365"
}, {
"name": "er",
"value": "866"
}, {
"name": "eb",
"value": "866"
}, {
"name": "ei",
"value": "2mCeXbriFY-Jgge34LyYBw"
}, {
"name": "zx",
"value": "1570660573345"
}],
"headersSize": -1,
"bodySize": 0,
"cookies": [],
"headers": [{
"name": "Referer",
"value": "https://www.google.com/"
}, {
"name": "Sec-Fetch-Mode",
"value": "no-cors"
}, {
"name": "User-Agent",
"value": "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/537.36 (KHTML, like Gecko) Ubuntu Chromium/76.0.3809.100 Chrome/76.0.3809.100 Safari/537.36"
}],
"httpVersion": "h2"
},
"time": 150.73700000000002,
"_initiator_detail": "{"type":"other"}",
"_initiator_type": "other",
"response": {
"httpVersion": "h2",
"redirectURL": "",
"status": 204,
"statusText": "",
"content": {
"mimeType": "text/html",
"size": 0
},
"headersSize": -1,
"bodySize": 138,
"cookies": [],
"headers": [{
"name": "alt-svc",
"value": "quic=":443"; ma=2592000; v="46,43",h3-Q048=":443"; ma=2592000,h3-Q046=":443"; ma=2592000,h3-Q043=":443"; ma=2592000"
}, {
"name": "content-length",
"value": "0"
}, {
"name": "content-type",
"value": "text/html; charset=UTF-8"
}, {
"name": "date",
"value": "Wed, 09 Oct 2019 22:36:13 GMT"
}, {
"name": "server",
"value": "gws"
}, {
"name": "status",
"value": "204"
}, {
"name": "x-frame-options",
"value": "SAMEORIGIN"
}, {
"name": "x-xss-protection",
"value": "0"
}],
"_transferSize": 138
},
"connection": "32",
"serverIPAddress": "172.217.10.132",
"timings": {
"blocked": 0.438,
"dns": -1,
"connect": -1,
"send": 0.148,
"wait": 149.673,
"receive": 0.478,
"ssl": -1,
"_queued": 0.715
},
"_requestTime": 3836.777231
}],
"browser": {
"name": "Chromium",
"version": "76.0.3809.100"
}
}
}

@gogo9th
Copy link
Author

gogo9th commented Oct 14, 2019

Hi Peter,

I wonder if you have any good news about having brwosertime record disk hits (and making the "--chrome.includeResponseBodies all" option work properly)...

@gogo9th
Copy link
Author

gogo9th commented Nov 1, 2019

I also wonder if this is unfixable by any chance..

@soulgalore
Copy link
Member

Hi @gogo9th sorry I forgot about this issue. I tried to turn it on in Chrome-har but it seems that all metrics aren't correct at the moment when we get them from disk cache. In this example all responses except the first one is from disk:
Screenshot 2019-11-02 at 15 30 16

Could be that Perf cascade that we use to render the waterfall needs to show that responses are from disk (I think we miss that).

When that these two is fixed I think we can make it configurable in Browsertime.

@gogo9th
Copy link
Author

gogo9th commented Nov 3, 2019

Hi Peter, thanks very much for your update!

@gogo9th
Copy link
Author

gogo9th commented Nov 26, 2019

Hi Peter,

I wonder if you have had any luck in this issue..

@ghost
Copy link

ghost commented Sep 21, 2020

Hi Peter,

Just enquiring whether this issue would be fixed with the new Browsertime?

Regards,
Gary

@soulgalore
Copy link
Member

No I haven't worked at this.

@soulgalore
Copy link
Member

So ... I'm thinking that since there gone a couple years and nothing has happened: if you have this issue I would try with the latest HAR for Firefox by enabling --firefox.bidihar and see what you get. If that works then we can re-open this and see what we can do for Chrome.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants