Tested 2026-07-07 13:59:48 using Chrome 150.0.7871.46 (runtime settings)
| Metric | min | median | mean | max |
|---|---|---|---|---|
| Visual Metrics | ||||
| FirstVisualChange | 800 ms | 1.067 s | 989 ms | 1.100 s |
| LastVisualChange | 6.500 s | 6.567 s | 6.889 s | 7.600 s |
| SpeedIndex | 5.513 s | 5.580 s | 5.853 s | 6.466 s |
| VisualReadiness | 5.400 s | 5.767 s | 5.900 s | 6.533 s |
| VisualComplete85 | 6.367 s | 6.434 s | 6.800 s | 7.600 s |
| VisualComplete95 | 6.500 s | 6.567 s | 6.889 s | 7.600 s |
| VisualComplete99 | 6.500 s | 6.567 s | 6.889 s | 7.600 s |
| Google Web Vitals | ||||
| Time To First Byte (TTFB) | 320 ms | 359 ms | 437 ms | 632 ms |
| Largest Contentful Paint (LCP) | 5.028 s | 5.160 s | 5.275 s | 5.636 s |
| Cumulative Layout Shift (CLS) | 0 | 0 | 0 | 0 |
| More metrics | ||||
| firstPaint | 1.164 s | 1.268 s | 1.237 s | 1.280 s |
| loadEventEnd | 3.348 s | 3.473 s | 3.449 s | 3.526 s |
| User Timing | ||||
| frontend_boot_css_time_seconds | 456 ms | 503 ms | 565 ms | 736 ms |
| frontend_boot_js_done_time_seconds | 463 ms | 800 ms | 748 ms | 982 ms |
| frontend_boot_load_time_seconds | 3.347 s | 3.472 s | 3.448 s | 3.526 s |
| CPU | ||||
| Total Blocking Time | 0 ms | 42 ms | 105 ms | 272 ms |
| Max Potential FID | 0 ms | 92 ms | 138 ms | 322 ms |
| CPU long tasks | 8 | 8 | 9 | 10 |
| CPU last long task happens at | 4.473 s | 4.506 s | 6.118 s | 9.375 s |
Run 1 SpeedIndex median
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 9.2.1.
decodingAsyncThe page has 1 image (out of 1) without a decoding hint. Add decoding="async" to non-critical images so the browser can decode them off the main thread.
Setting decoding="async" on an <img> tells the browser it can decode the image off the main thread, which keeps the page responsive to user interactions while images are being processed. The default ("auto") leaves the choice to the browser. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#decoding
firstContentfulPaintFirst contentful paint is poor (4.656 s). It is in the Google Web Vitals poor range, slower than 3 seconds.
The First Contentful Paint (FCP) metric measures the time from when the page starts loading to when any part of the page content is rendered on the screen. For this metric, "content" refers to text, images (including background images), <svg> elements, or non-white <canvas> elements.
largestContentfulPaintLargest contentful paint is poor 5.160 s. It is in the Google Web Vitals poor range, slower than 4 seconds.
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.
longTasksThe page has 8 CPU long tasks with the total of 2.870 s. The total blocking time is 0 ms and 8 long tasks before first contentful paint with total time of 2.870 s. 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.
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.
documentRedirectThe main document gets redirected 1 time(s). Remove those redirect and make the page faster!
You should never ever redirect the main document, because it will make the page load slower for the user. Well, you should redirect the user if the user tries to use HTTP and there's an HTTPS version of the page. The coach checks for that. :)
javascriptSizeThe total JavaScript transfer size is 2.9 MB and the uncompressed size is 10.1 MB. This is totally crazy! There is really room for improvement here.
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?
pageSizeThe page total transfer size is 3.2 MB, which is more than the coach limit of 3 MB. That is really big and you need to make it smaller.
Avoid having pages that have a transfer size over the wire of more than 3 MB (desktop) and 2 MB (mobile) because heavy pages hurt performance and are expensive for users on metered connections. Reference: HTTP Archive median page weight in 2024 was around 2.7 MB desktop / 2.4 MB mobile, so this rule fires when a page is above the modern median.
fewFontsThe page has 2 font requests. Do you really need them? What value does the fonts give the user?
How many fonts do you need on a page for the user to get the message? Fonts can slow down the rendering of content, try to avoid loading too many of them because worst case it can make the text invisible until they are loaded (FOIT—flash of invisible text), best case they will flicker the text content when they arrive.
avoidScalingImagesThe page has 1 image that are scaled more than 100 pixels. It would be better if those images are sent so the browser don't need to scale them.
It's easy to scale images in the browser and make sure they look good in different devices, however that is bad for performance! Scaling images in the browser takes extra CPU time and will hurt performance on mobile. And the user will download extra kilobytes (sometimes megabytes) of data that could be avoided. Don't do that, make sure you create multiple version of the same image server-side and serve the appropriate one.
assetsRedirectsThe page has 1 redirect. 1 of the redirects are from the base domain, please fix them!
A redirect is one extra step for the user to download the asset. Avoid that if you want to be fast. Redirects are even more of a showstopper on mobile.
cacheHeadersThe page has 1 request that are missing a cache time. Configure a cache time so the browser doesn't need to download them every time. It will save NaN undefined the next access.
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.
inlineCssThe 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.
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.
cacheHeadersLongThe page has 2 requests that have a shorter cache time than one year (but still a cache time).
Setting a cache header is good. Setting a long cache header (a year) is even better because the asset will stay in the browser cache across visits. For content-hashed URLs (e.g. app.4af2.css) you can safely use Cache-Control: max-age=31536000, immutable. For unversioned URLs that may change, use a revalidating strategy instead.
metaDescriptionThe page is missing a meta description.
Use a page description to make the page more relevant to search engines.
referrerPolicyNo <meta name="referrer"> tag was found on the page. Set a Referrer-Policy response header (preferred) or add a meta tag, for example <meta name="referrer" content="strict-origin-when-cross-origin">.
Without an explicit referrer policy the browser falls back to the user-agent default and may leak the full URL of the previous page (including query strings) to every cross-origin request. Set a Referrer-Policy response header (preferred) or a <meta name="referrer"> tag in the document. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Referrer-Policy
contentSecurityPolicyHeaderSet a Content-Security-Policy header to mitigate cross-site scripting attacks. You can start with a Content-Security-Policy-Report-Only header, which only reports violations rather than blocking them.
A Content-Security-Policy response header tells the browser which sources of script, style, and other content are allowed. The most effective form is a strict CSP using nonces or hashes together with strict-dynamic; the worst is a missing header, with unsafe-inline and unsafe-eval close behind. https://web.dev/articles/strict-csp
crossOriginEmbedderPolicyHeaderSet a Cross-Origin-Embedder-Policy header (typically require-corp or credentialless) on the document response to control cross-origin embedding.
Cross-Origin-Embedder-Policy (COEP) makes the page refuse to load cross-origin subresources unless they explicitly opt in via CORP or CORS. Together with Cross-Origin-Opener-Policy it puts the page in a cross-origin isolated context, which mitigates cross-window side-channel attacks (Spectre) and unlocks high-resolution timers and SharedArrayBuffer. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cross-Origin-Embedder-Policy
crossOriginOpenerPolicyHeaderSet a Cross-Origin-Opener-Policy header (typically same-origin) on the document response to isolate the page from cross-origin windows.
Cross-Origin-Opener-Policy (COOP) lets a page sever its window-group ties to cross-origin documents that opened it or that it opens. Together with Cross-Origin-Embedder-Policy it puts the page in a cross-origin isolated context, which mitigates cross-window side-channel attacks (Spectre) and unlocks high-resolution timers and SharedArrayBuffer. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cross-Origin-Opener-Policy
crossOriginResourcePolicyHeaderSet a Cross-Origin-Resource-Policy header (same-origin, same-site or cross-origin) on the document response to limit who may embed it.
Cross-Origin-Resource-Policy (CORP) is a per-response opt-in that tells the browser which origins are allowed to embed the resource. It blocks cross-origin or cross-site no-cors embedding (img, script, iframe, etc.) and is one of the building blocks of cross-origin isolation. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Cross-Origin-Resource-Policy
nelHeaderSet a NEL header (paired with Reporting-Endpoints) to collect connection-level error reports from the field.
The NEL (Network Error Logging) response header tells the browser to record connection-level failures (DNS, TLS, HTTP errors) and ship them to a reporting endpoint. NEL pairs with the Reporting-Endpoints / Report-To header — the page declares the endpoint group and NEL points at it. Together they give you visibility into errors that never reach your origin server. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/NEL
permissionsPolicyHeaderSet a Permissions-Policy header to control which browser features the page can use.
The Permissions-Policy response header (the successor to Feature-Policy) lets a site explicitly opt in or out of powerful browser features such as camera, microphone, geolocation, payment and clipboard. Setting a strict policy reduces the attack surface and limits what embedded third parties can do. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy
referrerPolicyHeaderSet a referrer-policy header to make sure you do not leak user information.
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/.
reportingEndpointsHeaderSet a Reporting-Endpoints header (or the legacy Report-To header) so CSP reports, NEL data and other Reporting-API events have an endpoint to land at.
The Reporting-Endpoints response header (the successor to Report-To) names the URLs that browsers should POST reports to. Without it, CSP report-to directives, Cross-Origin-Opener-Policy reports, NEL data and other Reporting-API events have nowhere to go. The legacy Report-To header is still accepted for older Chromium versions. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Reporting-Endpoints
strictTransportSecurityHeaderSet a strict transport header to make sure the user always use HTTPS.
The HTTP Strict-Transport-Security response header (often abbreviated as HSTS) lets a web site tell browsers that it should only be accessed using HTTPS, instead of using HTTP. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Strict-Transport-Security.
Data collected using
Coach-core version 9.2.1. With updated code from
Webappanalyzer 2026-05-04. Use
--browsertime.firefox.includeResponseBodies html or
--browsertime.chrome.includeResponseBodies html to help Wappalyzer find more information about technologies used.
Data from run 1
When the page main content is rendered, collected via the Largest Contentful Paint API. Read more about Largest Contentful Paint.
body > div#reactRoot > div > div#floating-boundary > div > div > main#pageContent > div:eq(1) > div > div > div > div > div:eq(0) > div > h1How much the page's content shifts as it loads, collected via the Cumulative Layout Shift API.
No layout shifts were detected on this page.
Want render-blocking and recalculate-style metrics for FCP and LCP, plus CPU long tasks? Run with --cpu.
A long animation frame (LOAF) is a frame that took ≥ 50 ms from input to the next paint. The breakdown shows where that time went. Read more about the Long Animation Frames API.
Showing the top 10 longest animation frames.
No script attribution available for this frame.
No script attribution available for this frame.
No script attribution available for this frame.
There are no custom configured scripts.
There are no custom extra metrics from scripting.
How the page is built.
| Content | Header Size | Transfer Size | Content Size | Requests |
|---|---|---|---|---|
| html | 0 b | 12.5 KB | 58.7 KB | 1 |
| css | 0 b | 18.6 KB | 92.4 KB | 2 |
| javascript | 0 b | 2.8 MB | 9.7 MB | 9 |
| image | 0 b | 1.2 KB | 1.1 KB | 1 |
| font | 0 b | 215.0 KB | 214.7 KB | 2 |
| svg | 0 b | 7.0 KB | 15.3 KB | 7 |
| Total | 0 b | 3.1 MB | 10.0 MB | 22 |
| Domain | Total download time | Transfer Size | Content Size | Requests |
|---|---|---|---|---|
| sitespeed.cloudex.top | 4.087 s | 3.1 MB | 10.0 MB | 23 |
| type | min | median | max |
|---|---|---|---|
| Expires | 0 seconds | 1 year | 1 year |
| Last modified | 2 weeks | 2 weeks | 2 weeks |
Includes requests done after load event end.
| Content | Transfer Size | Requests |
|---|---|---|
| html | 0 b | 0 |
| css | 0 b | 0 |
| javascript | 6.3 KB | 2 |
| image | 1.2 KB | 1 |
| font | 215.0 KB | 2 |
| favicon | 0 b | 0 |
| svg | 4.5 KB | 6 |
| Total | 226.9 KB | 11 |
Includes requests done after DOM content loaded.
| Content | Transfer Size | Requests |
|---|---|---|
| html | 0 b | 0 |
| css | 0 b | 0 |
| javascript | 6.3 KB | 2 |
| image | 1.2 KB | 1 |
| font | 215.0 KB | 2 |
| favicon | 0 b | 0 |
| svg | 4.5 KB | 6 |
| Total | 226.9 KB | 11 |
Render blocking information directly from Chrome.
| Blocking | In body parser blocking | Potentially blocking |
|---|---|---|
| 2 | 0 | 0 |
| URL | Type |
|---|---|
| https://sitespeed.cl...b7faf562ee0bf4.js | nonblocking |
| https://sitespeed.cl...32991b209273a0.js | nonblocking |
| https://sitespeed.cl...57f07af2a4656b.js | nonblocking |
| https://sitespeed.cl...nter-Medium.woff2 | nonblocking |
| https://sitespeed.cl...ter-Regular.woff2 | nonblocking |
| https://sitespeed.cl...41416938549393.js | nonblocking |
| https://sitespeed.cl...95fb5573093d22.js | nonblocking |
| https://sitespeed.cl...0ccb339c5e432d.js | nonblocking |
| https://sitespeed.cl...7f29f113067dd0.js | nonblocking |
| https://sitespeed.cl...39193045180e3.css | blocking |
| https://sitespeed.cl...01a342d63fec89.js | nonblocking |
| https://sitespeed.cl...013bf6a89b7b0.css | blocking |
| https://sitespeed.cl...f1dee1a9eadea9.js | nonblocking |
Third party requests categorised by Third party web version 0.29.2.
No third-party requests detected
Every request on this page resolved to a first-party domain. There are no entries in Third party web to attribute, no third-party tools to enumerate, and no third-party cookies set. If you expected to see entries here you can fine-tune the first-party domain list with --firstParty.
Calculated using .*cloudex.* (use --firstParty to configure).
| Content | Header Size | Transfer Size | Content Size | Requests |
|---|---|---|---|---|
| html | 0 b | 12.5 KB | 58.7 KB | 1 |
| css | 0 b | 18.6 KB | 92.4 KB | 2 |
| javascript | 0 b | 2.8 MB | 9.7 MB | 9 |
| image | 0 b | 1.2 KB | 1.1 KB | 1 |
| font | 0 b | 215.0 KB | 214.7 KB | 2 |
| favicon | 0 b | 0 b | 0 b | 0 |
| svg | 0 b | 7.0 KB | 15.3 KB | 7 |
| Total | N/A | 3.1 MB | 10.0 MB | 23 |
| Content | Header Size | Transfer Size | Content Size | Requests |
|---|---|---|---|---|
| html | 0 b | 0 b | 0 b | 0 |
| css | 0 b | 0 b | 0 b | 0 |
| javascript | 0 b | 0 b | 0 b | 0 |
| image | 0 b | 0 b | 0 b | 0 |
| font | 0 b | 0 b | 0 b | 0 |
| favicon | 0 b | 0 b | 0 b | 0 |
| Total | N/A | N/A | N/A |