www.newrelic.com

Report from 8/8/2026, 1:11:55 PM https://www.newrelic.com
Latest run · lab, cold cache
50
8/8/2026
28-day score · p75 · the standard
50
12 runs
CRR45%latest
SSD78%latest
TC1899 toklatest
TTFUT40 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,899 tok
TC Token Cost Good
35 ms
TTFUT Time to First Useful Token N/A

Token Cost breakdown

Where the page's tokens go (≈14,440 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.1% · 4,348
Chrome (nav / header / footer)
68% · 9,821
Boilerplate (cookie / ad)
0% · 0
Other
1.9% · 271

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 69.9% of tokens are non-content (boilerplate/chrome)

agent representation — token decomposition

EvidenceToken decomposition: content 30.1%, chrome 68%, boilerplate 0%, other 1.9%. Only 30.099999999999994% 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 — 146 KiB transferred, 76% unused (third-party)

EvidenceCDP JS coverage: 111 KiB of this bundle is never executed on load.
Impact~-111 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 — 1005 KiB, 7 requests, 74 ms main-thread

EvidenceThird-party is 31.8% of total transfer (156 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.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

156 third-party requests · 1707 KiB (31.8% of transfer) · 457 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.com71005 KiB74 ms
segment.com9179 KiB
intellimize.co12122 KiB121 ms
osano.com576 KiB72 ms
fpjscdn.net170 KiB71 ms
itstarsbuilding.com855 KiB119 ms
licdn.com439 KiB
claydar.com825 KiB
1mind.com425 KiB
6sc.co1624 KiB
redditstatic.com120 KiB
doubleclick.net1116 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&cx=c&gtm=4e6852 3P146 KiB76%111 KiB
https://www.googletagmanager.com/gtm.js?id=GTM-TK2F7T&l=dataLayer 3P195 KiB45.1%88 KiB
https://www.googletagmanager.com/gtag/js?id=G-R5EF3MCG7B 3P185 KiB46.1%85 KiB
https://www.googletagmanager.com/gtag/js?id=G-GZEX285W2X&cx=c&gtm=4e6852 3P179 KiB47.1%84 KiB
https://www.googletagmanager.com/gtag/js?id=G-CQsegment 3P145 KiB56.4%82 KiB
https://www.googletagmanager.com/gtag/js?id=AW-963109263&cx=c&gtm=4e6852 3P155 KiB48.7%75 KiB
https://cdn.intellimize.co/snippet/117712186.js 3P118 KiB42.1%50 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/aeadee7d142fb4d69ca8.js 3P55 KiB58.3%32 KiB
https://newrelic.com/sites/default/files/js/js_UmCCBjbPBVGUGp0WlLGbrAwCVBN3aMant5JEu-58OD4.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 KiB51%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://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

Network

229Requests
5361 KiBTransferred
60Scripts
31.8%3rd-party
5Long tasks
Image (77)
2667 KiB
Script (60)
1847 KiB
Font (4)
589 KiB
Stylesheet (3)
118 KiB
Document (6)
109 KiB
Fetch (37)
16 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=dataLayerScript200195 KiB
https://www.googletagmanager.com/gtag/js?id=G-R5EF3MCG7BScript200185 KiB
https://www.googletagmanager.com/gtag/js?id=G-GZEX285W2X&cx=c&gtm=4e6852Script200179 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=4e6852Script200155 KiB
https://www.googletagmanager.com/gtag/js?id=G-CQsegment&cx=c&gtm=4e6852Script200146 KiB
https://www.googletagmanager.com/gtag/js?id=G-CQsegmentScript200145 KiB
https://cdn.intellimize.co/snippet/117712186.jsScript200118 KiB
https://newrelic.com/sites/default/files/css/css_7OSMfR72xlwQfwP5SMb3QvVQy011DJ2T7DkSS3K02q0.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/Document200108 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://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=tEzYX025Image20058 KiB
https://cdn.segment.com/next-integrations/integrations/vendor/commons.1b78f84a8c1751144d06.js.gzScript20057 KiB
https://cdn.segment.com/next-integrations/actions/google-analytics-4-web/aeadee7d142fb4d69ca8.jsScript20055 KiB
https://ob.itstarsbuilding.com/i/57d2aa9906614d1b8af56294d7406ff6.jsScript20052 KiB
https://newrelic.com/sites/default/files/js/js_UmCCBjbPBVGUGp0WlLGbrAwCVBN3aMant5JEu-58OD4.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
380 ms79 ms
897 ms70 ms
1279 ms69 ms
293 ms59 ms
730 ms58 ms
Analyzing…
running mobile + desktop · ~30s