Mobile 375 × 812

Desktop 1440 × 900

Score: 73 / 100
Based on 8 categories, 0 sections
Room to improve — your 21.0s load time is above Google's 2.5s 'Good' threshold.
Several missing protections leave your users and data exposed.
Several issues make your site difficult for assistive technology users.
Well-optimized for search — your content is discoverable.
Solid infrastructure — fast server responses across the board.
Mostly compliant — a few items need attention.
Missing metadata means poor previews on social media and search.
Heavier than average — reducing page weight saves energy and bandwidth.
The overall score is a weighted average of individual category scores. Categories with more impact on user experience and security carry more weight.
Weights reflect general web best practices. Individual needs may differ.
Content-Security-Policy header is missing
Security gaps expose your site and users to attacks, eroding trust.
HSTS header is missing
Security gaps expose your site and users to attacks, eroding trust.
No Content-Security-Policy header found
Security gaps expose your site and users to attacks, eroding trust.
Page weighs 16.7 MB (4.9 MB transferred)
Performance issues directly impact user engagement and conversion rates.
is missing width/height — may cause layout shift
Performance issues directly impact user engagement and conversion rates.
High impact, low effort — start here.
High impact, requires investment.
Small gains, minimal effort.
Nothing in this quadrant — good news.
Low impact, high effort — do last.
Nothing in this quadrant — good news.
[](https://beavercheck.com/results/525588d9-0c5f-4d2b-add4-242d05aaa750)<a href="https://beavercheck.com/results/525588d9-0c5f-4d2b-add4-242d05aaa750"><img src="https://beavercheck.com/badge?url=https%3A%2F%2Frackspace.com" alt="BeaverCheck Score"></a>https://beavercheck.com/badge?url=https%3A%2F%2Frackspace.comThis badge auto-updates with your latest scan result.
Your site performs reasonably well, but a few targeted fixes could meaningfully improve results. Your LCP of 21.0s exceeds Google's 2.5s 'Good' threshold and the 2 performance issues below directly contribute to it. Addressing the critical issues below would have the most immediate impact on your user trust.
6 barrier(s) likely increasing bounce by ~29%.
Page takes 21.0s to load
+12% bounceUsers abandon at ~3s — you're 18.5s over the 2.5s threshold
Fix: Optimize render-blocking resources, preload the hero image, and compress images
Page feels frozen for 4.8s
+5% bounceClicks on the primary CTA are ignored while JavaScript runs
Fix: Break up long tasks; defer non-critical JavaScript to post-hydration
No HSTS header
+1% bounceReturning visitors are briefly exposed to downgrade attacks on first request
Fix: Set Strict-Transport-Security: max-age=31536000; includeSubDomains
No Content-Security-Policy header
+1% bounceHigher XSS blast radius — one compromised script can exfiltrate the checkout form
Fix: Ship a reporting-only CSP first, then enforce once violations are clean
No structured data
+2% bounceNo rich-result eligibility in Google — lower SERP CTR vs competitors with stars and prices
Fix: Add JSON-LD for your page type (Product, Article, FAQPage, LocalBusiness, …)
47 broken link(s) on the page
+5% bounceClicks land on 404s — trust drops and the session often ends
Fix: Fix or remove the broken destinations surfaced on the Content tab
Preliminary CRO audit — each barrier links to the tab with detailed analysis.
€468 investment → €1.15/month returns + EUR 120,500,000 risk avoided
€468
6h · 5 findings
€1.15 /mo
~€14 / year
EUR 120,500,000
if kept compliant
€128 — in quick wins — start here for the fastest payback
Figures combine localized regulatory fine ceilings, search/conversion value priced against local CPC, and bandwidth waste estimates. Results depend on implementation quality and audience composition. Not legal or financial advice.
5.5 developer hours at €85/hr
Based on European Union rates (€85/hr)
Start here for the best return on investment
€10,041,668 / month at risk
~€120,500,014 / year if left unfixed
€120,500,000
+7 more
€1.15 /mo
15527.6 MB/mo × 0.074 EUR/GB
Compliance figures represent the statutory maximum fine for the most severe triggered category, capped per regulation — not the sum of per-finding penalties. Based on published regulatory fine ranges. This is not legal advice.
Unique monthly visitors from your analytics
Purchases, signups, or key actions
Optional — for revenue estimation
more engaged visitors from reduced bounce
Fix 4 critical issues to capture this value
Based on Google/Deloitte research ("Milliseconds Make Millions") showing a ~7% bounce rate increase per additional second of LCP above the 2.5s "Good" threshold.
Your site's LCP: → estimated after fixes.
These are estimates based on industry research — actual results vary
Your data stays in your browser — nothing is sent to our servers
Thanks for your feedback!
We'll use a cached audit if available, or offer to scan.
Industry-standard audits powered by Google Lighthouse.
Key metrics that affect user experience.
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
7.60 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
20.98 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
4.80 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.
8.31 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.
34.09 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
Performance issues directly impact user engagement and conversion rates.
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Duration |
|---|---|---|
| /sites/default/files/css/css_PSRCcxFF5cdcpr8hAuLKdi9-F0tD... | 45.4 KiB | 756 ms |
| /sites/default/files/css/css_deZahSfshgdXLzXqoOt1cZn754L7... | 9.9 KiB | 151 ms |
| /sites/default/files/css/css_Wd4ZWd1Y3YwSyBhOzzqBr1mqodNS... | 1.5 KiB |
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
div#slick-slide01 > div.slide__content > div.slide__media > div.media div#slick-slide01 > div.slide__content > div.slide__media > div.media | /sites/default/files/styles/rxt_banner_1600/public/2026-0... | 283.6 KiB | 44.0 KiB |
Seattle Children's Logo div.layout__container > div.layout__column > div.quote > img.quote__image | www.rackspace.com/sites/default/files/2025-02/Customer-Logo.png | 9.9 KiB | 8.7 KiB |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
Redirects introduce additional delays before the page can be loaded. Learn how to avoid page redirects.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| rackspace.com/ | 985 ms |
| www.rackspace.com/ | 0.0 ms |
The maximum potential First Input Delay that your users could experience is the duration of the longest task. Learn more about the Maximum Potential First Input Delay metric.
Performance issues directly impact user engagement and conversion rates.
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /sites/default/files/css/css_PSRCcxFF5cdcpr8hAuLKdi9-F0tD... | 45.2 KiB | 42.5 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| www.googletagmanager.com/gtag/js?id=G-66ELC63MK1&cx=c>m=4e64k0 | 175.3 KiB | 69.7 KiB |
| www.googletagmanager.com/gtag/js?id=G-Q5K4KEBD4D&cx=c>m=4e64k0 | 169.5 KiB | 68.1 KiB |
| /sites/default/files/js/js_R1pR95HOQZ3-lyoeEHknz2rb8e9jTJ... | 112.2 KiB | 65.0 KiB |
| www.googletagmanager.com/gtm.js?id=GTM-M8LWJF | 192.2 KiB | 62.7 KiB |
| www.googletagmanager.com/gtag/destination?id=DC-4361691&cx=c>m=4e64k0 | 129.1 KiB | 62.6 KiB |
| www.googletagmanager.com/gtag/destination?id=AW-981481402&cx=c>m=4e64k0 | 133.9 KiB | 59.8 KiB |
| www.googletagmanager.com/gtag/js?id=AW-16665108602&cx=c>m=4e64k0 | 143.4 KiB | 54.8 KiB |
| script.hotjar.com/modules.6a0f3932cb1341a35c18.js | 56.1 KiB | 37.7 KiB |
| /dSsMaecqPRal/dyWtGKbMbi/xT/OiV7VNShXDQLGh9b/H1l0Fl8sBQ/I... | 172.6 KiB | 37.2 KiB |
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.
Performance issues directly impact user engagement and conversion rates.
Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread work
Performance issues directly impact user engagement and conversion rates.
| Category | Time Spent |
|---|---|
| Script Evaluation | 6.7 s |
| Other | 3.5 s |
| Style & Layout | 2.2 s |
| Script Parsing & Compilation | 643 ms |
| Rendering | 533 ms |
| Parse HTML & CSS | 232 ms |
| Garbage Collection | 190 ms |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
Seattle Children's Logo div.layout__container > div.layout__column > div.quote > img.quote__image | www.rackspace.com/sites/default/files/2025-02/Customer-Logo.png |
AWS logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/AWS_logo_RGB_1c_Gray850.svg |
RiverMeadow logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/RiverMeadow.svg |
Imperva logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Imperva.svg |
DLR logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/DLR.svg |
Cloudfare logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Cloudflare.svg |
Qualys logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Qualys.svg |
CloudHealth logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/CloudHealth.svg |
VMware logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/VMware.svg |
Rubrik logo td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Rubrik.svg |
Fivetran logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Fivetran.svg |
Datadog logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Datadog.svg |
BT logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/BT.svg |
OpenInfra logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/OpenInfra.svg |
snowflake logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Snowflake_0.svg |
MontyCloud logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/MontyCloud.svg |
Microsoft logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Microsoft.svg |
Carahsoft logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Carahsoft.svg |
Palantir td > article.align-center > div > img | www.rackspace.com/sites/default/files/2026-02/Palantir-2.svg |
new relic logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/New-Relic.svg |
Sema4.ai logo td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-06/Sema4.svg |
nvidia logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/NVIDIA.svg |
Palo Alto Networks logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Palo-Alto-Networks.svg |
Crowdstrike logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Crowdstrike.svg |
Dr Migrate logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Dr-Migrate.svg |
Google Cloud logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Google-Cloud.svg |
Databricks logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Databricks.svg |
Dell Technologies logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Dell.svg |
Rackspace Partners and Analyst Recognitions div.partner__block > div.partner__block > div.partner__block > img.partnerBlock_v__image | |
div > div > a.card > img.nav__mega-cardImage div > div > a.card > img.nav__mega-cardImage | |
div > div > a.card > img.nav__mega-cardImage div > div > a.card > img.nav__mega-cardImage | |
div > div > a.card > img.nav__mega-cardImage div > div > a.card > img.nav__mega-cardImage | |
div > div > a.card > img.nav__mega-cardImage div > div > a.card > img.nav__mega-cardImage |
More information about the performance of your application. These numbers don't directly affect the Performance score.
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. Learn more about heading order.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
AI div.layout__column > div.solutions__squares > a.solutions__square > h4.h4 |
These are opportunities to improve keyboard navigation in your application.
Touch targets with sufficient size and spacing help users who may have difficulty targeting small controls to activate the targets. Learn more about touch targets.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Support Portal nav > ul.footer__links--list > li.footer__links--item > a.footer__links--link |
Careers nav > ul.footer__links--list > li.footer__links--item > a.footer__links--link |
Investors nav > ul.footer__links--list > li.footer__links--item > a.footer__links--link |
These items highlight common accessibility best practices.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Learn More div.slide__content > div.slide__constrained > div.slide__caption > a.button_slick |
See the case study div.layout__container > div.layout__column > div.quote > a.button |
Let's talk div.ctaRiver > div.ctaRiver__container > div.ctaRiver__column > a.ctaRiverButton |
Screen readers have features to make navigating tables easier. Ensuring that `<td>` elements in a large table (3 or more cells in width and height) have an associated table header may improve the experience for screen reader users. Learn more about table headers.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
… section.layout > div.block > div > table |
Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. Learn more about this errors in console diagnostic audit
Performance issues directly impact user engagement and conversion rates.
| Source | Description |
|---|---|
TypeError: Cannot set properties of null (setting 'onload')
at <anonymous>:1:45
at https://www.googletagmanager.com/gtm.js?id=GTM-M8LWJF:1048:429
at https://www.googletagmanager.com/gtm.js?id=GTM-M8LWJF:1049:132
at https://www.googletagmanager.com/gtm.js?id=GTM-M8LWJF:1049:132
at vR (https://www.googletagmanager.com/gtm.js?id=GTM-M8LWJF:1050:31)
at Nd.uR (https://www.googletagmanager.com/gtm.js?id=GTM-M8LWJF:1047:92)
at Nd.<anonymous> (https://www.googletagmanager.com/gtm.js?id=GTM-M8LWJF:401:187)
at k.apply (https://www.googletagmanager.com/gtm.js?id=GTM-M8LWJF:327:466)
at gb (https://www.googletagmanager.com/gtm.js?id=GTM-M8LWJF:290:719)
at fb (https://www.googletagmanager.com/gtm.js?id=GTM-M8LWJF:290:470) | |
Uncaught SyntaxError: Identifier 'serverUrl' has already been declared |
Source maps translate minified code to the original source code. This helps developers debug in production. In addition, Lighthouse is able to provide further insights. Consider deploying source maps to take advantage of these benefits. Learn more about source maps.
Performance issues directly impact user engagement and conversion rates.
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
Descriptive link text helps search engines understand your content. Learn how to make links more accessible.
Performance issues directly impact user engagement and conversion rates.
| Link destination | Link Text |
|---|---|
| go.rackspace.com/lp/cp/uniphore-partnership | Learn More |
| go.rackspace.com/lp/cp/palantir-partnership-2026 | Learn More |
| go.rackspace.com/navigate-vmware | Learn more |
| go.rackspace.com/lp/cp/uniphore-partnership | Learn More |
| go.rackspace.com/lp/cp/palantir-partnership-2026 | Learn More |
| go.rackspace.com/navigate-vmware | Learn more |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Search engines may use `href` attributes on links to crawl websites. Ensure that the `href` attribute of anchor elements links to an appropriate destination, so more pages of the site can be discovered. Learn how to make links crawlable
Performance issues directly impact user engagement and conversion rates.
| Uncrawlable Link |
|---|
Call Us div.nav__ceilingInner > ul.nav__ceiling--list > li.navCeilingItem > a.navCeilingLink |
US/EN div.nav__ceilingInner > ul.nav__ceiling--list > li.navCeilingItem > a.navCeilingLink |
US/EN div.nav__mega-mbl--footer > ul.navFooter > li.navFooterItem > a.navFooterLink |
Call Us div.nav__mega-mbl--footer > ul.navFooter > li.navFooterItem > a.navFooterLink |
× section > div#rackspaceModal > div#rackspaceModal__window > a.rackspaceModalButton |
To appear in search results, crawlers need access to your app.
Industry-standard audits powered by Google Lighthouse. — Desktop
Key metrics that affect user experience. — Desktop
First Contentful Paint First Contentful Paint — how long until the browser renders the first piece of content. Under 1.8s is good.
1.76 s
Largest Contentful Paint Largest Contentful Paint — how long until the largest visible element loads. Under 2.5s is good.
4.11 s
Total Blocking Time Total Blocking Time — total time the main thread was blocked, preventing user input. Under 200ms is good.
565 ms
Cumulative Layout Shift Cumulative Layout Shift — measures visual stability. How much the page layout shifts during loading. Under 0.1 is good.
0.524
Speed Index Speed Index — how quickly content is visually displayed during load. Under 3.4s is good.
2.41 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.
7.05 s
Audit breakdown by category with detailed findings.
Remove large, duplicate JavaScript modules from bundles to reduce unnecessary bytes consumed by network activity.
Performance issues directly impact user engagement and conversion rates.
Polyfills and transforms enable older browsers to use new JavaScript features. However, many aren't necessary for modern browsers. Consider modifying your JavaScript build process to not transpile Baseline features, unless you know you must support older browsers. Learn why most sites can deploy ES6+ code without transpiling
Shipping ES5 transpiled code to modern browsers wastes bytes — every user with an evergreen browser pays for compatibility you don't need.
Most users today run browsers that natively support ES6+, async/await, optional chaining, and the rest of modern JavaScript. Transpiling to ES5 'just in case' adds 20-40% to your bundle for no benefit. Configure your build to target a modern browserslist, or ship a differential bundle pair (modern + legacy) with the module/nomodule pattern.
Source: Google web.dev / Lighthouse
3rd party code can significantly impact load performance. Reduce and defer loading of 3rd party code to prioritize your page's content.
Performance issues directly impact user engagement and conversion rates.
A long cache lifetime can speed up repeat visits to your page. Learn more about caching.
Performance issues directly impact user engagement and conversion rates.
Layout shifts occur when elements move absent any user interaction. Investigate the causes of layout shifts, such as elements being added, removed, or their fonts changing as the page loads.
Performance issues directly impact user engagement and conversion rates.
Your first network request is the most important. Reduce its latency by avoiding redirects, ensuring a fast server response, and enabling text compression.
Performance issues directly impact user engagement and conversion rates.
Consider setting font-display to swap or optional to ensure text is consistently visible. swap can be further optimized to mitigate layout shifts with font metric overrides.
Performance issues directly impact user engagement and conversion rates.
A forced reflow occurs when JavaScript queries geometric properties (such as offsetWidth) after styles have been invalidated by a change to the DOM state. This can result in poor performance. Learn more about forced reflows and possible mitigations.
Performance issues directly impact user engagement and conversion rates.
Optimize LCP by making the LCP image discoverable from the HTML immediately, and avoiding lazy-loading
Performance issues directly impact user engagement and conversion rates.
Avoid chaining critical requests by reducing the length of chains, reducing the download size of resources, or deferring the download of unnecessary resources to improve page load.
Performance issues directly impact user engagement and conversion rates.
Reducing the download time of images can improve the perceived load time of the page and LCP. Learn more about optimizing image size
Performance issues directly impact user engagement and conversion rates.
| URL | Resource Size | Est Savings | |
|---|---|---|---|
head > meta head > meta | 46589553.hs-sites.com/hubfs/Rxtuniphore_Callout2.jpg | 66.0 KiB | 61.6 KiB |
div#slick-slide01 > div.slide__content > div.slide__media > div.media div#slick-slide01 > div.slide__content > div.slide__media > div.media | /sites/default/files/styles/rxt_banner_1600/public/2026-0... | 283.6 KiB | 44.0 KiB |
Rackspace Partners and Analyst Recognitions div.partner__block > div.partner__block > div.partner__block > img.partnerBlock_v__image | /sites/default/files/rxt_partner_logos/Rackspace-Partners... | 43.1 KiB | 37.0 KiB |
Seattle Children's Logo div.layout__container > div.layout__column > div.quote > img.quote__image | www.rackspace.com/sites/default/files/2025-02/Customer-Logo.png | 9.9 KiB | 8.7 KiB |
Requests are blocking the page's initial render, which may delay LCP. Deferring or inlining can move these network requests out of the critical path.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Duration |
|---|---|---|
| /sites/default/files/css/css_PSRCcxFF5cdcpr8hAuLKdi9-F0tD... | 45.4 KiB | 84 ms |
| /sites/default/files/css/css_Wd4ZWd1Y3YwSyBhOzzqBr1mqodNS... | 1.5 KiB | |
| /sites/default/files/css/css_deZahSfshgdXLzXqoOt1cZn754L7... | 9.9 KiB |
These insights are also available in the Chrome DevTools Performance Panel - record a trace to view more detailed information.
Redirects introduce additional delays before the page can be loaded. Learn how to avoid page redirects.
Performance issues directly impact user engagement and conversion rates.
| URL | Time Spent |
|---|---|
| rackspace.com/ | 433 ms |
| www.rackspace.com/ | 0.0 ms |
These are the largest layout shifts observed on the page. Each table item represents a single layout shift, and shows the element that shifted the most. Below each item are possible root causes that led to the layout shift. Some of these layout shifts may not be included in the CLS metric value due to windowing. Learn how to improve CLS
Performance issues directly impact user engagement and conversion rates.
| Element | Layout shift score |
|---|---|
AI
Move from AI experimentation to measurable outcomes — quickly, securely and… div#block-hansel-mainpagecontent > article.node > div > section#solutions | 0.364 |
AI
Move from AI experimentation to measurable outcomes — quickly, securely and… div#block-hansel-mainpagecontent > article.node > div > section#solutions | 0.159 |
… nav#mega-nav > div.nav__ceiling > div.nav__ceilingInner > ul.nav__ceiling--list | 0.001 |
| 0.000 |
Time to Interactive is the amount of time it takes for the page to become fully interactive. Learn more about the Time to Interactive metric.
Performance issues directly impact user engagement and conversion rates.
The maximum potential First Input Delay that your users could experience is the duration of the longest task. Learn more about the Maximum Potential First Input Delay metric.
Performance issues directly impact user engagement and conversion rates.
Reduce unused rules from stylesheets and defer CSS not used for above-the-fold content to decrease bytes consumed by network activity. Learn how to reduce unused CSS.
Performance issues directly impact user engagement and conversion rates.
| URL | Transfer Size | Est Savings |
|---|---|---|
| /sites/default/files/css/css_PSRCcxFF5cdcpr8hAuLKdi9-F0tD... | 45.2 KiB | 41.7 KiB |
Reduce unused JavaScript and defer loading scripts until they are required to decrease bytes consumed by network activity. Learn how to reduce unused JavaScript.
Multi-megabyte JavaScript bundles delay every interactive feature on the page.
This is the Lighthouse audit fired when too much JS is shipped relative to what executes. The fix isn't a config flag — it requires bundle analysis (webpack-bundle-analyzer, rollup-plugin-visualizer), splitting routes into chunks, lazy-loading off-screen components, and removing unused dependencies. Fundamentally different from minification: minifying reduces byte count, this reduces what's downloaded at all.
Source: Google web.dev / Lighthouse
| URL | Transfer Size | Est Savings |
|---|---|---|
| www.googletagmanager.com/gtag/js?id=G-66ELC63MK1&cx=c>m=4e64k1h2 | 175.3 KiB | 69.5 KiB |
| www.googletagmanager.com/gtag/js?id=G-Q5K4KEBD4D&cx=c>m=4e64k1h2 | 169.5 KiB | 68.1 KiB |
| /sites/default/files/js/js_R1pR95HOQZ3-lyoeEHknz2rb8e9jTJ... | 112.2 KiB | 65.0 KiB |
| www.googletagmanager.com/gtm.js?id=GTM-M8LWJF | 192.3 KiB | 62.7 KiB |
| www.googletagmanager.com/gtag/destination?id=DC-4361691&cx=c>m=4e64k1h2 | 129.2 KiB | 62.6 KiB |
| www.googletagmanager.com/gtag/destination?id=AW-981481402&cx=c>m=4e64k1h2 | 133.9 KiB | 59.7 KiB |
| www.googletagmanager.com/gtag/js?id=AW-16665108602&cx=c>m=4e64k1h2 | 143.4 KiB | 54.8 KiB |
| script.hotjar.com/modules.6a0f3932cb1341a35c18.js | 56.1 KiB | 37.5 KiB |
| /dSsMaecqPRal/dyWtGKbMbi/xT/OiV7VNShXDQLGh9b/H1l0Fl8sBQ/I... | 172.6 KiB | 37.2 KiB |
Consider reducing the time spent parsing, compiling, and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to reduce Javascript execution time.
Performance issues directly impact user engagement and conversion rates.
| URL | Total CPU Time | Script Evaluation | Script Parse |
|---|---|---|---|
| www.rackspace.com/ | 862 ms | 5.2 ms | 0.6 ms |
| Unattributable | 467 ms | 14 ms | 0.0 ms |
| www.googletagmanager.com/gtm.js?id=GTM-M8LWJF | 356 ms | 314 ms | 27 ms |
| js.hs-analytics.net/analytics/1776893100000/46589553.js | 327 ms | 237 ms | 3.0 ms |
| /dSsMaecqPRal/dyWtGKbMbi/xT/OiV7VNShXDQLGh9b/H1l0Fl8sBQ/I... | 305 ms | 276 ms | 17 ms |
| /sites/default/files/js/js_R1pR95HOQZ3-lyoeEHknz2rb8e9jTJ... | 191 ms | 111 ms | 12 ms |
| www.googletagmanager.com/gtag/js?id=G-Q5K4KEBD4D&cx=c>m=4e64k1h2 | 156 ms | 136 ms | 18 ms |
| www.googletagmanager.com/gtag/js?id=G-66ELC63MK1&cx=c>m=4e64k1h2 | 152 ms | 128 ms | 22 ms |
| www.googletagmanager.com/gtag/js?id=AW-16665108602&cx=c>m=4e64k1h2 | 104 ms | 84 ms | 19 ms |
| www.googletagmanager.com/gtag/destination?id=AW-981481402&cx=c>m=4e64k1h2 | 67 ms | 56 ms | 9.6 ms |
| www.googletagmanager.com/gtag/destination?id=DC-4361691&cx=c>m=4e64k1h2 | 62 ms | 52 ms | 8.5 ms |
| script.hotjar.com/modules.6a0f3932cb1341a35c18.js | 52 ms | 43 ms | 5.2 ms |
Consider reducing the time spent parsing, compiling and executing JS. You may find delivering smaller JS payloads helps with this. Learn how to minimize main-thread work
Performance issues directly impact user engagement and conversion rates.
| Category | Time Spent |
|---|---|
| Script Evaluation | 1.6 s |
| Other | 811 ms |
| Style & Layout | 554 ms |
| Script Parsing & Compilation | 161 ms |
| Rendering | 129 ms |
| Parse HTML & CSS | 51 ms |
| Garbage Collection | 47 ms |
Large network payloads cost users real money and are highly correlated with long load times. Learn how to reduce payload sizes.
Performance issues directly impact user engagement and conversion rates.
Set an explicit width and height on image elements to reduce layout shifts and improve CLS. Learn how to set image dimensions
Performance issues directly impact user engagement and conversion rates.
| URL | |
|---|---|
Rackspace Partners and Analyst Recognitions div.partner__block > div.partner__block > div.partner__block > img.partnerBlock_v__image | /sites/default/files/rxt_partner_logos/Rackspace-Partners... |
Seattle Children's Logo div.layout__container > div.layout__column > div.quote > img.quote__image | www.rackspace.com/sites/default/files/2025-02/Customer-Logo.png |
AWS logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/AWS_logo_RGB_1c_Gray850.svg |
RiverMeadow logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/RiverMeadow.svg |
Imperva logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Imperva.svg |
DLR logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/DLR.svg |
Cloudfare logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Cloudflare.svg |
Qualys logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Qualys.svg |
CloudHealth logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/CloudHealth.svg |
VMware logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/VMware.svg |
Rubrik logo td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Rubrik.svg |
Fivetran logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Fivetran.svg |
Datadog logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Datadog.svg |
BT logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/BT.svg |
OpenInfra logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/OpenInfra.svg |
snowflake logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Snowflake_0.svg |
MontyCloud logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/MontyCloud.svg |
Microsoft logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Microsoft.svg |
Carahsoft logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Carahsoft.svg |
Palantir td > article.align-center > div > img | www.rackspace.com/sites/default/files/2026-02/Palantir-2.svg |
new relic logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/New-Relic.svg |
Sema4.ai logo td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-06/Sema4.svg |
nvidia logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/NVIDIA.svg |
Palo Alto Networks logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Palo-Alto-Networks.svg |
Crowdstrike logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Crowdstrike.svg |
Dr Migrate logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Dr-Migrate.svg |
Google Cloud logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Google-Cloud.svg |
Databricks logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Databricks.svg |
Dell Technologies logo svg td > article.align-center > div > img | www.rackspace.com/sites/default/files/2025-04/Dell.svg |
div > div > a.card > img.nav__mega-cardImage div > div > a.card > img.nav__mega-cardImage | |
div > div > a.card > img.nav__mega-cardImage div > div > a.card > img.nav__mega-cardImage | |
div > div > a.card > img.nav__mega-cardImage div > div > a.card > img.nav__mega-cardImage | |
div > div > a.card > img.nav__mega-cardImage div > div > a.card > img.nav__mega-cardImage |
More information about the performance of your application. These numbers don't directly affect the Performance score.
These checks highlight opportunities to improve the accessibility of your web app. Automatic detection can only detect a subset of issues and does not guarantee the accessibility of your web app, so manual testing is also encouraged.
ARIA dialog elements without accessible names may prevent screen readers users from discerning the purpose of these elements. Learn how to make ARIA dialog elements more accessible.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Popup CTA body > div#hs-web-interactives-bottom-anchor > div#hs-overlay-cta-208800730452 |
These are opportunities to improve the usage of ARIA in your application which may enhance the experience for users of assistive technology, like a screen reader.
Properly ordered headings that do not skip levels convey the semantic structure of the page, making it easier to navigate and understand when using assistive technologies. Learn more about heading order.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
AI div.layout__column > div.solutions__squares > a.solutions__square > h4.h4 |
These are opportunities to improve keyboard navigation in your application.
Visible text labels that do not match the accessible name can result in a confusing experience for screen reader users. Learn more about accessible names.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
Learn More div.slide__content > div.slide__constrained > div.slide__caption > a.button_slick |
See the case study div.layout__container > div.layout__column > div.quote > a.button |
Let's talk div.ctaRiver > div.ctaRiver__container > div.ctaRiver__column > a.ctaRiverButton |
Screen readers have features to make navigating tables easier. Ensuring that `<td>` elements in a large table (3 or more cells in width and height) have an associated table header may improve the experience for screen reader users. Learn more about table headers.
Performance issues directly impact user engagement and conversion rates.
| Failing Elements |
|---|
… section.layout > div.block > div > table |
Errors logged to the console indicate unresolved problems. They can come from network request failures and other browser concerns. Learn more about this errors in console diagnostic audit
Performance issues directly impact user engagement and conversion rates.
| Source | Description |
|---|---|
TypeError: Cannot set properties of null (setting 'onload')
at <anonymous>:1:45
at https://www.googletagmanager.com/gtm.js?id=GTM-M8LWJF:1048:429
at https://www.googletagmanager.com/gtm.js?id=GTM-M8LWJF:1049:132
at https://www.googletagmanager.com/gtm.js?id=GTM-M8LWJF:1049:132
at vR (https://www.googletagmanager.com/gtm.js?id=GTM-M8LWJF:1050:31)
at Nd.uR (https://www.googletagmanager.com/gtm.js?id=GTM-M8LWJF:1047:92)
at Nd.<anonymous> (https://www.googletagmanager.com/gtm.js?id=GTM-M8LWJF:401:187)
at k.apply (https://www.googletagmanager.com/gtm.js?id=GTM-M8LWJF:327:466)
at gb (https://www.googletagmanager.com/gtm.js?id=GTM-M8LWJF:290:719)
at fb (https://www.googletagmanager.com/gtm.js?id=GTM-M8LWJF:290:470) | |
Uncaught SyntaxError: Identifier 'serverUrl' has already been declared |
Source maps translate minified code to the original source code. This helps developers debug in production. In addition, Lighthouse is able to provide further insights. Consider deploying source maps to take advantage of these benefits. Learn more about source maps.
Performance issues directly impact user engagement and conversion rates.
These checks ensure that your page is following basic search engine optimization advice. There are many additional factors Lighthouse does not score here that may affect your search ranking, including performance on Core Web Vitals. Learn more about Google Search Essentials.
Descriptive link text helps search engines understand your content. Learn how to make links more accessible.
Performance issues directly impact user engagement and conversion rates.
| Link destination | Link Text |
|---|---|
| go.rackspace.com/lp/cp/uniphore-partnership | Learn More |
| go.rackspace.com/lp/cp/palantir-partnership-2026 | Learn More |
| go.rackspace.com/navigate-vmware | Learn more |
| go.rackspace.com/lp/cp/uniphore-partnership | Learn More |
| go.rackspace.com/lp/cp/palantir-partnership-2026 | Learn More |
| go.rackspace.com/navigate-vmware | Learn more |
Format your HTML in a way that enables crawlers to better understand your app’s content.
Search engines may use `href` attributes on links to crawl websites. Ensure that the `href` attribute of anchor elements links to an appropriate destination, so more pages of the site can be discovered. Learn how to make links crawlable
Performance issues directly impact user engagement and conversion rates.
| Uncrawlable Link |
|---|
Call Us div.nav__ceilingInner > ul.nav__ceiling--list > li.navCeilingItem > a.navCeilingLink |
US/EN div.nav__ceilingInner > ul.nav__ceiling--list > li.navCeilingItem > a.navCeilingLink |
US/EN div.nav__mega-mbl--footer > ul.navFooter > li.navFooterItem > a.navFooterLink |
Call Us div.nav__mega-mbl--footer > ul.navFooter > li.navFooterItem > a.navFooterLink |
× section > div#rackspaceModal > div#rackspaceModal__window > a.rackspaceModalButton |
To appear in search results, crawlers need access to your app.
Send Feedback