Tested 2025-04-27 04:32:10 using Chrome 135.0.7049.52 (runtime settings).
Metric | Value |
---|---|
Page metrics | |
Performance Score | 97 |
Total Page Transfer Size | 71.7 KB |
Requests | 7 |
Timing metrics | |
TTFB [median] | 489 ms |
First Paint [median] | 924 ms |
Fully Loaded [median] | 981 ms |
Google Web Vitals | |
TTFB [median] | 489 ms |
First Contentful Paint (FCP) [median] | 924 ms |
Largest Contentful Paint (LCP) [median] | 924 ms |
Cumulative Layout Shift (CLS) [median] | 0.00 |
Interaction To Next Paint (INP) [median] | 360 ms |
CPU metrics | |
CPU long tasks [median] | 2 |
CPU longest task duration | 314 ms |
CPU last long task happens at | 577 ms |
Visual Metrics | |
First Visual Change [median] | 900 ms |
Speed Index [median] | 1.167 s |
Visual Complete 85% [median] | 900 ms |
Visual Complete 99% [median] | 9.233 s |
Last Visual Change [median] | 10.800 s |
Metric | min | median | mean | max |
---|---|---|---|---|
Visual Metrics | ||||
FirstVisualChange | 900 ms | 900 ms | 907 ms | 933 ms |
LastVisualChange | 10.800 s | 10.800 s | 10.893 s | 11.033 s |
SpeedIndex | 1.082 s | 1.167 s | 1.156 s | 1.199 s |
LargestImage | 900 ms | 900 ms | 907 ms | 933 ms |
Heading | 900 ms | 900 ms | 907 ms | 933 ms |
LargestContentfulPaint | 900 ms | 900 ms | 907 ms | 933 ms |
LastMeaningfulPaint | 900 ms | 900 ms | 907 ms | 933 ms |
VisualReadiness | 9.867 s | 9.900 s | 9.987 s | 10.133 s |
VisualComplete85 | 900 ms | 900 ms | 907 ms | 933 ms |
VisualComplete95 | 900 ms | 900 ms | 907 ms | 933 ms |
VisualComplete99 | 9.233 s | 9.233 s | 9.240 s | 9.266 s |
Google Web Vitals | ||||
Time To First Byte (TTFB) | 487 ms | 489 ms | 488 ms | 489 ms |
Largest Contentful Paint (LCP) | 904 ms | 924 ms | 920 ms | 932 ms |
First Contentful Paint (FCP) | 904 ms | 924 ms | 920 ms | 932 ms |
Cumulative Layout Shift (CLS) | 0 | 0.0003 | 0.0002 | 0.0003 |
More metrics | ||||
firstPaint | 904 ms | 924 ms | 920 ms | 932 ms |
loadEventEnd | 852 ms | 876 ms | 872 ms | 888 ms |
CPU | ||||
Total Blocking Time | 0 ms | 0 ms | 0 ms | 0 ms |
Max Potential FID | 0 ms | 0 ms | 0 ms | 0 ms |
CPU long tasks | 1 | 2 | 2 | 2 |
CPU last long task happens at | 508 ms | 577 ms | 552 ms | 583 ms |
Run 4 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 |
---|---|---|
Avoid slowing down the critical rendering path (avoidRenderBlocking) | The page has 1 blocking requests and 1 in body parser blocking (2 JavaScript and 0 CSS). | 80 |
Description: The critical rendering path is what the browser needs to do to start rendering the page. Every file requested inside of the head element will postpone the rendering of the page, because the browser need to do the request. Avoid loading JavaScript synchronously inside of the head (you should not need JavaScript to render the page), request files from the same domain as the main document (to avoid DNS lookups) and inline CSS for really fast rendering and a short rendering path. | ||
Offenders: | ||
Have a fast largest contentful paint (largestContentfulPaint) | You can add fetchPriority="high" to the image to increase the load priority in Chrome. | 95 |
Description: Largest contentful paint is one of Google Web Vitals and reports the render time of the largest image or text block visible within the viewport, relative to when the page first started loading. To be fast according to Google, it needs to render before 2.5 seconds and results over 4 seconds is poor performance. | ||
Avoid CPU Long Tasks (longTasks) | The page has 2 CPU long tasks with the total of 332 ms. The total blocking time is 0 ms and 2 long tasks before first contentful paint with total time of 332 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. | 60 |
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: | ||
Long cache headers is good (cacheHeadersLong) | The page has 5 requests that have a shorter cache time than 30 days (but still a cache time). | 95 |
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: |
Your best practice score is perfect!
Title | Advice | Score |
---|---|---|
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: |
Page info | |
---|---|
Title | Wikipedia |
Width | 1904 |
Height | 1193 |
DOM elements | 1046 |
Avg DOM depth | 9 |
Max DOM depth | 12 |
Iframes | 0 |
Script tags | 4 |
Local storage | 94 B |
Session storage | 0 b |
Network Information API | 4g |
Resource Hints |
---|
preconnect |
https://upload.wikimedia.org/ |
https://en.wikipedia.org/ |
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 |
---|---|---|
Apache Traffic Server 9.2.9 | 100 | Web servers |
HSTS | 100 | Security |
Data from run 4
Visual Metrics | |
---|---|
First Visual Change | 900 ms |
Speed Index | 1.167 s |
Largest Image | 900 ms |
Heading | 900 ms |
LargestContentfulPaint | 900 ms |
Last Meaningful Paint | 900 ms |
Largest Contentful Paint | 900 ms |
Visual Complete 85% | 900 ms |
Visual Complete 95% | 900 ms |
Visual Complete 99% | 9.233 s |
Last Visual Change | 11.033 s |
Visual Readiness | 10.133 s |
Navigation Timing | |
---|---|
backEndTime | 489 ms |
domContentLoadedTime | 843 ms |
domInteractiveTime | 843 ms |
domainLookupTime | 89 ms |
frontEndTime | 349 ms |
pageDownloadTime | 15 ms |
pageLoadTime | 852 ms |
redirectionTime | 0 ms |
serverConnectionTime | 201 ms |
serverResponseTime | 209 ms |
Google Web Vitals | |
---|---|
Time to first byte (TTFB) | 489 ms |
First Contentful Paint (FCP) | 904 ms |
Largest Contentful Paint (LCP) | 904 ms |
Total Blocking Time (TBT) | 0 ms |
First Contentful Paint info | |
---|---|
Elements that needed recalculate style before FCP | 1899 |
Time spent in recalculate style before FCP | 25.173 ms |
Extra timings | |
---|---|
TTFB | 489 ms |
First Paint | 904 ms |
Load Event End | 852 ms |
Fully loaded | 953 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 | IMG |
Element/tag | <img class="central-featured-logo" src="portal/wikipedia.org/assets/img/Wikipedia-logo-v2.png" srcset="portal/wikipedia.org/assets/img/Wikipedia-logo-v2@1.5x.png 1.5x, portal/wikipedia.org/assets/img/Wikipedia-logo-v2@2x.png 2x" width="200" height="183" alt=""> |
Render time | 904 ms |
Element render delay | 285 ms |
TTFB | 489 ms |
Resource delay | 8 ms |
Resource load duration | 123 ms |
Elements that needed recalculate style before LCP | 1899 |
Time spent in recalculate style before LCP | 25.173 ms |
Load time | 822 ms |
URL | https://www.wikipedi...pedia-logo-v2.png |
Size (width*height) | 36600 |
DOM path | |
main > div:eq(0) > img> main > div:eq(0) > img> |
No layout shift detected.
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 |
---|---|---|---|---|
265.4 ms | 15.1 ms | 310.9 ms | 309.2 ms | 1.7 ms |
No availible script information. |
name | duration | description |
---|---|---|
cache | 0 | hit-front |
host | 0 | cp3067 |
There are no custom configured scripts.
There are no custom extra metrics from scripting.
Name | Display Time | X | Y | Width | Height |
---|---|---|---|---|---|
LargestImage (Wikipedia-logo-v2.png) | 900 ms | 852 | 198 | 200 | 183 |
<img class="central-featured-logo" src="portal/wikipedia.org/assets/img/Wikipedia-logo-v2.png" srcset="portal/wikipedia.org/assets/img/Wikipedia-logo-v2@1.5x.png 1.5x, portal/wikipedia.org/assets/img/Wikipedia-logo-v2@2x.png 2x" width="200" height="183" alt=""> | |||||
Heading | 900 ms | 864 | 52 | 176 | 69 |
<h1 class="central-textlogo-wrapper"></h1> | |||||
LargestContentfulPaint (Wikipedia-logo-v2.png) | 900 ms | 852 | 198 | 200 | 183 |
<img class="central-featured-logo" src="portal/wikipedia.org/assets/img/Wikipedia-logo-v2.png" srcset="portal/wikipedia.org/assets/img/Wikipedia-logo-v2@1.5x.png 1.5x, portal/wikipedia.org/assets/img/Wikipedia-logo-v2@2x.png 2x" width="200" height="183" alt=""> |
How the page is built.
Summary | |
---|---|
HTTP version | HTTP/2.0 |
Total requests | 7 |
Total domains | 1 |
Total transfer size | 71.7 KB |
Total content size | 180.8 KB |
Responses missing compression | 3 |
Number of cookies | 1 |
Third party cookies | 0 |
Requests per response code | |
---|---|
200 | 7 |
URL | Type | Transfer Size | Content Size |
---|---|---|---|
https://www.wikipedia.org/ | html | 22.7 KB | 88.7 KB |
https://www.wikipedi...rite-de847d1a.svg | svg | 18.6 KB | 49.4 KB |
https://www.wikipedi...pedia-logo-v2.png | image | 16.2 KB | 15.5 KB |
https://www.wikipedi...dex-6bf78c58fd.js | javascript | 8.5 KB | 21.9 KB |
https://www.wikipedi...s-logo_sister.png | image | 2.7 KB | 2.0 KB |
https://www.wikipedi...con/wikipedia.ico | favicon | 1.7 KB | 2.7 KB |
https://www.wikipedi...ie9-ce3fe8e88d.js | javascript | 1.3 KB | 614 B |
Content | Header Size | Transfer Size | Content Size | Requests |
---|---|---|---|---|
html | 0 b | 22.7 KB | 88.7 KB | 1 |
javascript | 0 b | 9.8 KB | 22.5 KB | 2 |
image | 0 b | 18.9 KB | 17.5 KB | 2 |
svg | 0 b | 18.6 KB | 49.4 KB | 1 |
favicon | 0 b | 1.7 KB | 2.7 KB | 1 |
Total | 0 b | 71.7 KB | 180.8 KB | 7 |
Domain | Total download time | Transfer Size | Content Size | Requests |
---|---|---|---|---|
www.wikipedia.org | 1.295 s | 71.7 KB | 180.8 KB | 7 |
type | min | median | max |
---|---|---|---|
Expires | 1 hour | 1 day | 1 year |
Last modified | 4 weeks | 5 weeks | 5 weeks |
Included requests done after load event end.
Content | Transfer Size | Requests |
---|---|---|
html | 0 b | 0 |
css | 0 b | 0 |
javascript | 0 b | 0 |
image | 0 b | 0 |
font | 0 b | 0 |
favicon | 1.7 KB | 1 |
Total | 1.7 KB | 1 |
Includes requests done after DOM content loaded.
Content | Transfer Size | Requests |
---|---|---|
html | 0 b | 0 |
css | 0 b | 0 |
javascript | 0 b | 0 |
image | 0 b | 0 |
font | 0 b | 0 |
favicon | 1.7 KB | 1 |
Total | 1.7 KB | 1 |
Render blocking information directly from Chrome.
Blocking | In body parser blocking | Potentially blocking |
---|---|---|
1 | 1 | 0 |
URL | Type |
---|---|
https://www.wikipedi...dex-6bf78c58fd.js | blocking |
https://www.wikipedi...ie9-ce3fe8e88d.js | in_body_parser_blocking |
Download the Chrome trace log and drag and drop it into Developer Tools / Performance in Chrome.
Collected using the Long Task API. A long task is a task that take 50 milliseconds or more.
Type | Quantity | Total duration (ms) |
---|---|---|
Total Blocking Time | 0 | |
Max Potential First Input Delay | 0 | |
Long Tasks before First Paint | 1 | 313 |
Long Tasks before First Contentful Paint | 1 | 313 |
Long Tasks before Largest Contentful Paint | 1 | 313 |
Long Tasks after Load Event End | 0 | 0 |
Total Long Tasks | 1 | 313 |
CPU last long task happened at 508 ms
name | startTime | duration | containerId | containerName | containerSrc | containerType |
---|---|---|---|---|---|---|
unknown | 508 | 313 | window |
Calculated using Tracium.
Categories (ms) | |
---|---|
parseHTML | 6 |
styleLayout | 319 |
paintCompositeRender | 4 |
scriptParseCompile | 0 |
scriptEvaluation | 10 |
garbageCollection | 0 |
other | 61 |
Events (ms) | |
---|---|
Layout | 294 |
RunTask | 36 |
UpdateLayoutTree | 25 |
CpuProfiler::StartProfiling | 10 |