www.newrelic.com

Report from 9/20/2026, 1:29:06 PM https://www.newrelic.com
Latest run · lab, cold cache
50
9/20/2026
28-day score · p75 · the standard
50
13 runs
CRR45%latest
SSD78%latest
TC1904 toklatest
TTFUT60 ms28-day p75

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

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

Token Cost breakdown

Where the page's tokens go (≈14,333 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
29.9% · 4,291
Chrome (nav / header / footer)
68.6% · 9,838
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

Evidence55% of content requires JS · 45% 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 70.1% of tokens are non-content (boilerplate/chrome)

agent representation — token decomposition

EvidenceToken decomposition: content 29.9%, chrome 68.6%, boilerplate 0%, other 1.4%. Only 29.900000000000006% 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 — 148 KiB transferred, 76.8% unused (third-party)

EvidenceCDP JS coverage: 113 KiB of this bundle is never executed on load.
Impact~-113 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.
mediumCut third-party weight

googletagmanager.com — 1026 KiB, 6 requests, 55 ms main-thread

EvidenceThird-party is 32.8% of total transfer (159 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.
mediumCut total transfer weight

5.3 MB total

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

Third-party impact

159 third-party requests · 1787 KiB (32.8% of transfer) · 237 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.com61026 KiB55 ms
segment.com9201 KiB
intellimize.co12124 KiB55 ms
osano.com579 KiB55 ms
fpjscdn.net170 KiB72 ms
itstarsbuilding.com855 KiB
1mind.com443 KiB
openai.com328 KiB
claydar.com827 KiB
6sc.co1625 KiB
licdn.com221 KiB
redditstatic.com121 KiB

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 3P148 KiB76.8%113 KiB
https://www.googletagmanager.com/gtm.js?id=GTM-TK2F7T&l=dataLayer 3P197 KiB45.8%90 KiB
https://www.googletagmanager.com/gtag/js?id=G-R5EF3MCG7B 3P190 KiB46.5%88 KiB
https://www.googletagmanager.com/gtag/js?id=G-GZEX285W2X&cx=c&gtm=4e69g1 3P183 KiB48.3%88 KiB
https://www.googletagmanager.com/gtag/js?id=G-CQsegment&cx=c&gtm=4e69g1 3P148 KiB57.4%85 KiB
https://www.googletagmanager.com/gtag/js?id=AW-963109263&cx=c&gtm=4e69g1 3P161 KiB48.3%78 KiB
https://cdn.intellimize.co/snippet/117712186.js 3P120 KiB42.5%51 KiB
https://cdn.segment.com/next-integrations/integrations/vendor/commons.1b78f84a8c1751144d06.js.gz 3P57 KiB60.7%34 KiB
https://cdn.segment.com/next-integrations/actions/google-analytics-4-web/51e68a22e5622640852a.js 3P58 KiB58.3%34 KiB
https://ob.itstarsbuilding.com/i/57d2aa9906614d1b8af56294d7406ff6.js 3P52 KiB51.3%27 KiB
https://newrelic.com/sites/default/files/js/js_r8zvIU5llaakPkcvvUk5DgFJ9Vr8UcB-wmfvZdND5Jg.js?scope=footer&delta=3&language=en&theme=erno&include=eJxtkFFuAyEMRC8Ul2o_qvY0kRcc1g1gZLxJe_s6iaiqqB_AMG9sS45nSmyiR4xRNLG08KteTirNqKVDnCkTKcZ9hDsCZ_A5_sF-9W8npE3CScRIHzoXWbE89EaYpl8lTbu_LmD0ZfP3BpcFimSBiCr7oJlb3oErZoIotaPykDbJx73DU4Eu3hjXldIzEEPjlmHdzaT9mT4oGs-2phjPHjs0PfqKKPi7cd6KH7uZ1deA4crDGIGqD7q5Xfrew4UTyQ86eYs142 KiB62.9%26 KiB
https://newrelic.com/sites/default/files/js/js_C1yHZnOSQSWjXUpzUVbaWp8JbV-qY9xA3TCW6QmQAuA.js?scope=footer&delta=1&language=en&theme=erno&include=eJxtkFFuAyEMRC8Ul2o_qvY0kRcc1g1gZLxJe_s6iaiqqB_AMG9sS45nSmyiR4xRNLG08KteTirNqKVDnCkTKcZ9hDsCZ_A5_sF-9W8npE3CScRIHzoXWbE89EaYpl8lTbu_LmD0ZfP3BpcFimSBiCr7oJlb3oErZoIotaPykDbJx73DU4Eu3hjXldIzEEPjlmHdzaT9mT4oGs-2phjPHjs0PfqKKPi7cd6KH7uZ1deA4crDGIGqD7q5Xfrew4UTyQ86eYs130 KiB84.6%26 KiB
https://cmp.osano.com/AzZVWOTJtg1WY32RK/cd381ba3-ebca-488c-a528-376a86764609/osano.js?language=en&variant=one 3P79 KiB32%25 KiB
https://newrelic.com/core/assets/vendor/jquery/jquery.min.js?v=4.0.032 KiB78.4%25 KiB
https://cdn.segment.com/next-integrations/actions/4596/98c634b6302314f5278d.js 3P27 KiB91.8%24 KiB

Network

231Requests
5446 KiBTransferred
59Scripts
32.8%3rd-party
3Long tasks
Image (73)
2666 KiB
Script (59)
1931 KiB
Font (4)
589 KiB
Stylesheet (3)
118 KiB
Document (6)
111 KiB
Fetch (43)
17 KiB
XHR (20)
8 KiB
Ping (11)
3 KiB
Other (11)
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.pngImage200233 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=dataLayerScript200197 KiB
https://www.googletagmanager.com/gtag/js?id=G-R5EF3MCG7BScript200190 KiB
https://www.googletagmanager.com/gtag/js?id=G-GZEX285W2X&cx=c&gtm=4e69g1Script200183 KiB
https://newrelic.com/sites/default/files/styles/800w/public/2026-02/pricing-menu.png?itok=FD2rSuvDImage200168 KiB
https://www.googletagmanager.com/gtag/js?id=AW-963109263&cx=c&gtm=4e69g1Script200161 KiB
https://newrelic.com/sites/default/files/styles/800w/public/2026-03/Session%20Replay.png?itok=jghgJP8WImage200156 KiB
https://www.googletagmanager.com/gtag/js?id=G-CQsegment&cx=c&gtm=4e69g1Script200148 KiB
https://www.googletagmanager.com/gtag/js?id=G-CQsegmentScript200148 KiB
https://cdn.intellimize.co/snippet/117712186.jsScript200120 KiB
https://newrelic.com/sites/default/files/css/css_923gfMBvkZAsVqYm2DdMmeT2kWMH_ddUpiNgSq9WawA.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/Document200110 KiB
https://newrelic.com/sites/default/files/styles/800w/public/2026-03/SRE%20Agent.png?itok=I5-R-ndHImage20095 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://cmp.osano.com/AzZVWOTJtg1WY32RK/cd381ba3-ebca-488c-a528-376a86764609/osano.js?language=en&variant=oneScript20079 KiB
https://newrelic.com/sites/default/files/styles/800w/public/2026-03/OTEL_1.png?itok=hMswl1XBImage20077 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/51e68a22e5622640852a.jsScript20058 KiB
https://cdn.segment.com/next-integrations/integrations/vendor/commons.1b78f84a8c1751144d06.js.gzScript20057 KiB
https://ob.itstarsbuilding.com/i/57d2aa9906614d1b8af56294d7406ff6.jsScript20052 KiB
https://newrelic.com/sites/default/files/js/js_r8zvIU5llaakPkcvvUk5DgFJ9Vr8UcB-wmfvZdND5Jg.js?scope=footer&delta=3&language=en&theme=erno&include=eJxtkFFuAyEMRC8Ul2o_qvY0kRcc1g1gZLxJe_s6iaiqqB_AMG9sS45nSmyiR4xRNLG08KteTirNqKVDnCkTKcZ9hDsCZ_A5_sF-9W8npE3CScRIHzoXWbE89EaYpl8lTbu_LmD0ZfP3BpcFimSBiCr7oJlb3oErZoIotaPykDbJx73DU4Eu3hjXldIzEEPjlmHdzaT9mT4oGs-2phjPHjs0PfqKKPi7cd6KH7uZ1deA4crDGIGqD7q5Xfrew4UTyQ86eYs1Script20042 KiB

Long tasks (>50 ms)

StartDuration
819 ms72 ms
360 ms55 ms
623 ms54 ms
Analyzing…
running mobile + desktop · ~30s