Tested 2025-07-25 16:55:36 using Chrome 138.0.7204.49 (runtime settings).
Metric | Value |
---|---|
Page metrics | |
Performance Score | 70 |
Total Page Transfer Size | 378.9 KB |
Requests | 17 |
Timing metrics | |
TTFB [median] | 322 ms |
First Paint [median] | 520 ms |
Fully Loaded [median] | 5.401 s |
Google Web Vitals | |
TTFB [median] | 322 ms |
First Contentful Paint (FCP) [median] | 520 ms |
Largest Contentful Paint (LCP) [median] | 520 ms |
Cumulative Layout Shift (CLS) [median] | 0.02 |
Interaction To Next Paint (INP) [median] | 120 ms |
Total Blocking Time [median] | 2.205 s |
Max Potential FID [median] | 656 ms |
CPU metrics | |
CPU long tasks [median] | 10 |
CPU longest task duration | 1.041 s |
CPU last long task happens at | 4.306 s |
Visual Metrics | |
First Visual Change [median] | 500 ms |
Speed Index [median] | 962 ms |
Visual Complete 85% [median] | 1.100 s |
Visual Complete 99% [median] | 5.834 s |
Last Visual Change [median] | 5.834 s |
Metric | min | median | mean | max |
---|---|---|---|---|
Visual Metrics | ||||
FirstVisualChange | 466 ms | 500 ms | 544 ms | 666 ms |
LastVisualChange | 5.766 s | 5.834 s | 5.855 s | 5.966 s |
SpeedIndex | 911 ms | 962 ms | 994 ms | 1.108 s |
VisualReadiness | 5.300 s | 5.300 s | 5.311 s | 5.334 s |
VisualComplete85 | 1.066 s | 1.100 s | 1.144 s | 1.266 s |
VisualComplete95 | 5.400 s | 5.434 s | 5.478 s | 5.600 s |
VisualComplete99 | 5.766 s | 5.834 s | 5.855 s | 5.966 s |
Google Web Vitals | ||||
Time To First Byte (TTFB) | 316 ms | 322 ms | 385 ms | 518 ms |
Largest Contentful Paint (LCP) | 476 ms | 520 ms | 557 ms | 676 ms |
First Contentful Paint (FCP) | 476 ms | 520 ms | 557 ms | 676 ms |
Cumulative Layout Shift (CLS) | 0.0186 | 0.0186 | 0.0186 | 0.0186 |
More metrics | ||||
firstPaint | 476 ms | 520 ms | 557 ms | 676 ms |
loadEventEnd | 987 ms | 1.018 s | 1.057 s | 1.165 s |
CPU | ||||
Total Blocking Time | 1.503 s | 2.205 s | 2.178 s | 2.826 s |
Max Potential FID | 616 ms | 656 ms | 771 ms | 1.041 s |
CPU long tasks | 8 | 10 | 10 | 12 |
CPU last long task happens at | 4.287 s | 4.306 s | 4.393 s | 4.586 s |
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 | ||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
Avoid CPU Long Tasks (longTasks) | The page has 12 CPU long tasks with the total of 3.439 s. The total blocking time is 2.826 s and 1 long task before first contentful paint with total time of 63 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. | 0 | ||||||||||||
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 doing redirects (assetsRedirects) | The page has 3 redirects. 3 of the redirects are from the base domain, please fix them! | 70 | ||||||||||||
Description: 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. | ||||||||||||||
Offenders: | ||||||||||||||
Avoid extra requests by setting cache headers (cacheHeaders) | The page has 11 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 115.2 kB the next access. | 0 | ||||||||||||
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: | ||||||||||||||
Always compress text content (compressAssets) | The page has 1 request that are served uncompressed. You could save a lot of bytes by sending them compressed instead. | 90 | ||||||||||||
Description: In the early days of the Internet there were browsers that didn't support compressing (gzipping) text content. They do now. Make sure you compress HTML, JSON, JavaScript, CSS and SVG. It will save bytes for the user; making the page load faster and use less bandwith. | ||||||||||||||
Offenders:
| ||||||||||||||
Avoid redirecting the main document (documentRedirect) | The main document gets redirected 3 time(s). Remove those redirect and make the page faster! | 0 | ||||||||||||
Description: 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. :) | ||||||||||||||
Offenders: | ||||||||||||||
Total JavaScript size shouldn't be too big (javascriptSize) | The total JavaScript transfer size is 120.1 kB and the uncompressed size is 304.7 kB. This is quite large. | 50 | ||||||||||||
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: | ||||||||||||||
Avoid missing and error requests (responseOk) | The page has 2 error responses. The page has 1 response with code 401. The page has 1 response with code 403. | 80 | ||||||||||||
Description: Your page should never request assets that return a 400 or 500 error. These requests are never cached. If that happens something is broken. Please fix it. | ||||||||||||||
Offenders: |
Title | Advice | Score |
---|---|---|
Meta description (metaDescription) | The page is missing a meta description. | 0 |
Description: Use a page description to make the page more relevant to search engines. | ||
Do not send too long headers (longHeaders) | https://gitlab.com/d...d/merge_requests/ has a header content-security-policy that is 1648 characters long. https://gitlab.com/d...d/merge_requests/ has a header content-security-policy that is 1648 characters long. https://gitlab.com/users/sign_in has a header content-security-policy that is 1648 characters long. https://gitlab.com/favicon.ico has a header content-security-policy that is 1621 characters long. https://gitlab.com/a...b2b82aa5143ef.png has a header content-security-policy that is 1621 characters long. https://gitlab.com/favicon.ico has a header content-security-policy that is 1621 characters long. https://challenges.c...GexUH7urZkc5JMPav has a header cf-chl-gen that is 817 characters long. https://challenges.c...6/of-fPemBpn7k6n2 has a header www-authenticate that is 1913 characters long. | 92 |
Description: Do not send response headers that are too long. | ||
Offenders: | ||
Avoid too many third party requests (thirdParty) | The page do 47% requests to third party domains (8 requests and 320.6 kB). First party is 9 requests and 67.3 kB. The page transfer more bytes from third party domains (320.6 kB) then first party (67.3 kB). The regex .*gitlab.* was used to calculate first/third party requests. | 0 |
Description: Do not load most of your content from third party URLs. | ||
Avoid unnecessary headers (unnecessaryHeaders) | There are 16 responses that sets a server header. | 84 |
Description: Do not send headers that you don't need. We look for p3p, cache-control and max-age, pragma, server and x-frame-options headers. Have a look at Andrew Betts - Headers for Hackers talk as a guide https://www.youtube.com/watch?v=k92ZbrY815c or read https://www.fastly.com/blog/headers-we-dont-want. | ||
Offenders: |
Title | Advice | Score |
---|---|---|
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: | ||
Set a strict transport header to make sure the user always use HTTPS. (strictTransportSecurityHeader) | A strict transport header is set but miss out on setting includeSubDomains | 90 |
Description: 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. | ||
Offenders: |
Page info | |
---|---|
Title | Just a moment... |
Width | 1350 |
Height | 699 |
DOM elements | 41 |
Avg DOM depth | 5 |
Max DOM depth | 8 |
Iframes | 0 |
Script tags | 3 |
Local storage | 0 b |
Session storage | 0 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 |
---|---|---|
GitLab | 100 | Issue trackers Development |
Ruby | 100 | Programming languages |
Ruby on Rails | 100 | Web frameworks |
Vue.js | 100 | JavaScript frameworks |
HSTS | 100 | Security |
Cloudflare | 100 | CDN |
HTTP/3 | 100 | Miscellaneous |
Data from run 1
Visual Metrics | |
---|---|
First Visual Change | 500 ms |
Speed Index | 962 ms |
Visual Complete 85% | 1.100 s |
Visual Complete 95% | 5.434 s |
Visual Complete 99% | 5.834 s |
Last Visual Change | 5.834 s |
Visual Readiness | 5.334 s |
Navigation Timing | |
---|---|
backEndTime | 316 ms |
domContentLoadedTime | 353 ms |
domInteractiveTime | 353 ms |
domainLookupTime | 0 ms |
frontEndTime | 687 ms |
pageDownloadTime | 15 ms |
pageLoadTime | 1.018 s |
redirectionTime | 286 ms |
serverConnectionTime | 0 ms |
serverResponseTime | 38 ms |
Google Web Vitals | |
---|---|
Time to first byte (TTFB) | 316 ms |
First Contentful Paint (FCP) | 520 ms |
Largest Contentful Paint (LCP) | 520 ms |
Cumulative Layout Shift (CLS) | 0.02 |
Interaction to next paint (INP) | 152 ms |
Total Blocking Time (TBT) | 2.826 s |
Extra timings | |
---|---|
TTFB | 316 ms |
First Paint | 520 ms |
Load Event End | 1.018 s |
Fully loaded | 5.401 s |
When in time the page main content is rendered (collected using the Largest Contentful Paint API). Read more about Largest Contentful Paint.
Element type | DIV |
Element/tag | <div id="ZEWft5" class="core-msg spacer spacer-top"></div> |
Render time | 520 ms |
Element render delay | 204 ms |
TTFB | 316 ms |
Resource delay | 0 ms |
Resource load duration | 0 ms |
Element id | ZEWft5 |
Load time | 0 ms |
Size (width*height) | 50816 |
DOM path | |
div:eq(0) > div > div#ZEWft5> div:eq(0) > div > div#ZEWft5> |
0.01863 cumulative layout shift collected from the Cumulative Layout Shift API.
These HTML elements contribute most to the Cumulative Layout Shifts of the page. The higher score, the more layout shift.
Score | HTML Element |
---|---|
0.01191 | <div id="ZEWft5" class="core-msg spacer spacer-top"></div>,<div class="footer" role="contentinfo"></div> |
body > div:eq(0) > div > div#ZEWft5,body > div:eq(1) | |
0.00672 | <div id="ZEWft5" class="core-msg spacer spacer-top"></div>,<div class="footer" role="contentinfo"></div> |
body > div:eq(0) > div > div#ZEWft5,body > div:eq(1) |
The elements that have shifted place is highlighted in the image (that have a higher value than 0.01). If the element shifted outside of the viewport, you will not see it there. It can be hard to understand what content that has shifted, if that's the case, checkout the video or the filmstrip of the run.
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 152 ms.
Event type | pointerover |
Element type | BODY |
Element class name | |
Event target | html>body |
Load state when the event happened | dom-content-loaded |
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 |
---|---|---|---|---|
991.7 ms | 1.045 s | 0.4 ms | 0.1 ms | 0.3 ms |
No availible script information. |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
600.6 ms | 650.3 ms | 0.7 ms | 0.6 ms | 0.1 ms |
No availible script information. |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
444.2 ms | 494.7 ms | 0.3 ms | 0 ms | 0.3 ms |
No availible script information. |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
183.4 ms | 233.3 ms | 0.4 ms | 0.4 ms | 0 ms |
No availible script information. |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
168.1 ms | 239.2 ms | 0.5 ms | 0.5 ms | 0 ms |
No availible script information. |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
162.1 ms | 211.7 ms | 0.7 ms | 0.6 ms | 0.1 ms |
No availible script information. |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
120.5 ms | 178.6 ms | 0.5 ms | 0.5 ms | 0 ms |
No availible script information. |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
58.3 ms | 108.2 ms | 1.5 ms | 0 ms | 1.5 ms |
https://gitlab.com/cdn-cgi/challenge-platform/h/b/orchestrate/chl_page/v1?ray=964d2f9d1ae253d3 | ||||
Invoker: XMLHttpRequest.onreadystatechange |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
44.9 ms | 105 ms | 0.4 ms | 0.4 ms | 0 ms |
https://gitlab.com/cdn-cgi/challenge-platform/h/b/orchestrate/chl_page/v1?ray=964d2f9d1ae253d3 | ||||
Invoker: TimerHandler:setTimeout |
Blocking duration | Work duration | Render duration | PreLayout Duration | Style And Layout Duration |
---|---|---|---|---|
32.7 ms | 82.7 ms | 0.3 ms | 0 ms | 0.3 ms |
No availible script information. |
name | duration | description |
---|---|---|
chlray | 0 | 964d2f9d1ae253d3 |
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 | 17 |
Total domains | 2 |
Total transfer size | 378.9 KB |
Total content size | 656.4 KB |
Responses missing compression | 8 |
Number of cookies | 1 |
Third party cookies | 0 |
Requests per response code | |
---|---|
200 | 10 |
301 | 2 |
302 | 2 |
307 | 1 |
401 | 1 |
403 | 1 |
URL | Type | Transfer Size | Content Size |
---|---|---|---|
https://challenges.c...GexUH7urZkc5JMPav | plain | 207.9 KB | 276.7 KB |
https://challenges.c...strate/chl_api/v1 | javascript | 57.0 KB | 138.3 KB |
https://gitlab.com/c...trate/chl_page/v1 | javascript | 44.0 KB | 111.4 KB |
https://challenges.c...GexUH7urZkc5JMPav | plain | 21.8 KB | 28.7 KB |
https://challenges.c...59bcf47b68/api.js | javascript | 16.2 KB | 47.8 KB |
https://gitlab.com/c...bNCTkGVzFN1fPgBsF | plain | 14.6 KB | 19.0 KB |
https://challenges.c.../new/normal/auto/ | html | 8.1 KB | 26.5 KB |
https://gitlab.com/users/sign_in | html | 5.9 KB | 7.1 KB |
https://challenges.c...6/of-fPemBpn7k6n2 | plain | 1.7 KB | 1 B |
https://gitlab.com/a...b2b82aa5143ef.png | image | 1.3 KB | 591 B |
https://challenges.c...6/aF4hWhR4D0b_Oa8 | image | 271 B | 148 B |
https://challenges.c...latform/h/b/cmg/1 | image | 209 B | 86 B |
https://gitlab.com/d...d/merge_requests/ | html | N/A | 0 b |
https://gitlab.com/d...d/merge_requests/ | html | N/A | 0 b |
https://gitlab.com/favicon.ico | html | N/A | 0 b |
https://gitlab.com/favicon.ico | html | N/A | 0 b |
https://gitlab.com/users/sign_in | other | N/A | 0 b |
Content | Header Size | Transfer Size | Content Size | Requests |
---|---|---|---|---|
html | 0 b | 8.1 KB | 26.5 KB | 1 |
javascript | 0 b | 117.3 KB | 297.6 KB | 3 |
image | 0 b | 1.7 KB | 825 B | 3 |
plain | 0 b | 244.3 KB | 324.4 KB | 3 |
Total | 0 b | 371.4 KB | 649.3 KB | 10 |
Domain | Total download time | Transfer Size | Content Size | Requests |
---|---|---|---|---|
gitlab.com | 699 ms | 65.8 KB | 138.1 KB | 9 |
challenges.cloudflare.com | 562 ms | 313.1 KB | 518.3 KB | 8 |
type | min | median | max |
---|---|---|---|
Expires | 0 seconds | 0 seconds | 1 year |
Last modified | 4 days | 4 days | 4 days |
Included requests done after load event end.
Content | Transfer Size | Requests |
---|---|---|
html | 0 b | 0 |
css | 0 b | 0 |
javascript | 0 b | 0 |
image | 271 B | 1 |
font | 0 b | 0 |
plain | 229.6 KB | 2 |
Total | 231.6 KB | 5 |
Includes requests done after DOM content loaded.
Content | Transfer Size | Requests |
---|---|---|
html | 8.1 KB | 1 |
css | 0 b | 0 |
javascript | 73.3 KB | 2 |
image | 1.7 KB | 3 |
font | 0 b | 0 |
plain | 244.3 KB | 3 |
Total | 329.0 KB | 12 |
Third party requests categorised by Third party web version 0.26.2.
Category | Requests |
---|
Category | Number of tools |
---|
Here's a list of domains that didn't match any tool in Third party web. If you are sure they are third party domains, please do a PR to that project. You can also fine tune the list using --firstParty
.
challenges.cloudflare.com |
Calculated using .*gitlab.* (use --firstParty
to configure).
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 | 44.0 KB | 111.4 KB | 1 |
image | 0 b | 1.3 KB | 591 B | 1 |
font | 0 b | 0 b | 0 b | 0 |
plain | 0 b | 14.6 KB | 19.0 KB | 1 |
Total | 82 B | 65.8 KB | 138.1 KB | 9 |
Content | Header Size | Transfer Size | Content Size | Requests |
---|---|---|---|---|
html | 0 b | 8.1 KB | 26.5 KB | 1 |
css | 0 b | 0 b | 0 b | 0 |
javascript | 0 b | 73.3 KB | 186.2 KB | 2 |
image | 0 b | 480 B | 234 B | 2 |
font | 0 b | 0 b | 0 b | 0 |
plain | 0 b | 229.6 KB | 305.4 KB | 2 |
Total | N/A | 313.1 KB | 518.3 KB | 8 |