Run 1 summary

https://audiogami.com

Tested 2026-05-26 22:15:25 using Chrome 148.0.7778.96 (runtime settings)

SummaryWaterfall MetricsVideoFilmstrip CoachPageXrayThird partyScreenshots

Summary

LCP992 ms
CLS0.000
Coach84
Loading & responsiveness
TTFB
20 ms
First Paint
260 ms
Fully Loaded
7.216 s
Total Blocking Time
64 ms
Max Potential FID
114 ms
Page weight & requests
Total transfer size
734.3 KB
Requests
34
CPU
CPU long tasks
3
CPU last long task at
5.692 s
Visual progress
First Visual Change
267 ms
Speed Index
374 ms
Visual Complete 85%
267 ms
Visual Complete 99%
5.448 s
Last Visual Change
6.685 s
Screenshot
Waterfall | Download HAR | 

Waterfall

First paintFCPLCPDOMContentLoadedDOM interactiveLoadRender-blockingRedirectError

Video

Run 1
Download video

Filmstrip

68 frames

Use --filmstrip.showAll to show all filmstrips.

0 s
0.1 sCPU Long Task duration 107 ms
0.2 sDOM Content Loaded Time 125 ms
0.3 sCPU Long Task duration 99 msFirst Contentful Paint 260 msFirst Visual Change 267 msVisual Complete 85% 267 ms
0.4 s
0.5 sPage Load Time 443 ms
0.6 sVisual Complete 95% 535 ms
0.7 s
0.8 s
0.9 s
1 sLCP <H1> 992 ms
1.1 s
1.2 s
1.3 s
1.4 s
1.5 s
1.6 s
1.7 s
1.8 s
1.9 s
2 s
2.1 s
2.2 s
2.3 s
2.4 s
2.5 s
2.6 s
2.7 s
2.8 s
2.9 s
3 s
3.1 s
3.2 s
3.3 s
3.4 s
3.5 s
3.6 s
3.7 s
3.8 s
3.9 s
4 s
4.1 s
4.2 s
4.3 s
4.4 s
4.5 s
4.6 s
4.7 s
4.8 s
4.9 s
5 s
5.1 s
5.2 s
5.3 s
5.4 s
5.5 sVisual Complete 99% 5.448 s
5.6 s
5.7 sCPU Long Task duration 114 ms
5.8 s
5.9 s
6 s
6.1 s
6.2 s
6.3 s
6.4 s
6.5 s
6.6 s
6.7 sLast Visual Change 6.685 s
Performance advice | Best practice advice | Privacy advice | Page info | Technologies | 

Coach

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.

Performance advice

84
2 errors9 warnings4 info
infoAdd decoding="async" to non-critical imagesdecodingAsync

The page has 2 images (out of 2) 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

Offenders
warn(0)Lazy-load below-the-fold imageslazyLoadingImages

The page has 1 below-the-fold image without loading="lazy". Add loading="lazy" so the browser defers downloading and decoding them until the user scrolls them into view.

Adding loading="lazy" to an <img> tells the browser not to download or decode it until it is close to the viewport. For images that the user may never see (deep in the page, behind a tab, in a footer carousel), this saves bandwidth and main-thread time during initial render. The LCP image and any image in the initial viewport should NOT be lazy-loaded — that delays the first paint. https://developer.mozilla.org/en-US/docs/Web/HTML/Element/img#loading

Offenders
warn(0)Serve images in modern formats (AVIF, WebP)modernImageFormats

The page ships 2 images (out of 2) in JPEG/PNG/GIF without a modern alternative. Wrap them in a <picture> with a <source type="image/avif"> or "image/webp" before the legacy <img>, or serve modern formats from your image pipeline directly. AVIF and WebP usually deliver 25–50% smaller files at the same quality.

AVIF and WebP routinely deliver 25–50% smaller files than JPEG and PNG at the same perceived quality, and every browser version still under support understands at least one of them. Ship modern formats either through a <picture> element with <source type="image/avif"> / "image/webp" entries in front of the legacy <img>, or directly from a content-negotiating image pipeline that returns AVIF / WebP when the client accepts it. https://web.dev/articles/serve-images-webp

Offenders
warn(0)Total JavaScript size shouldn't be too bigjavascriptSize

The total JavaScript transfer size is 466.6 kB and the uncompressed size is 1.4 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?

Offenders
URLTransferContent
https://audiogami.com/assets/index-G9G1VO-F.js213.4 KB667.7 KB
https://eu-assets.i.posthog.com/static/array.js69.9 KB187.3 KB
https://gamilab.ch/js/sdk.js28.2 KB28.0 KB
https://eu-assets.i.posthog.com/array/phc_uWtq5rhzYyYWwKdskw2aNA6Mgi4qv6e5vVWNvct4ELMJ/config.js725 B853 B
https://eu-assets.i.posthog.com/static/surveys.js?v=1.376.133.5 KB92.5 KB
https://sitebehaviour-cdn.fra1.cdn.digitaloceanspaces.com/index.min.js....com/index.min.js16.5 KB44.1 KB
https://tag.grainql.com/v4/audiogami-l5qnkx.js63.1 KB205.1 KB
https://sitebehaviour-cdn.fra1.cdn.digitaloceanspaces.com/replay-script.js30.4 KB94.6 KB
warn(40)Avoid CPU Long TaskslongTasks

The page has 3 CPU long tasks with the total of 320 ms. The total blocking time is 64 ms and 2 long tasks before first contentful paint with total time of 206 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.

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
  • self
  • self
  • self
infoThe favicon should be small and cacheablefavicon

The favicon size is 53.4 kB bytes. That's quite big, can you make it smaller?

It is easy to make the favicon big but please avoid doing that, because every browser will then perform an unnecessarily large download. And make sure the cache headers are set for a long time for the favicon. It is easy to miss since it's another content type.

Offenders
warn(70)Avoid extra requests by setting cache headerscacheHeaders

The page has 3 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 31.3 kB 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.

Offenders
infoAvoid too many fontsfewFonts

The page has 3 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.

Offenders
warn(80)Don't scale images in the browseravoidScalingImages

The page has 2 images 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.

Offenders
warn(80)Don't use private headers on static contentprivateAssets

The page has 2 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.

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
error(90)Avoid Frontend single point of failuresspof

The page has 1 request inside of the head that can cause a SPOF (single point of failure). Load them asynchronously or move them outside of the document head.

A page can be stopped from loading in the browser if a single JavaScript, CSS, and in some cases a font, couldn't be fetched or is loading really slowly (the white screen of death). That is a scenario you really want to avoid. Never load 3rd-party components synchronously inside of the head tag.

Offenders
infoLong cache headers is goodcacheHeadersLong

The page has 10 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.

Offenders
warn(90)Always compress text contentcompressAssets

The page has 1 request that are served uncompressed. You could save a lot of bytes by sending them compressed instead.

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
URLTransferContent
https://gamilab.ch/js/sdk.js28.2 KB28.0 KB
warn(95)Inline CSS for faster first renderinlineCss

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.

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.

error(95)Avoid using incorrect mime typesmimeTypes

Best practice advice

92
1 warning1 info
warn(50)Avoid too many third party requeststhirdParty

The page do more requests to third party domains (29 requests and 357.1 kB) then first party (5 requests and 394.8 kB). The regex .*audiogami.* was used to calculate first/third party requests.

Do not load most of your content from third party URLs.

infoAvoid unnecessary headersunnecessaryHeaders

There are 15 responses that sets both a max-age and expires header. There are 6 responses that sets a pragma no-cache header (that is a request header). There are 27 responses that sets a server header.

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

Privacy advice

64
1 error8 warnings4 info
warn(0)Declare a referrer policy on the documentreferrerPolicy

No <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

warn(0)Use a strict Content-Security-Policy header to mitigate cross-site scripting (XSS) attacks.contentSecurityPolicyHeader

Set 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

Offenders
infoSet a Cross-Origin-Embedder-Policy header so cross-origin subresources opt in to being embedded.crossOriginEmbedderPolicyHeader

Set 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

Offenders
warn(0)Set a Cross-Origin-Opener-Policy header to isolate the page from cross-origin windows.crossOriginOpenerPolicyHeader

Set 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

Offenders
infoSet a Cross-Origin-Resource-Policy header to limit who may embed the page.crossOriginResourcePolicyHeader

Set 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

Offenders
infoSet a NEL header so the browser reports network errors back to you.nelHeader

Set 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

Offenders
warn(0)Set a Permissions-Policy header to control which browser features the page can use.permissionsPolicyHeader

Set 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

Offenders
warn(0)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.

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
infoDeclare reporting endpoints so the browser can deliver Reporting-API events.reportingEndpointsHeader

Set 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

Offenders
error(0)Set a strict transport header to make sure the user always use HTTPS.strictTransportSecurityHeader

Set 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.

Offenders
warn(0)Do not share user data with third parties.thirdPartyPrivacy

The page has 15% requests that are 3rd party (5 requests with a size of 105.6 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 5 surveillance requests and uses 1 surveillance tool.

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
warn(0)Set X-Content-Type-Options: nosniff to stop the browser from MIME-sniffing the response.xContentTypeOptionsHeader

Set X-Content-Type-Options: nosniff on the document response to prevent MIME-sniffing.

X-Content-Type-Options: nosniff prevents browsers from interpreting files as a different MIME type than what is declared in the Content-Type header. This blocks a class of cross-site scripting and content-type confusion attacks and should be set on every response. https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/X-Content-Type-Options

Offenders
warn(80)Avoid third party cookies that is used to track the user.thirdPartyCookies

The page sets 2 third party cookies.

Third party cookies are used to track the user. They are automatically blocked in Safari and Firefox.

Offenders
  • digitaloceanspaces.com
  • digitaloceanspaces.com

Page info

Page info

TitleAudiogami — Voice-to-Structured-Data for No-Code
Width1350
Height12942
DOM elements1162
Avg DOM depth12
Max DOM depth21
Iframes0
Script tags14
Local storage1.7 KB
Session storage737 B
Network Information API4g

Resource hints

2 hints
preconnect
  • https://fonts.googleapis.com/
  • https://fonts.gstatic.com/

Technologies used to build the page

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.

Detected technologies

8 technologies

Third-party tools

2 tools

Data collected using Third Party Web version 0.29.2.

Cdn
  • Google Fonts
Surveillance
  • Google Fonts
Visual Metrics | Google Web Vitals | Largest Contentful Paint | Cumulative Layout Shift | Browser metrics | Long Aninimation Frames | Metrics from CDP | 

Visual Metrics

Visual progress
Visual progress at 0 s0.0s
Visual progress at 1 s1.0s
Visual progress at 1.9 s1.9s
Visual progress at 2.9 s2.9s
Visual progress at 3.8 s3.8s
Visual progress at 4.8 s4.8s
Visual progress at 5.7 s5.7s
Visual progress at 6.7 s6.7s
FCP0.26s
LCP0.99s
VC850.27s
Long tasks
0.0s1.3s2.7s4.0s5.4s6.7s

Google Web Vitals

Largest Contentful Paint

When the page main content is rendered, collected via the Largest Contentful Paint API. Read more about Largest Contentful Paint.

992 msLCP render time

Phase breakdown

  • TTFB20 ms
  • Resource load delay0 ms
  • Resource load duration0 ms
  • Element render delay972 ms

Element

Element type
<h1>
Size (w × h)
124110
Load time
0 ms

DOM path

body > div#root > div:eq(1) > main > div:eq(1) > div:eq(1) > div > section#hero > div > div > h1
LCP

The LCP element is highlighted in the screenshot. If nothing is highlighted the element was removed before the screenshot or the LCP API couldn't find it.

Cumulative Layout Shift

How much the page's content shifts as it loads, collected via the Cumulative Layout Shift API.

0.000cumulative layout shift score

No layout shifts were detected on this page.

Browser Metrics

Navigation Timing

Want render-blocking and recalculate-style metrics for FCP and LCP, plus CPU long tasks? Run with --cpu.

Extra timings

Long Animation Frames

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.

Long animation frame #1
198.3 ms
  • Blocking73 ms
  • Work101.5 ms
  • Render23.8 ms
  • Pre-layout23.1 ms
  • Style & layout0.7 ms

Scripts that ran during this frame

Forced style and layout
22 ms
Invoker
MessagePort.onmessage
Invoker type
event-listener
Source function
z
Window attribution
self
Source char position
11548
Long animation frame #2
249 ms
  • Blocking67.3 ms
  • Work178.4 ms
  • Render3.3 ms
  • Pre-layout2.6 ms
  • Style & layout0.7 ms

Scripts that ran during this frame

Invoker
TimerHandler:setTimeout
Invoker type
user-callback
Window attribution
self
Source char position
-1
Long animation frame #3
236.3 ms
  • Blocking57.5 ms
  • Work178.6 ms
  • Render0.2 ms
  • Pre-layout0.2 ms
  • Style & layout0 ms

Scripts that ran during this frame

Invoker
https://audiogami.com/assets/index-G9G1VO-F.js
Invoker type
module-script
Window attribution
self
Long animation frame #4
64.1 ms
  • Blocking1.5 ms
  • Work58.2 ms
  • Render4.4 ms
  • Pre-layout3.4 ms
  • Style & layout1 ms

Scripts that ran during this frame

Invoker
SCRIPT[src="https://sitebehaviour-cdn.fra1.cdn.digitaloceanspaces.com/replay-script.js"].onload
Invoker type
event-listener
Window attribution
self
Source char position
-1
Long animation frame #5
68.1 ms
  • Blocking0 ms
  • Work65.3 ms
  • Render2.8 ms
  • Pre-layout2.2 ms
  • Style & layout0.6 ms

Scripts that ran during this frame

Invoker
TimerHandler:setInterval
Invoker type
user-callback
Window attribution
self
Source char position
-1

Custom metrics collected through JavaScript

There are no custom configured scripts.

Extra metrics collected using scripting

There are no custom extra metrics from scripting.

CDP Performance33
AudioHandlers0
AudioWorkletProcessors0
Documents2
Frames2
JSEventListeners345
LayoutObjects1334
MediaKeySessions0
MediaKeys0
Nodes9333
Resources40
ContextLifecycleStateObservers16
V8PerContextDatas1
WorkerGlobalScopes0
UACSSResources0
RTCPeerConnections0
ResourceFetchers2
AdSubframes0
DetachedScriptStates1
ArrayBufferContents40
LayoutCount11
RecalcStyleCount462
LayoutDuration92
RecalcStyleDuration184
DevToolsCommandDuration6
ScriptDuration1145
V8CompileDuration0
TaskDuration2201
TaskOtherDuration772
ThreadTime2
ProcessTime4
JSHeapUsedSize15101208
JSHeapTotalSize26210304
FirstMeaningfulPaint259
Summary | Largest responses | Per content type | Per domain | Expires & last-modified | After onLoad | Render-blocking | 

PageXray

How the page is built.

HTTP versionHTTP/2.0
Total requests34
Total domains10
Transfer size734.3 KB
Content size1.8 MB
Missing compression1
Cookies22 third-party

Response codes

200
3294.1%
204
25.9%

Requests and sizes per content type

8 types
ContentHeader SizeTransfer SizeContent SizeRequests
html0 b20.4 KB148.1 KB1
css0 b17.4 KB119.7 KB3
javascript0 b455.6 KB1.3 MB8
image0 b85.7 KB85.5 KB1
font0 b99.7 KB99.6 KB3
favicon0 b52.1 KB51.9 KB1
json1.1 KB3.9 KB10.3 KB10
other550 B0 b0 b7
Total1.6 KB734.8 KB1.8 MB34

Data per domain

10 domains
DomainTotal download timeTransfer SizeContent SizeRequests
audiogami.com74 ms385.5 KB1.0 MB5
fonts.googleapis.com133 ms3.5 KB38.6 KB2
eu-assets.i.posthog.com69 ms104.1 KB280.6 KB3
fonts.gstatic.com63 ms99.7 KB99.6 KB3
gamilab.ch11 ms28.2 KB28.0 KB1
eu.i.posthog.com121 ms289 B15 B1
sitebehaviour-cdn.fra1.cdn.digitaloceanspaces.com66 ms46.9 KB138.7 KB2
tag.grainql.com84 ms63.1 KB205.1 KB1
event-store.sitebehaviour.com1.258 sN/A479 B7
clientapis.grainql.com1.246 s3.2 KB9.8 KB9

Expires & last-modified statistics

typeminmedianmax
Expires0 seconds0 seconds1 year
Last modified0 seconds2 days2 years

Requests loaded after onLoad event

20 requests

Includes requests done after load event end.

ContentTransfer SizeRequests
html0 b0
css0 b0
javascript110.0 KB3
image0 b0
font0 b0
favicon52.1 KB1
other0 b7
json3.6 KB9
Total165.2 KB20

Requests loaded after onContentLoad

27 requests

Includes requests done after DOM content loaded.

ContentTransfer SizeRequests
html0 b0
css0 b0
javascript172.3 KB6
image0 b0
font99.7 KB3
favicon52.1 KB1
json3.9 KB10
other0 b7
Total327.5 KB27

Render blocking requests

14 assets

Render blocking information directly from Chrome.

BlockingIn body parser blockingPotentially blocking
300
Categories | Tools | Cookies | First vs third | 

Third party

Third party requests categorised by Third party web version 0.29.2.

Third-party requests10
Tools1
Categories2
Third-party cookies2

Categories

2 categories
cdn
50% · 5 req · 1 tool
survelliance
50% · 5 req · 1 tool

Unmatched third party domains

7 domains

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.

  • eu-assets.i.posthog.com
  • gamilab.ch
  • eu.i.posthog.com
  • sitebehaviour-cdn.fra1.cdn.digitaloceanspaces.com
  • tag.grainql.com
  • event-store.sitebehaviour.com
  • clientapis.grainql.com
Third party cookies1
digitaloceanspaces.com1 cookie

First party requests and sizes per content type

5 requests

Calculated using .*audiogami.* (use --firstParty to configure).

ContentHeader SizeTransfer SizeContent SizeRequests
html0 b20.4 KB148.1 KB1
css0 b14.0 KB81.2 KB1
javascript0 b213.4 KB667.7 KB1
image0 b85.7 KB85.5 KB1
font0 b0 b0 b0
favicon0 b52.1 KB51.9 KB1
TotalN/A385.5 KB1.0 MB5

Third party requests and sizes per content type

29 requests
ContentHeader SizeTransfer SizeContent SizeRequests
html0 b0 b0 b0
css0 b3.5 KB38.6 KB2
javascript0 b242.3 KB652.4 KB7
image0 b0 b0 b0
font0 b99.7 KB99.6 KB3
favicon0 b0 b0 b0
json1.1 KB3.9 KB10.3 KB10
other550 B0 b0 b7
Total1.6 KB348.8 KB800.8 KB29
afterPageCompleteCheck.png | layoutShift.png | largestContentfulPaint.png | 

Screenshots