Performance
· 16 checks — Lighthouse + waterfall + sustainability rolled into one auditable list.Performance-focused optimization plan with CWV assessment, top offenders, and time estimates
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
3.33 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
26.14 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
3.57 s
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.000
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
10.27 s
Time to Interactive Time to Interactive — how long until the page is fully interactive and responds to user input. Under 3.8s is good.
27.95 s
Page Load Progression
FPage Weight BudgetAction5.2 MB transferred, 111 requestsFIX
Convert images to WebP/AVIF and resize to display dimensions to reduce transfer size.
Image bandwidth is high — modern formats (WebP/AVIF) and resizing typically cut it 50%+.
Source: web.dev
Large JavaScript bundles delay interactivity. Split code by route or defer non-critical scripts.
JavaScript bundle is large — code-split routes and lazy-load off-screen components to defer.
Source: web.dev
Each request adds latency. Bundle small files, use sprites, or eliminate unnecessary requests.
High HTTP request count — bundling, sprite-ing, and HTTP/2 server push can reduce per-request overhead.
Source: web.dev
FJS Execution CostAction73240ms total JS executionFIX
Main Thread Breakdown
| Script | Total | Scripting | Parse/Compile | Party |
|---|---|---|---|---|
| https://www.databricks.com/en-website-assets/320c792b-f0a06de50e1fcff148e6.js | 43213ms | 13520ms | 36ms | 1st |
| https://www.databricks.com/ | 20455ms | 294ms | 26ms | 1st |
| https://www.databricks.com/en-website-assets/app-c4450c99660bffa0d15a.js | 4438ms | 3571ms | 28ms | 1st |
| Unattributable | 2313ms | 45ms | 0ms | 3rd |
| https://www.databricks.com/en-website-assets/09e28184553ed2519de7ca45fec366af00a90c0e-7d6196f37f3aa0eaabde.js | 1044ms | 836ms | 99ms | 1st |
| https://www.databricks.com/en-website-assets/c8f7fe3b0e41be846d5687592cf2018ff6e22687-7ad1797c312a9bb0cb5d.js | 371ms | 25ms | 19ms | 1st |
| https://www.googletagmanager.com/gtm.js?id=GTM-TWTKQQ | 335ms | 234ms | 52ms | 3rd |
| https://www.googletagmanager.com/gtag/js?id=AW-369195016&cx=c>m=4e6460 | 255ms | 211ms | 42ms | 3rd |
| https://www.googletagmanager.com/gtag/js?id=DC-10510347&cx=c>m=4e6460 | 236ms | 133ms | 33ms | 3rd |
| https://js-agent.newrelic.com/nr-spa-1.290.0.min.js | 219ms | 176ms | 13ms | 3rd |
Showing top 10 of 13 scripts
FJS BundlesAction29 scripts, 777 KB unusedFIX
Downloaded but never executed on this page.
| Script | Size | Unused | Minified | Party |
|---|---|---|---|---|
| https://www.databricks.com/en-website-assets/09e28184553ed2519de7ca45fec366af00a90c0e-7d6196f37f3aa0eaabde.js | 301 KB | 245 KB (82%) | ✓ | 1st |
| https://www.googletagmanager.com/gtm.js?id=GTM-TWTKQQ | 181 KB | 82 KB (45%) | ✓ | 3rd |
| https://www.googletagmanager.com/gtag/js?id=AW-369195016&cx=c>m=4e6460 | 145 KB | 65 KB (45%) | ✓ | 3rd |
| https://www.googletagmanager.com/gtag/js?id=DC-15572922&cx=c>m=4e6460 | 129 KB | 64 KB (50%) | ✓ | 3rd |
| https://www.googletagmanager.com/gtag/js?id=DC-10510347&cx=c>m=4e6460 | 130 KB | 63 KB (49%) | ✓ | 3rd |
| https://www.databricks.com/en-website-assets/c8f7fe3b0e41be846d5687592cf2018ff6e22687-7ad1797c312a9bb0cb5d.js | 61 KB | 46 KB (76%) | ✓ | 1st |
| https://dev.visualwebsiteoptimizer.com/cdn/web/djIkdGU6Ny4wOmFzeW5jJWpxdWVyeQ==/tag-b4b25398f77a667c2eec7cdbdd89aabcbr.js | 72 KB | 46 KB (63%) | ✓ | 3rd |
| https://www.databricks.com/en-website-assets/320c792b-f0a06de50e1fcff148e6.js | 77 KB | 41 KB (54%) | ✓ | 1st |
| https://www.databricks.com/en-website-assets/2760db51e6f8366a4f18618ca34f89087d05b949-51bc69a0ef9aa4447f22.js | 45 KB | 35 KB (77%) | ✓ | 1st |
| https://www.databricks.com/en-website-assets/74cfde4e-bf7a8735c413b1734424.js | 39 KB | 34 KB (87%) | ✓ | 1st |
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
Consider code splitting or tree shaking to reduce unused code.
This bundle has high unused code — code-split or tree-shake to ship only what executes.
Source: web.dev / Lighthouse coverage
CImage OptimizationAction38 images, 0 KB saveableREVIEW
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Performance issues directly impact user engagement and conversion rates.
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
Set explicit width and height to prevent CLS.
Image without explicit width/height — browser can't reserve space; CLS jumps when image loads.
Source: web.dev / Core Web Vitals
BHTTP Cachingpublic, max-age=0, must-revalidateREVIEW
public, max-age=0, must-revalidate
| Directive | Value | Meaning |
|---|---|---|
| public | — | Any cache may store this response |
| max-age | 0 | Cache for 0 seconds |
| must-revalidate | — | Must recheck with server after expiry |
A+Third-Party Impact14% third-party, 0 ms blockingPASS
A+Text CompressionAll text resources are compressedPASS
A+Font Loading6 fonts (108 KB)PASS
Web fonts
6
108 KB total
Render-blocking
0
of 6
Dominant font-display
swap
Most common across fonts
Font loading timeline
Optimization checklist
- Preload critical fonts (priority=high)
- Use woff2 format for all fonts
- Set font-display to swap, optional, or fallback
- Subset large fonts (≤100 KB each)
A+Resource CachingAll resources properly cachedPASS
A+Critical Rendering PathNo render-blocking resourcesPASS
A+Resource Hints12 hints, 0 missing preconnectsPASS
Current Resource Hints
12 resource hints configured
A+Render-Blocking ResourcesNo render-blocking resources detectedPASS
A+Third-Party ResourcesNo third-party resources detectedPASS
A+Green HostingWhether the site is served from green-energy infrastructurePASS
Green Hosting
This site is hosted on green energy infrastructure
Provider: Cloudflare
Network Waterfall111 requests over 0msINFO
Performance analysis not available for this result.
Third-Party Script CostPer-script blocking time, transfer cost, and cache headersINFO
| Script | Category | Execution | Transfer | Unused | Monthly Cost | Verdict |
|---|---|---|---|---|---|---|
Unattributable Unattributable | Other | 2313ms | 0 KB | — | $7/mo | Costly |
Google Tag Manager www.googletagmanager.com | Tag Manager | 335ms | 181 KB | 45% | $1/mo | Costly |
Google Tag Manager www.googletagmanager.com | Tag Manager | 255ms | 145 KB | 45% | $1/mo | Costly |
Google Tag Manager www.googletagmanager.com | Tag Manager | 236ms | 130 KB | 49% | $1/mo | Costly |
js-agent.newrelic.com js-agent.newrelic.com | Other | 219ms | 33 KB | — | $1/mo | Costly |
dev.visualwebsiteoptimizer.com dev.visualwebsiteoptimizer.com | Other | 157ms | 72 KB | 63% | $0/mo | Optional |
Google Tag Manager www.googletagmanager.com | Tag Manager | 148ms | 129 KB | 50% | $0/mo | Optional |
These scripts may cost more than they're worth
- Unattributable adds 2313ms and costs ~$7/month
- Google Tag Manager adds 335ms and costs ~$1/month
- Google Tag Manager adds 255ms and costs ~$1/month
- Google Tag Manager adds 236ms and costs ~$1/month
- js-agent.newrelic.com adds 219ms and costs ~$1/month
Unattributable takes 2313ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
Google Tag Manager takes 335ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
Google Tag Manager takes 255ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
Google Tag Manager takes 236ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
js-agent.newrelic.com takes 219ms of CPU time. Consider loading it asynchronously or replacing it with a lighter alternative.
This script has high main-thread execution time — optimize hot paths or defer.
Source: web.dev
63% of dev.visualwebsiteoptimizer.com's code is unused. The script may be loading features you don't use.
Bundle has high unused-code ratio — tree-shaking and route-splitting recover the wasted bytes.
Source: web.dev