Tested 2025-07-10 02:36:03 using Chrome 138.0.7204.49 (runtime settings).
Metric | Value |
---|---|
Page metrics | |
Performance Score | 82 |
Total Page Transfer Size | 707.7 KB |
Requests | 39 |
Timing metrics | |
TTFB [median] | 92 ms |
First Paint [median] | 308 ms |
Fully Loaded [median] | 1.420 s |
Google Web Vitals | |
TTFB [median] | 92 ms |
First Contentful Paint (FCP) [median] | 308 ms |
Largest Contentful Paint (LCP) [median] | 1.092 s |
Cumulative Layout Shift (CLS) [median] | 0.00 |
Interaction To Next Paint (INP) [median] | 160 ms |
Total Blocking Time [median] | 220 ms |
Max Potential FID [median] | 205 ms |
CPU metrics | |
CPU long tasks [median] | 4 |
CPU longest task duration | 229 ms |
CPU last long task happens at | 739 ms |
Visual Metrics | |
First Visual Change [median] | 300 ms |
Speed Index [median] | 591 ms |
Visual Complete 85% [median] | 1.300 s |
Visual Complete 99% [median] | 1.366 s |
Last Visual Change [median] | 1.366 s |
Metric | min | median | mean | max |
---|---|---|---|---|
Visual Metrics | ||||
FirstVisualChange | 300 ms | 300 ms | 311 ms | 333 ms |
LastVisualChange | 1.000 s | 1.366 s | 1.244 s | 1.367 s |
SpeedIndex | 488 ms | 591 ms | 569 ms | 627 ms |
VisualReadiness | 700 ms | 1.033 s | 933 ms | 1.067 s |
VisualComplete85 | 1.000 s | 1.300 s | 1.211 s | 1.333 s |
VisualComplete95 | 1.000 s | 1.366 s | 1.244 s | 1.367 s |
VisualComplete99 | 1.000 s | 1.366 s | 1.244 s | 1.367 s |
Google Web Vitals | ||||
Time To First Byte (TTFB) | 89 ms | 92 ms | 94 ms | 100 ms |
Largest Contentful Paint (LCP) | 996 ms | 1.092 s | 1.067 s | 1.112 s |
First Contentful Paint (FCP) | 304 ms | 308 ms | 312 ms | 324 ms |
Cumulative Layout Shift (CLS) | 0 | 0 | 0 | 0 |
More metrics | ||||
firstPaint | 304 ms | 308 ms | 312 ms | 324 ms |
loadEventEnd | 552 ms | 613 ms | 669 ms | 842 ms |
User Timing | ||||
SearchAFTStart | 88 ms | 92 ms | 93 ms | 100 ms |
SearchHeadStart | 153 ms | 164 ms | 164 ms | 175 ms |
SearchBodyEnd | 247 ms | 253 ms | 262 ms | 285 ms |
trigger:SearchAFTEnd | 247 ms | 253 ms | 262 ms | 285 ms |
O7jPNb | 916 ms | 945 ms | 954 ms | 1.001 s |
CPU | ||||
Total Blocking Time | 209 ms | 220 ms | 229 ms | 258 ms |
Max Potential FID | 198 ms | 205 ms | 211 ms | 229 ms |
CPU long tasks | 4 | 4 | 4 | 4 |
CPU last long task happens at | 730 ms | 739 ms | 758 ms | 806 ms |
Run 1 SpeedIndex median
Use--filmstrip.showAll
to show all filmstrips.
The coach helps you find performance problems on your web page using web performance best practice rules. And gives you advice on privacy and best practices. Tested using Coach-core version 8.1.1.
Title | Advice | Score |
---|---|---|
Inline CSS for faster first render (inlineCss) | The page has both inline CSS and CSS requests even though it uses a HTTP/2-ish connection. If you have many users on slow connections, it can be better to only inline the CSS. Run your own tests and check the waterfall graph to see what happens. | 95 |
Description: In the early days of the Internet, inlining CSS was one of the ugliest things you can do. That has changed if you want your page to start rendering fast for your user. Always inline the critical CSS when you use HTTP/1 and HTTP/2 (avoid doing CSS requests that block rendering) and lazy load and cache the rest of the CSS. It is a little more complicated when using HTTP/2. Does your server support HTTP push? Then maybe that can help. Do you have a lot of users on a slow connection and are serving large chunks of HTML? Then it could be better to use the inline technique, becasue some servers always prioritize HTML content over CSS so the user needs to download the HTML first, before the CSS is downloaded. | ||
Avoid CPU Long Tasks (longTasks) | The page has 4 CPU long tasks with the total of 460 ms. The total blocking time is 258 ms and 1 long task before first contentful paint with total time of 52 ms. However the CPU Long Task is depending on the computer/phones actual CPU speed, so you should measure this on the same type of the device that your user is using. Use Geckoprofiler for Firefox or Chromes tracelog to debug your long tasks. | 20 |
Description: Long CPU tasks locks the thread. To the user this is commonly visible as a "locked up" page where the browser is unable to respond to user input; this is a major source of bad user experience on the web today. However the CPU Long Task is depending on the computer/phones actual CPU speed, so you should measure this on the same type of the device that your user is using. To debug you should use the Chrome timeline log and drag/drop it into devtools or use Firefox Geckoprofiler. | ||
Offenders: | ||
Avoid extra requests by setting cache headers (cacheHeaders) | The page has 6 requests that are missing a cache time. Configure a cache time so the browser doesn't need to download them every time. It will save 8 kB the next access. | 40 |
Description: The easiest way to make your page fast is to avoid doing requests to the server. Setting a cache header on your server response will tell the browser that it doesn't need to download the asset again during the configured cache time! Always try to set a cache time if the content doesn't change for every request. | ||
Offenders: | ||
Long cache headers is good (cacheHeadersLong) | The page has 1 request that have a shorter cache time than 30 days (but still a cache time). | 99 |
Description: Setting a cache header is good. Setting a long cache header (at least 30 days) is even better beacause then it will stay long in the browser cache. But what do you do if that asset change? Rename it and the browser will pick up the new version. | ||
Offenders: | ||
Total JavaScript size shouldn't be too big (javascriptSize) | The total JavaScript transfer size is 616.1 kB and the uncompressed size is 1.8 MB. This is totally crazy! There is really room for improvement here. | 0 |
Description: A lot of JavaScript often means you are downloading more than you need. How complex is the page and what can the user do on the page? Do you use multiple JavaScript frameworks? | ||
Offenders: | ||
Don't use private headers on static content (privateAssets) | The page has 3 requests with private headers. Make sure that the assets really should be private and only used by one user. Otherwise, make it cacheable for everyone. | 70 |
Description: If you set private headers on content, that means that the content are specific for that user. Static content should be able to be cached and used by everyone. Avoid setting the cache header to private. | ||
Offenders: |
Title | Advice | Score |
---|---|---|
Avoid using surveillance web sites (surveillance) | www.google.com harvest user information and sell it to other companies without the users agreement. That is not OK. | 0 |
Description: Do not use web sites that harvest private user information and sell it to other companies. See https://en.wikipedia.org/wiki/Surveillance_capitalism | ||
Offenders: | ||
Use a good Content-Security-Policy header to make sure you you avoid Cross Site Scripting (XSS) attacks. (contentSecurityPolicyHeader) | Set a Content-Security-Policy header to make sure you are not open for Cross Site Scripting (XSS) attacks. You can start with setting a Content-Security-Policy-Report-Only header, that will only report the violation, not stop the download. | 0 |
Description: Content Security Policy is delivered via a HTTP response header, and defines approved sources of content that the browser may load. It can be an effective countermeasure to Cross Site Scripting (XSS) attacks and is also widely supported and usually easily deployed. https://scotthelme.co.uk/content-security-policy-an-introduction/. | ||
Offenders: | ||
Set a referrer-policy header to make sure you do not leak user information. (referrerPolicyHeader) | Set a referrer-policy header to make sure you do not leak user information. | 0 |
Description: Referrer Policy is a new header that allows a site to control how much information the browser includes with navigations away from a document and should be set by all sites. https://scotthelme.co.uk/a-new-security-header-referrer-policy/. | ||
Offenders: | ||
Do not share user data with third parties. (thirdPartyPrivacy) | The page has 10% requests that are 3rd party (4 requests with a size of 123.4 kB). The page also have request to companies that harvest data from users and do not respect users privacy (see https://en.wikipedia.org/wiki/Surveillance_capitalism). The page do 4 survelliance requests and uses 2 survelliance tools. | 0 |
Description: Using third party requests shares user information with that third party. Please avoid that! The project https://github.com/patrickhulce/third-party-web is used to categorize first/third party requests. | ||
Offenders: |
Page info | |
---|---|
Title | |
Width | 1365 |
Height | 620 |
DOM elements | 410 |
Avg DOM depth | 10 |
Max DOM depth | 20 |
Iframes | 0 |
Script tags | 19 |
Local storage | 3.5 KB |
Session storage | 219 B |
Network Information API | 4g |
Data collected using Wappalyzer version 6.10.66. With updated code from Webappanalyzer 2024-12-27. Use --browsertime.firefox.includeResponseBodies html
or --browsertime.chrome.includeResponseBodies html
to help Wappalyzer find more information about technologies used.
Technology | Confidence | Category |
---|---|---|
HSTS | 100 | Security |
HTTP/3 | 100 | Miscellaneous |
Data collected using Third Party Web 0.26.2
Cdn |
---|
Google Fonts |
Google CDN |
Survelliance |
Google Fonts |
Google CDN |
Data from run 1
Visual Metrics | |
---|---|
First Visual Change | 300 ms |
Speed Index | 591 ms |
Visual Complete 85% | 1.300 s |
Visual Complete 95% | 1.367 s |
Visual Complete 99% | 1.367 s |
Last Visual Change | 1.367 s |
Visual Readiness | 1.067 s |
Navigation Timing | |
---|---|
backEndTime | 89 ms |
domContentLoadedTime | 607 ms |
domInteractiveTime | 378 ms |
domainLookupTime | 0 ms |
frontEndTime | 517 ms |
pageDownloadTime | 8 ms |
pageLoadTime | 613 ms |
redirectionTime | 0 ms |
serverConnectionTime | 0 ms |
serverResponseTime | 74 ms |
Google Web Vitals | |
---|---|
Time to first byte (TTFB) | 89 ms |
First Contentful Paint (FCP) | 324 ms |
Largest Contentful Paint (LCP) | 1.112 s |
Interaction to next paint (INP) | 160 ms |
Total Blocking Time (TBT) | 258 ms |
Extra timings | |
---|---|
TTFB | 89 ms |
First Paint | 324 ms |
Load Event End | 613 ms |
Fully loaded | 1.454 s |
User Timing marks | |
---|---|
SearchAFTStart | 88 ms |
SearchHeadStart | 175 ms |
SearchBodyEnd | 285 ms |
trigger:SearchAFTEnd | 285 ms |
O7jPNb | 1.001 s |
User Timing measures | ||
---|---|---|
Name | Start time | Duration |
kDcP9b | 1.001 s | 1 ms |
When in time the page main content is rendered (collected using the Largest Contentful Paint API). Read more about Largest Contentful Paint.
Element type | SPAN |
Element/tag | <span class="wIbe6e" id="promo_label_id"></span> |
Render time | 1.112 s |
Element render delay | 1.023 s |
TTFB | 89 ms |
Resource delay | 0 ms |
Resource load duration | 0 ms |
Element id | promo_label_id |
Load time | 0 ms |
Size (width*height) | 15352 |
DOM path | |
div#stUuGf > div > div:eq(1) > div > div > div > div:eq(1) > span#promo_label_id> div#stUuGf > div > div:eq(1) > div > div > div > div:eq(1) > span#promo_label_id> |
No layout shift detected.
Interaction to Next Paint (INP) is a metric that try to measure responsiveness. It's useful if you are testing user journeys. Read more about Interaction to Next Paint.
The measured latency was 160 ms.
Event type | pointerover |
Element type | INPUT |
Element class name | |
Event target | #gbqfbb |
Load state when the event happened | loading |
Read more about the Long Animation Frames API here here.
The top 10 longest animation frames entries
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
179.4 ms | 230.4 ms | 0.1 ms | 0.1 ms | 0 ms |
https://www.google.com/xjs/_/js/k=xjs.hd.en.hy9t9PKOUaA.2018.O/am=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAABAIAAAAAAAAAkACAAAAAAAAAAAAIAJIIAAAAAAAAAAAQAAAAAAAgwAAAAAMAAAAAAAAAAAEQAAAAABgAPgzMAIAIEACAAAAAAAAAABcAAAhAAAKAAAAAAAAAAAAAIAAAAAAAAAEAAAACAAAoAAAAAAAAAAEAAAAAAAAABAAAAQIAAAAAAAAAAAAAAAAAAD0AAAAAAAAAAAAAAAAAADAAQCAEAAAAEMYDQAAAAAAAAB0AAg8YEhBAQAAAAAAAAAAAAAAAAAAAhQEcyGBggABAAAAAAAAAAAAAAAAAAAAABDSxEID/d=1/ed=1/dg=3/br=1/rs=ACT90oExtvpE6nDM7bjfqSl9DQY2nR6_Tg/ee=ALeJib:B8gLwd;AfeaP:TkrAjf;BMxAGc:E5bFse;BgS6mb:fidj5d;BjwMce:cXX2Wb;CxXAWb:YyRLvc;DMzTfb:fNTHad;DQEued:Fevhcf;DULqB:RKfG5c;Dkk6ge:JZmW9e;DpcR3d:zL72xf;EABSZ:MXZt9d;ESrPQc:mNTJvc;EVNhjf:pw70Gc;EjXHpb:pSHqh;EmZ2Bf:zr1jrb;EnlcNd:WeHg4;F9mqte:UoRcbe;FSxmUe:fiZR8b;Fmv9Nc:O1Tzwc;G0KhTb:LIaoZ;GleZL:J1A7Od;HMDDWe:G8QUdb;HoYVKb:PkDN7e;HqeXPd:cmbnH;IBADCc:RYquRb;IoGlCf:b5lhvb;JXJSm:ii1RGf;JXS8fb:Qj0suc;JqSq7d:y9ePhe;JsbNhc:Xd8iUd;K5nYTd:ZDZcre;KOxcK:OZqGte;KQzWid:ZMKkN;KcokUb:KiuZBf;KpRAue:Tia57b;LBgRLc:SdcwHb,XVMNvd;LEikZe:byfTOb,lsjVmc;LXA8b:q7OdKd;LsNahb:ucGLNb;NJ1rfe:qTnoBf;NPKaK:SdcwHb;NSEoX:lazG7b;Np8Qkd:Dpx6qc;Nyt6ic:jn2sGd;OgagBe:cNTe0;OoK5v:Sp69O;OohIYe:mpEAQb;Pjplud:PoEs9b;PpTLXd:pJYjx;Q1Ow7b:x5CSu;Q6C5kf:pfdZCe;QGR0gd:Mlhmy;QYLF2b:pAQYUd;Qw8Feb:jpavUe;R4IIIb:QWfeKf;R9Ulx:CR7Ufe;RCF5Sd:X1kBmd;RDNBlf:zPRCJb;SLtqO:Kh1xYe;SMDL4c:fTfGO,fTfGO;SNUn3:ZwDk9d,xD8Kp;ScI3Yc:e7Hzgb,e7Hzgb;ShpF6e:N0pvGc;SwCqAd:fXbCZc;SzQQ3e:dNhofb;TIUVQd:M8uRWb;TroZ1d:vVVzjb;TxfV6d:YORN0b;U96pRd:FsR04;UBKJZ:LGDJGb;UDrY1c:eps46d;UVmjEd:EesRsb;UVzb9c:IvPZ6d;UyG7Kb:wQd0G;V2HTTe:RolTY;VGRfx:VFqbr;VN6jIc:ddQyuf;VOcgDe:YquhTb;VhA7bd:vAmQFf;VsAqSb:PGf2Re;WCEKNd:I46Hvd;WDGyFe:jcVOxd;Wfmdue:g3MJlb;YIZmRd:A1yn5d;YV5bee:IvPZ6d;ZSH6tc:QAvyLe;ZWEUA:afR4Cf;ZlOOMb:P0I0Ec;a56pNe:JEfCwb;aAJE9c:WHW6Ef;aCJ9tf:qKftvc;aVZq3e:EMeVIb;aZ61od:arTwJ;af0EJf:ghinId;bDXwRe:UsyOtc;bcPXSc:gSZLJb;cEt90b:ws9Tlc;cFTWae:gT8qnd;coJ8e:KvoW8;dIoSBb:ZgGg9b;dLlj2:Qqt3Gf;dowIGb:ebZ3mb,ebZ3mb;dtl0hd:lLQWFe;eBAeSb:Ck63tb;eBZ5Nd:audvde;eHDfl:ofjVkb;eJKchc:ATg1be;eO3lse:UefOmb;euOXY:OZjbQ;g8nkx:U4MzKc;gaub4:TN6bMe;gtVSi:ekUOYd;h3MYod:ws9Tlc;hK67qb:QWEO5b;heHB1:sFczq;hjRo6e:F62sG;hlqGX:FWz1ic;hsLsYc:Vl118;hwoVHd:zw4U8c;iFQyKf:QIhFr;iySzae:a6xXfd;jY0zg:Q6tNgc;k2Qxcb:XY51pe;kCQyJ:ueyPK;kbAm9d:MkHyGd;lOO0Vd:OTA3Ae;lbfkyf:MqGdUd;mWzs9c:fz5ukf;nJw4Gd:dPFZH;oGtAuc:sOXFj;oSUNyd:fTfGO,fTfGO;oUlnpc:RagDlc;okUaUd:wItadb;pKJiXd:VCenhc;pNsl2d:j9Yuyc;pXdRYb:JKoKVe;pj82le:ww04Df;qZx2Fc:j0xrE;qaS3gd:yiLg6e;qafBPd:sgY6Zb;qavrXe:zQzcXe;qddgKe:d7YSfd,x4FYXe;rQSrae:C6D5Fc;rdexKf:FEkKD;ropkZ:UT1DG;sTsDMc:kHVSUb;sZmdvc:rdGEfc;slIQ5d:pnOULd;tH4IIe:Ymry6;tbg2ob:nMC03e;tosKvd:ZCqP3;trZL0b:qY8PFe;uuQkY:u2V3ud;vEYCNb:FaqsVd;vGrMZ:lPJJ0c;vRlMvf:Iw9Xo;vfVwPd:lcrkwe;w3bZCb:ZPGaIb;w4rSdf:XKiZ9;w9w86d:dt4g2b;wQlYve:aLUfP;wR5FRb:O1Gjze,TtcOte;wV5Pjc:L8KGxe;xBbsrc:NEW1Qc;ysNiMc:CpIBjd;yxTchf:KUM7Z;z97YGf:oug9te;zB3wie:WtgrP;zOsCQe:Ko78Df;zaIgPb:Sl0pxd/m=cdos,hsm,jsa,mb4ZUb,cEt90b,SNUn3,qddgKe,sTsDMc,dtl0hd,eHDfl,YV5bee,d,csi | ||||
Invoker: https://www.google.com/xjs/_/js/k=xjs.hd.en.hy9t9PKOUaA.2018.O/am=AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIAAAAAAAAAAAAABAIAAAAAAAAAkACAAAAAAAAAAAAIAJIIAAAAAAAAAAAQAAAAAAAgwAAAAAMAAAAAAAAAAAEQAAAAABgAPgzMAIAIEACAAAAAAAAAABcAAAhAAAKAAAAAAAAAAAAAIAAAAAAAAAEAAAACAAAoAAAAAAAAAAEAAAAAAAAABAAAAQIAAAAAAAAAAAAAAAAAAD0AAAAAAAAAAAAAAAAAADAAQCAEAAAAEMYDQAAAAAAAAB0AAg8YEhBAQAAAAAAAAAAAAAAAAAAAhQEcyGBggABAAAAAAAAAAAAAAAAAAAAABDSxEID/d=1/ed=1/dg=3/br=1/rs=ACT90oExtvpE6nDM7bjfqSl9DQY2nR6_Tg/ee=ALeJib:B8gLwd;AfeaP:TkrAjf;BMxAGc:E5bFse;BgS6mb:fidj5d;BjwMce:cXX2Wb;CxXAWb:YyRLvc;DMzTfb:fNTHad;DQEued:Fevhcf;DULqB:RKfG5c;Dkk6ge:JZmW9e;DpcR3d:zL72xf;EABSZ:MXZt9d;ESrPQc:mNTJvc;EVNhjf:pw70Gc;EjXHpb:pSHqh;EmZ2Bf:zr1jrb;EnlcNd:WeHg4;F9mqte:UoRcbe;FSxmUe:fiZR8b;Fmv9Nc:O1Tzwc;G0KhTb:LIaoZ;GleZL:J1A7Od;HMDDWe:G8QUdb;HoYVKb:PkDN7e;HqeXPd:cmbnH;IBADCc:RYquRb;IoGlCf:b5lhvb;JXJSm:ii1RGf;JXS8fb:Qj0suc;JqSq7d:y9ePhe;JsbNhc:Xd8iUd;K5nYTd:ZDZcre;KOxcK:OZqGte;KQzWid:ZMKkN;KcokUb:KiuZBf;KpRAue:Tia57b;LBgRLc:SdcwHb,XVMNvd;LEikZe:byfTOb,lsjVmc;LXA8b:q7OdKd;LsNahb:ucGLNb;NJ1rfe:qTnoBf;NPKaK:SdcwHb;NSEoX:lazG7b;Np8Qkd:Dpx6qc;Nyt6ic:jn2sGd;OgagBe:cNTe0;OoK5v:Sp69O;OohIYe:mpEAQb;Pjplud:PoEs9b;PpTLXd:pJYjx;Q1Ow7b:x5CSu;Q6C5kf:pfdZCe;QGR0gd:Mlhmy;QYLF2b:pAQYUd;Qw8Feb:jpavUe;R4IIIb:QWfeKf;R9Ulx:CR7Ufe;RCF5Sd:X1kBmd;RDNBlf:zPRCJb;SLtqO:Kh1xYe;SMDL4c:fTfGO,fTfGO;SNUn3:ZwDk9d,xD8Kp;ScI3Yc:e7Hzgb,e7Hzgb;ShpF6e:N0pvGc;SwCqAd:fXbCZc;SzQQ3e:dNhofb;TIUVQd:M8uRWb;TroZ1d:vVVzjb;TxfV6d:YORN0b;U96pRd:FsR04;UBKJZ:LGDJGb;UDrY1c:eps46d;UVmjEd:EesRsb;UVzb9c:IvPZ6d;UyG7Kb:wQd0G;V2HTTe:RolTY;VGRfx:VFqbr;VN6jIc:ddQyuf;VOcgDe:YquhTb;VhA7bd:vAmQFf;VsAqSb:PGf2Re;WCEKNd:I46Hvd;WDGyFe:jcVOxd;Wfmdue:g3MJlb;YIZmRd:A1yn5d;YV5bee:IvPZ6d;ZSH6tc:QAvyLe;ZWEUA:afR4Cf;ZlOOMb:P0I0Ec;a56pNe:JEfCwb;aAJE9c:WHW6Ef;aCJ9tf:qKftvc;aVZq3e:EMeVIb;aZ61od:arTwJ;af0EJf:ghinId;bDXwRe:UsyOtc;bcPXSc:gSZLJb;cEt90b:ws9Tlc;cFTWae:gT8qnd;coJ8e:KvoW8;dIoSBb:ZgGg9b;dLlj2:Qqt3Gf;dowIGb:ebZ3mb,ebZ3mb;dtl0hd:lLQWFe;eBAeSb:Ck63tb;eBZ5Nd:audvde;eHDfl:ofjVkb;eJKchc:ATg1be;eO3lse:UefOmb;euOXY:OZjbQ;g8nkx:U4MzKc;gaub4:TN6bMe;gtVSi:ekUOYd;h3MYod:ws9Tlc;hK67qb:QWEO5b;heHB1:sFczq;hjRo6e:F62sG;hlqGX:FWz1ic;hsLsYc:Vl118;hwoVHd:zw4U8c;iFQyKf:QIhFr;iySzae:a6xXfd;jY0zg:Q6tNgc;k2Qxcb:XY51pe;kCQyJ:ueyPK;kbAm9d:MkHyGd;lOO0Vd:OTA3Ae;lbfkyf:MqGdUd;mWzs9c:fz5ukf;nJw4Gd:dPFZH;oGtAuc:sOXFj;oSUNyd:fTfGO,fTfGO;oUlnpc:RagDlc;okUaUd:wItadb;pKJiXd:VCenhc;pNsl2d:j9Yuyc;pXdRYb:JKoKVe;pj82le:ww04Df;qZx2Fc:j0xrE;qaS3gd:yiLg6e;qafBPd:sgY6Zb;qavrXe:zQzcXe;qddgKe:d7YSfd,x4FYXe;rQSrae:C6D5Fc;rdexKf:FEkKD;ropkZ:UT1DG;sTsDMc:kHVSUb;sZmdvc:rdGEfc;slIQ5d:pnOULd;tH4IIe:Ymry6;tbg2ob:nMC03e;tosKvd:ZCqP3;trZL0b:qY8PFe;uuQkY:u2V3ud;vEYCNb:FaqsVd;vGrMZ:lPJJ0c;vRlMvf:Iw9Xo;vfVwPd:lcrkwe;w3bZCb:ZPGaIb;w4rSdf:XKiZ9;w9w86d:dt4g2b;wQlYve:aLUfP;wR5FRb:O1Gjze,TtcOte;wV5Pjc:L8KGxe;xBbsrc:NEW1Qc;ysNiMc:CpIBjd;yxTchf:KUM7Z;z97YGf:oug9te;zB3wie:WtgrP;zOsCQe:Ko78Df;zaIgPb:Sl0pxd/m=cdos,hsm,jsa,mb4ZUb,cEt90b,SNUn3,qddgKe,sTsDMc,dtl0hd,eHDfl,YV5bee,d,csi |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
66.4 ms | 131.5 ms | 0.3 ms | 0.3 ms | 0 ms |
https://www.google.com/xjs/_/js/k=xjs.hd.en.hy9t9PKOUaA.2018.O/ck=xjs.hd.iTfnfNzwyco.L.B1.O/am=AFkqEAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAgAAAAIAAAAAAAAAAAADFAYgAAAAAAEAkBSAAAAAIAAgAAAIAJIIAAAAAAAAAAARAAEAAIAlwAAAAAMAAAACAQIAAAESAAAQBJgFPgzMAIloUECICAgAAAAgAZcAAAhAAALAAAAAAAhAAAAAIAAAAABAAAEgAC4CEJAqACSHgAKAgAUACAgAAAAIBAIAAQJEAIAngACDAAAQBACAID0AAAAQACAAAEAAAAAAADACQCAEQAkAEMYDQAAAAAAAAB0AAg8YEhBAQAAAAAAAAAAAAAAAAAAAhQEcyGBggABAAAAAAAAAAAAAAAAAAAAABDSxEID/d=0/dg=0/br=1/ujg=1/rs=ACT90oHSKvOrcpYB9haSChyJY4bEWwoxRg/m=T1HOxc,sy17v,sy17t,sy17u,sy17s,syoc,zx30Y,sy18b,sy18a,sy180,sy130,Wo3n8,ZgGg9b,dIoSBb,sy1dk,sy1dr,sy1ds,syr7,sy1dl,sy1dq,sy1dp,b6knsb,sy1dg,sy1df,sy18s,syvh,sycg,syce,sy9e,syci,JKoKVe,pXdRYb,sy23p,sy9f,sy9c,sy86,O1Gjze,TtcOte,wR5FRb,kQvlef,sye6,sye3,sydz,sydy,sybd,sydx,syc9,sydw,sydv,sydu,sydr,sydl,sydj,sya5,sya0,sy9u,sy9v,sy9k,sydp,sydi,sydh,sydg,syd4,sydd,sycu,sycl,sycm,sydc,syb6,syd2,sydb,sycp,sycq,syd9,syco,syd8,syc8,sycr,sycj,syd1,syd6,syd0,syd5,sycz,sycy,sycn,sycw,sycv,syct,sycs,syd3,syck,sycd,sy9j,sy7m,zbML3c,gskBEc,sy139,s980lf,syrw,loL8vb,sysi,sysh,sysg,ms4mZb,syq6,B2qlPe,syvd,NzU6V,syw3,syw2,zGLm3b,sy1cu,sy1ct,sy1cs,sy13k,sy13l,DhPYme,sy1e7,sy1e9,sy1da,sy1d8,sy1e8,sy1d7,sy1ec,sy1eb,sy1e5,sy1e6,KHourd,MpJwZc,UUJqVe,sy8x,sOXFj,sy8w,qTnoBf,oGtAuc,NJ1rfe,sy96,q0xTif,y05UD,PPhKqf,syzi,syzg,sy10t,syzj,sy160,sy102,sy15z,syzy,sy15r,sy15q,sy15i,sy111,syf0,sy15p,sy10v,sy15f,sy15j,sy10z,sy110,sy15s,syzo,sy15n,sy15m,sy15k,sym8,syni,sy15l,sy15b,sy158,sy15u,sy15g,sy15a,sy15e,sy15c,sy11p,sy15h,sy157,sy154,sy113,sy114,epYOx?xjs=s3 | ||||
Forced Style And Layout Duration: 1 ms Invoker: https://www.google.com/xjs/_/js/k=xjs.hd.en.hy9t9PKOUaA.2018.O/ck=xjs.hd.iTfnfNzwyco.L.B1.O/am=AFkqEAAAAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAgAAAAIAAAAAAAAAAAADFAYgAAAAAAEAkBSAAAAAIAAgAAAIAJIIAAAAAAAAAAARAAEAAIAlwAAAAAMAAAACAQIAAAESAAAQBJgFPgzMAIloUECICAgAAAAgAZcAAAhAAALAAAAAAAhAAAAAIAAAAABAAAEgAC4CEJAqACSHgAKAgAUACAgAAAAIBAIAAQJEAIAngACDAAAQBACAID0AAAAQACAAAEAAAAAAADACQCAEQAkAEMYDQAAAAAAAAB0AAg8YEhBAQAAAAAAAAAAAAAAAAAAAhQEcyGBggABAAAAAAAAAAAAAAAAAAAAABDSxEID/d=0/dg=0/br=1/ujg=1/rs=ACT90oHSKvOrcpYB9haSChyJY4bEWwoxRg/m=T1HOxc,sy17v,sy17t,sy17u,sy17s,syoc,zx30Y,sy18b,sy18a,sy180,sy130,Wo3n8,ZgGg9b,dIoSBb,sy1dk,sy1dr,sy1ds,syr7,sy1dl,sy1dq,sy1dp,b6knsb,sy1dg,sy1df,sy18s,syvh,sycg,syce,sy9e,syci,JKoKVe,pXdRYb,sy23p,sy9f,sy9c,sy86,O1Gjze,TtcOte,wR5FRb,kQvlef,sye6,sye3,sydz,sydy,sybd,sydx,syc9,sydw,sydv,sydu,sydr,sydl,sydj,sya5,sya0,sy9u,sy9v,sy9k,sydp,sydi,sydh,sydg,syd4,sydd,sycu,sycl,sycm,sydc,syb6,syd2,sydb,sycp,sycq,syd9,syco,syd8,syc8,sycr,sycj,syd1,syd6,syd0,syd5,sycz,sycy,sycn,sycw,sycv,syct,sycs,syd3,syck,sycd,sy9j,sy7m,zbML3c,gskBEc,sy139,s980lf,syrw,loL8vb,sysi,sysh,sysg,ms4mZb,syq6,B2qlPe,syvd,NzU6V,syw3,syw2,zGLm3b,sy1cu,sy1ct,sy1cs,sy13k,sy13l,DhPYme,sy1e7,sy1e9,sy1da,sy1d8,sy1e8,sy1d7,sy1ec,sy1eb,sy1e5,sy1e6,KHourd,MpJwZc,UUJqVe,sy8x,sOXFj,sy8w,qTnoBf,oGtAuc,NJ1rfe,sy96,q0xTif,y05UD,PPhKqf,syzi,syzg,sy10t,syzj,sy160,sy102,sy15z,syzy,sy15r,sy15q,sy15i,sy111,syf0,sy15p,sy10v,sy15f,sy15j,sy10z,sy110,sy15s,syzo,sy15n,sy15m,sy15k,sym8,syni,sy15l,sy15b,sy158,sy15u,sy15g,sy15a,sy15e,sy15c,sy11p,sy15h,sy157,sy154,sy113,sy114,epYOx?xjs=s3 |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
3.2 ms | 71.4 ms | 0.6 ms | 0.5 ms | 0.1 ms |
https://www.google.com/ | ||||
Forced Style And Layout Duration: 9 ms Invoker: XMLHttpRequest.onreadystatechange | ||||
https://www.gstatic.com/og/_/js/k=og.asy.en_US.aritu2OuMnA.2019.O/rt=j/m=_ac,_awd,ada,lldp,qads,abld/exm=/d=1/ed=1/rs=AA2YrTvbnqlbPitXeIORrL6qfY3sPbwCiA | ||||
Invoker: https://www.gstatic.com/og/_/js/k=og.asy.en_US.aritu2OuMnA.2019.O/rt=j/m=_ac,_awd,ada,lldp,qads,abld/exm=/d=1/ed=1/rs=AA2YrTvbnqlbPitXeIORrL6qfY3sPbwCiA |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
0 ms | 101.5 ms | 3.2 ms | 3 ms | 0.2 ms |
https://www.google.com/ | ||||
Invoker: https://www.google.com/ | ||||
https://www.google.com/ | ||||
Forced Style And Layout Duration: 25 ms Invoker: https://www.google.com/ |
There are no Server Timings.
There are no custom configured scripts.
There are no custom extra metrics from scripting.
How the page is built.
Summary | |
---|---|
HTTP version | HTTP/2.0 |
Total requests | 39 |
Total domains | 5 |
Total transfer size | 707.7 KB |
Total content size | 2.0 MB |
Responses missing compression | 13 |
Number of cookies | 5 |
Third party cookies | 0 |
Requests per response code | |
---|---|
200 | 27 |
204 | 12 |
Content | Header Size | Transfer Size | Content Size | Requests |
---|---|---|---|---|
html | 0 b | 49.9 KB | 159.6 KB | 14 |
css | 0 b | 3.8 KB | 10.4 KB | 4 |
javascript | 0 b | 601.6 KB | 1.7 MB | 10 |
image | 0 b | 682 B | 660 B | 1 |
font | 0 b | 38.6 KB | 38.6 KB | 1 |
plain | 0 b | 8.6 KB | 26.1 KB | 5 |
json | 0 b | 2.9 KB | 3.7 KB | 3 |
favicon | 0 b | 1.6 KB | 1.3 KB | 1 |
Total | 0 b | 707.7 KB | 2.0 MB | 39 |
Domain | Total download time | Transfer Size | Content Size | Requests |
---|---|---|---|---|
www.google.com | 677 ms | 586.2 KB | 1.7 MB | 31 |
fonts.gstatic.com | 35 ms | 38.6 KB | 38.6 KB | 1 |
www.gstatic.com | 47 ms | 81.9 KB | 221.7 KB | 3 |
ogads-pa.clients6.google.com | 148 ms | 382 B | 53 B | 2 |
play.google.com | 127 ms | 712 B | 131 B | 2 |
type | min | median | max |
---|---|---|---|
Expires | 0 seconds | 0 seconds | 1 year |
Last modified | 2 hours | 2 hours | 5 years |
Included requests done after load event end.
Content | Transfer Size | Requests |
---|---|---|
html | 162 B | 9 |
css | 1020 B | 2 |
javascript | 203.2 KB | 8 |
image | 0 b | 0 |
font | 0 b | 0 |
json | 2.5 KB | 2 |
favicon | 1.6 KB | 1 |
plain | 8.4 KB | 4 |
Total | 216.9 KB | 26 |
Includes requests done after DOM content loaded.
Content | Transfer Size | Requests |
---|---|---|
html | 162 B | 9 |
css | 1020 B | 2 |
javascript | 203.2 KB | 8 |
image | 0 b | 0 |
font | 0 b | 0 |
json | 2.5 KB | 2 |
favicon | 1.6 KB | 1 |
plain | 8.4 KB | 4 |
Total | 216.9 KB | 26 |
Third party requests categorised by Third party web version 0.26.2.
Category | Requests |
---|---|
cdn | 4 |
survelliance | 4 |
Category | Number of tools |
---|---|
cdn | 2 |
survelliance | 2 |
Calculated using .*google.* (use --firstParty
to configure).
Content | Header Size | Transfer Size | Content Size | Requests |
---|---|---|---|---|
html | 0 b | 49.9 KB | 159.6 KB | 14 |
css | 0 b | 2.2 KB | 4.5 KB | 3 |
javascript | 0 b | 523.0 KB | 1.5 MB | 9 |
image | 0 b | 682 B | 660 B | 1 |
font | 0 b | 0 b | 0 b | 0 |
plain | 0 b | 8.6 KB | 26.1 KB | 5 |
json | 0 b | 2.9 KB | 3.7 KB | 3 |
Total | N/A | 587.2 KB | 1.7 MB | 35 |
Content | Header Size | Transfer Size | Content Size | Requests |
---|---|---|---|---|
html | 0 b | 0 b | 0 b | 0 |
css | 0 b | 1.6 KB | 5.9 KB | 1 |
javascript | 0 b | 78.6 KB | 214.5 KB | 1 |
image | 0 b | 0 b | 0 b | 0 |
font | 0 b | 38.6 KB | 38.6 KB | 1 |
favicon | 0 b | 1.6 KB | 1.3 KB | 1 |
Total | N/A | 120.5 KB | 260.3 KB | 4 |