www.newrelic.com

Report from 7/24/2026, 9:57:30 AM https://www.newrelic.com
Latest run · lab, cold cache
50
7/24/2026
28-day score · p75 · the standard
1/7 runs — building history (nightly)

Scored by v3 · source-of-truth hashes: score db860d6ac94e · thresholds e94f8b33e500 — verifiable against the canonical scorer.

The 28-day score is the p75 of nightly runs — the stable number to cite. Deterministic metrics (CRR/SSD/TC) show their latest value (they move only when the site changes); timing (TTFUT) and answer-fidelity (AF) are smoothed by 28-day p75 — the same lab-vs-field split Core Web Vitals uses. Synthetic daily measurement, not real-user field data.

Core Agent Vitals badge  Embed this badge

Show your agent-readiness score anywhere — it links back to this report.

[![Core Agent Vitals](https://agentvitals.dev/badge/newrelic.com.svg)](https://agentvitals.dev/results?url=https%3A%2F%2Fwww.newrelic.com)
<a href="https://agentvitals.dev/results?url=https%3A%2F%2Fwww.newrelic.com"><img src="https://agentvitals.dev/badge/newrelic.com.svg" alt="Core Agent Vitals" height="20"></a>
What AI tells your customers about youAgent confidence: LOW
Business nameNew Relic, Inc.
CategoryOrganization
Pricenot found
Locationnot found
Hoursnot found
Productsnot found
🟡DescriptionNew Relic is an AI-powered observability platform that correlates your telemetry across your entire stack, so you can isolate the root cause and reduce MTTR. · guessed from page text (no structured data)

An agent is likely to fabricate missing details rather than say “I don’t know”. 2/7 applicable facts come from machine-readable structured data.

50
Overall score
weighted CAV (0–100)
FAIL
0–4950–8990–100

Metrics

46%
CRR Content Recovery Poor
0.78
SSD Semantic Signal Density Good
1,899 tok
TC Token Cost Good
42 ms
TTFUT Time to First Useful Token N/A

Token Cost breakdown

Where the page's tokens go (≈14,376 across regions). 70% is non-content — chrome and boilerplate an agent pays for. Add landmark roles (main/nav/header/footer) so agents can skip it.

Content
30.2% · 4,348
Chrome (nav / header / footer)
68.3% · 9,824
Boilerplate (cookie / ad)
0% · 0
Other
1.4% · 204

Final screenshot

Final screenshot of https://www.newrelic.com

Diagnostics

high CRR Content is hidden behind JavaScript

pre-JS raw HTML

Evidence54% of content requires JS · 46% of rendered content recovered (rest is placeholder/wrong)
ImpactA non-rendering agent never sees the JS-injected content.
Effort1–4 h

Fix: Server-render or statically generate the main content so a non-JS agent still receives it; make client rendering a progressive enhancement, not the source of truth.

high TC 69.8% of tokens are non-content (boilerplate/chrome)

agent representation — token decomposition

EvidenceToken decomposition: content 30.2%, chrome 68.3%, boilerplate 0%, other 1.4%. Only 30.200000000000003% of the agent's tokens are real content.
ImpactAn agent pays for boilerplate on every request and has less context left for the real content.
Effort30–90 min

Fix: Strip repeated nav/header/footer/cookie chrome from the agent-visible output; wrap content in <main>/<article> so the extractor keeps signal and drops boilerplate.

Rendered profile: headless

Agent Discoverability 77/100 · Needs Work

Access & discovery checks — separate from the gated CAV metrics above. Click an issue for business impact, what we measured, and how to fix. · Take the Agent Readiness course →

Agent files & endpoints

~ llms.txt Found at /llms.txt but missing H1/blockquote Learn →
robots.txt (AI bots) Blocks: * (all) Learn →
~ sitemap.xml Stale (lastmod 2021-01-20T22:32Z) Learn →
JSON-LD structured data Types: Organization, WebSite Learn →
~ agents.json Absent (emerging standard) Learn →
~ WebMCP endpoint Absent (emerging standard) Learn →
~ OpenAPI / API docs No OpenAPI/Swagger found Learn →

Issues (6)

robots.txt allows AI bots high impact Blocks: * (all)

Business impact If robots.txt blocks AI crawlers you are invisible to ChatGPT, Claude and Perplexity — they skip you and recommend a competitor instead.

What we measured We read /robots.txt and test it against 16 AI user-agents (GPTBot, ClaudeBot, PerplexityBot, …) for a Disallow that blocks them.

How to fix Allow major AI bots to public content; restrict only private paths (/admin, /api).

Learn how to implement →

User-agent: GPTBot
Allow: /
Disallow: /admin/

Spec: https://platform.openai.com/docs/gptbot

~ llms.txt present + valid high impact Found at /llms.txt but missing H1/blockquote

Business impact llms.txt is the robots.txt for AI: it tells agents what your site is, what matters, and where to find it. Without it AI guesses — and guessing means inaccurate recommendations and lost visibility.

What we measured We fetch /llms.txt and /.well-known/llms.txt and validate the spec (H1 title + a one-line blockquote summary). We also note /llms-full.txt (your full content as Markdown).

How to fix Create /llms.txt with a short summary + key pages; optionally /llms-full.txt with full content in Markdown.

Learn how to implement →

# Your Site
> One-line description for AI agents.

## Key pages
- /products — catalog
- /pricing — plans
- /docs — documentation

Spec: https://llmstxt.org

~ XML sitemap fresh medium impact Stale (lastmod 2021-01-20T22:32Z)

Business impact A sitemap is your table of contents for AI crawlers. Without it agents follow homepage links and miss deep pages (products, docs, pricing) — shrinking what they can recommend.

What we measured We fetch /sitemap.xml (and /sitemap_index.xml), confirm valid XML with <loc> entries, and check <lastmod> freshness.

How to fix Generate an XML sitemap of all public pages with current lastmod dates and reference it in robots.txt.

Learn how to implement →

# robots.txt
Sitemap: https://example.com/sitemap.xml

Spec: https://www.sitemaps.org/

~ agents.json discovery low impact Absent (emerging standard)

Business impact agents.json describes what your site can DO for agents (services, endpoints, capabilities) — an emerging discovery standard. Early adopters get native agent integration.

What we measured We check /agents.json and /.well-known/agents.json for a valid configuration.

How to fix Publish /agents.json describing your site's capabilities and actions.

Learn how to implement →

Spec: https://github.com/wild-card-ai/agents-json

~ WebMCP endpoint low impact Absent (emerging standard)

Business impact WebMCP lets agents call actions on your site directly (book, buy, query) instead of scraping the DOM. Early adopters get native AI-agent interoperability.

What we measured We check /.well-known/webmcp and /webmcp.json for a valid actions array.

How to fix Add a WebMCP endpoint exposing your key actions to agents.

Learn how to implement →

Spec: https://webmcp.org

~ API documentation low impact No OpenAPI/Swagger found

Business impact Programmatic agents prefer a typed API. An OpenAPI/Swagger spec lets them integrate without scraping.

What we measured We probe /openapi.json, /swagger.json, /api-docs and /.well-known/openapi.json.

How to fix Publish an OpenAPI spec at a well-known path.

Learn how to implement →

Spec: https://www.openapis.org/

Passed audits (6)

✓ No CAPTCHA wall✓ No content-blocking cookie wall✓ Machine-readable prices✓ No login wall on public content✓ Structured data (JSON-LD)✓ Server response (TTFB)

Transport & Trust (SEC 1.0.0)

HTTPS, HSTS, CSP, sniffing, referrer and CORS posture. Diagnostic only — this does not affect the CAV score. A security header does not make a page more legible to an agent, so scoring it would reward a CDN toggle that changes nothing an agent can recover. We measure it and say so.

92Transport posture (0–100, unscored)
4pass
1warn
0fail
Per-header findings (6)
HeaderEvidence
✅ HTTPSserved over HTTPS
✅ HSTSmax-age=63072000; includeSubDomains; preload
✅ Content-Security-Policypolicy present, script-src does not allow inline
✅ X-Content-Type-Optionsnosniff
⚠️ Referrer-Policyno referrer-policy header (browser default applies)
➖ CORS exposureno CORS headers on the document (normal for an HTML page)
Full profile — how to improve · unused JS · network · timing

How to improve

highSplit the heaviest unused bundlehighest leverage

js — 145 KiB transferred, 75.9% unused (third-party)

EvidenceCDP JS coverage: 110 KiB of this bundle is never executed on load.
Impact~-110 KiB transfer; lower Token Cost + faster agent parse.
Effort30–90 min
FixDynamic-import() the below-the-fold parts of js, or drop unused dependencies. It is third-party — lazy-load or remove it.
highBreak up long main-thread tasks

longest task 695 ms (10 total)

EvidenceMain thread blocked 695 ms by the longest task.
ImpactFaster interactivity + content settling.
Effort1–4 h
FixSplit heavy work, defer third-party scripts, move compute off the main thread.
mediumCut third-party weight

googletagmanager.com — 995 KiB, 6 requests, 1317 ms main-thread

EvidenceThird-party is 31.3% of total transfer (155 requests); googletagmanager.com is the largest.
ImpactFewer bytes + main-thread stalls before your content settles for an agent.
Effort1–3 h
FixLazy-load, self-host, or remove googletagmanager.com; defer non-critical third-party scripts.
mediumReduce layout shift

cumulative layout shift

EvidenceCLS is 0.128.
ImpactStable layout for render + screenshot.
Effort30–60 min
FixSet explicit width/height on images; reserve space for late-loading content.
mediumCut total transfer weight

5.2 MB total

Evidence5.2 MB transferred.
ImpactCheaper, faster fetch on slow links.
Effort1–3 h
FixEnable Brotli, serve WebP/AVIF images, defer non-critical resources.

Third-party impact

155 third-party requests · 1661 KiB (31.3% of transfer) · 3826 ms main-thread — code an agent must also fetch/run before your content settles. Fewer, lazier third-parties = faster, cheaper agent reads.

Third-party domainReqsTransferMain-thread
googletagmanager.com6995 KiB1317 ms
segment.com9145 KiB172 ms
intellimize.co12121 KiB286 ms
osano.com576 KiB352 ms
fpjscdn.net170 KiB268 ms
itstarsbuilding.com855 KiB958 ms
licdn.com439 KiB63 ms
claydar.com825 KiB150 ms
6sc.co1624 KiB11 ms
1mind.com423 KiB84 ms
redditstatic.com120 KiB
doubleclick.net1116 KiB27 ms

Wasted JavaScript (by bundle)

Transfer-accurate — each bundle's transfer size × its unused %, ranked by wasted bytes (the biggest code-splitting wins). Unused JS also inflates Token Cost (TC).

BundleTransferUnusedWasted
https://www.googletagmanager.com/gtag/js?id=G-CQsegment 3P145 KiB75.9%110 KiB
https://www.googletagmanager.com/gtm.js?id=GTM-TK2F7T&l=dataLayer 3P194 KiB45.4%88 KiB
https://www.googletagmanager.com/gtag/js?id=G-GZEX285W2X&cx=c&gtm=4e67m0 3P178 KiB47.5%85 KiB
https://www.googletagmanager.com/gtag/js?id=G-R5EF3MCG7B 3P182 KiB45.5%83 KiB
https://www.googletagmanager.com/gtag/js?id=G-CQsegment&cx=c&gtm=4e67m0 3P145 KiB56.4%82 KiB
https://www.googletagmanager.com/gtag/js?id=AW-963109263&cx=c&gtm=4e67m0 3P152 KiB48.2%73 KiB
https://cdn.intellimize.co/snippet/117712186.js 3P117 KiB42.2%50 KiB
https://cdn.segment.com/next-integrations/actions/google-analytics-4-web/aeadee7d142fb4d69ca8.js 3P58 KiB58.3%34 KiB
https://newrelic.com/sites/default/files/js/js_LAsYk_1utZlRWBA9qo2dmJ7LmxrrHdSZCcLzUD_QfAE.js?scope=footer&delta=3&language=en&theme=erno&include=eJxtkFFuAyEMRC8Ul2o_qvY0kRcc1g1gZLxJe_s6iaiqqB_AMG9sS45nSmyiR4xRNLG08KteTirNqKVDnCkTKcZ9hDsCZ_A5_sF-9W8npE3CScRIHzoXWbE89EaYpl8lTbu_LmD0ZfP3BpcFimSBiCr7oJlb3oErZoIotaPykDbJx73DU4Eu3hjXldIzEEPjlmHdzaT9mT4oGs-2phjPHjs0PfqKKPi7cd6KH7uZ1deA4crDGIGqD7q5Xfrew4UTyQ86eYs142 KiB63%26 KiB
https://ob.itstarsbuilding.com/i/57d2aa9906614d1b8af56294d7406ff6.js 3P52 KiB50.9%26 KiB
https://newrelic.com/sites/default/files/js/js_px--5UFvBfZ3KBmdxyEc_njw3Es5_e4LuT9GxpoaGug.js?scope=footer&delta=1&language=en&theme=erno&include=eJxtkFFuAyEMRC8Ul2o_qvY0kRcc1g1gZLxJe_s6iaiqqB_AMG9sS45nSmyiR4xRNLG08KteTirNqKVDnCkTKcZ9hDsCZ_A5_sF-9W8npE3CScRIHzoXWbE89EaYpl8lTbu_LmD0ZfP3BpcFimSBiCr7oJlb3oErZoIotaPykDbJx73DU4Eu3hjXldIzEEPjlmHdzaT9mT4oGs-2phjPHjs0PfqKKPi7cd6KH7uZ1deA4crDGIGqD7q5Xfrew4UTyQ86eYs130 KiB84.6%26 KiB
https://newrelic.com/core/assets/vendor/jquery/jquery.min.js?v=4.0.032 KiB78.4%25 KiB
https://cmp.osano.com/AzZVWOTJtg1WY32RK/cd381ba3-ebca-488c-a528-376a86764609/osano.js?language=en&variant=one 3P76 KiB31.8%24 KiB
https://fpjscdn.net/v3/zDGPLKv7V7zxzA26RVfY 3P70 KiB26.6%19 KiB
https://cdn.segment.com/next-integrations/integrations/vendor/commons.59560acdd69ed701c941.js.gz 3P22 KiB71.8%16 KiB

Network

228Requests
5315 KiBTransferred
60Scripts
31.3%3rd-party
10Long tasks
Image (76)
2666 KiB
Script (60)
1803 KiB
Font (4)
589 KiB
Stylesheet (3)
118 KiB
Document (6)
108 KiB
Fetch (37)
15 KiB
XHR (22)
9 KiB
Ping (11)
3 KiB
Other (8)
2 KiB
Manifest (1)
1 KiB
Heaviest requests (30)
URLTypeStatusTransfer
https://newrelic.com/sites/default/files/2026-02/background-bottom.pngImage200509 KiB
https://newrelic.com/sites/default/files/2026-02/solutions-menu.pngImage200399 KiB
https://newrelic.com/themes/custom/erno/assets/fonts/inter/Inter-Variable.woff2Font200344 KiB
https://newrelic.com/sites/default/files/2026-02/customers-menu.pngImage200322 KiB
https://newrelic.com/sites/default/files/2026-02/platform-menu.pngImage200307 KiB
https://newrelic.com/sites/default/files/2026-02/Resources-menu.pngImage200234 KiB
https://newrelic.com/themes/custom/erno/assets/fonts/mona-sans/MonaSansVF[wdth,wght,opsz].woff2Font200215 KiB
https://www.googletagmanager.com/gtm.js?id=GTM-TK2F7T&l=dataLayerScript200194 KiB
https://www.googletagmanager.com/gtag/js?id=G-R5EF3MCG7BScript200182 KiB
https://www.googletagmanager.com/gtag/js?id=G-GZEX285W2X&cx=c&gtm=4e67m0Script200178 KiB
https://newrelic.com/sites/default/files/styles/800w/public/2026-02/pricing-menu.png?itok=FD2rSuvDImage200168 KiB
https://newrelic.com/sites/default/files/styles/800w/public/2026-03/Session%20Replay.png?itok=jghgJP8WImage200155 KiB
https://www.googletagmanager.com/gtag/js?id=AW-963109263&cx=c&gtm=4e67m0Script200152 KiB
https://www.googletagmanager.com/gtag/js?id=G-CQsegment&cx=c&gtm=4e67m0Script200145 KiB
https://www.googletagmanager.com/gtag/js?id=G-CQsegmentScript200145 KiB
https://cdn.intellimize.co/snippet/117712186.jsScript200117 KiB
https://newrelic.com/sites/default/files/css/css_TveFPmS8Ec_DteHw1B00BTg78whgh1vtXobbotJF9YM.css?delta=1&language=en&theme=erno&include=eJxdUO1ugzAMfCEMlErT-jSTSUzImsSRY7o9_jJo1ok_6D58ynHmTtYrywcaw2I9p-EP9YtwUkq2M-1KmYP6XIbdgurBZ-nqPQ1Wtoyhtx4Du44k8WBQLER7kIVZSQ7sAs8YDhzZNpjGCwSf7vVTtElXyMKRn1Qg8Rco5_3wEPM4gdK3NvYGjwlqCYZagLdCoTm3s3IZwRtOTza9g4_oCAzHjOLLy7ntL5zj1xEW72AltO3Xcs0fSKZaC-eZ7CkmrKg-OZg3VU7_uhcyWofvYp0bB6ZYw_3CElF_t6ud0AnmtbS1X0q_pbzNdbiV7A8M1K5sStylesheet200112 KiB
https://newrelic.com/Document200107 KiB
https://newrelic.com/sites/default/files/styles/800w/public/2026-03/SRE%20Agent.png?itok=I5-R-ndHImage20096 KiB
https://newrelic.com/sites/default/files/styles/1920w/public/2026-03/IO%20A.webp?itok=_zIi9yppImage20094 KiB
https://newrelic.com/sites/default/files/styles/1920w/public/2026-03/IO%20B.webp?itok=1AWHxKdrImage20092 KiB
https://newrelic.com/sites/default/files/styles/800w/public/2026-03/OTEL_1.png?itok=hMswl1XBImage20077 KiB
https://cmp.osano.com/AzZVWOTJtg1WY32RK/cd381ba3-ebca-488c-a528-376a86764609/osano.js?language=en&variant=oneScript20076 KiB
https://newrelic.com/sites/default/files/styles/800w/public/2026-03/Cloud%20Costs.png?itok=emVLWgZYImage20072 KiB
https://fpjscdn.net/v3/zDGPLKv7V7zxzA26RVfYScript20070 KiB
https://newrelic.com/sites/default/files/styles/800w/public/2026-03/AI%20Agent%20Monitor.png?itok=tEzYX025Image20059 KiB
https://cdn.segment.com/next-integrations/actions/google-analytics-4-web/aeadee7d142fb4d69ca8.jsScript20058 KiB
https://ob.itstarsbuilding.com/i/57d2aa9906614d1b8af56294d7406ff6.jsScript20052 KiB
https://newrelic.com/sites/default/files/js/js_LAsYk_1utZlRWBA9qo2dmJ7LmxrrHdSZCcLzUD_QfAE.js?scope=footer&delta=3&language=en&theme=erno&include=eJxtkFFuAyEMRC8Ul2o_qvY0kRcc1g1gZLxJe_s6iaiqqB_AMG9sS45nSmyiR4xRNLG08KteTirNqKVDnCkTKcZ9hDsCZ_A5_sF-9W8npE3CScRIHzoXWbE89EaYpl8lTbu_LmD0ZfP3BpcFimSBiCr7oJlb3oErZoIotaPykDbJx73DU4Eu3hjXldIzEEPjlmHdzaT9mT4oGs-2phjPHjs0PfqKKPi7cd6KH7uZ1deA4crDGIGqD7q5Xfrew4UTyQ86eYs1Script20042 KiB
https://newrelic.com/core/assets/vendor/jquery/jquery.min.js?v=4.0.0Script20032 KiB

Long tasks (>50 ms)

StartDuration
6087 ms695 ms
5004 ms276 ms
2924 ms237 ms
5358 ms158 ms
3303 ms156 ms
2197 ms144 ms
6955 ms142 ms
4052 ms137 ms
15454 ms135 ms
1467 ms134 ms
Analyzing…
running mobile + desktop · ~30s