Skip to content
Frontier Tech

AI observability [What It Changes]

Sep 2, 2026

TL;DR

  • AI observability records what a model or agent actually did — prompts, retrievals, tool calls, and answers — then scores whether that work was accurate, on-task, and cheap enough to keep.

  • On August 13, 2026, Dynatrace said it would buy Arize for $915 million, with about $815 million in cash, because ordinary uptime dashboards miss silent AI failures.

  • A two-truck HVAC shop, a 10-person agency, or a solo clinic should care when a bot invents a part number, pads a ROAS figure, or books the wrong slot while every CPU graph stays green.

  • Start with traces and evals on the customer-facing or money-moving steps you already run, then plug the same OpenTelemetry-shaped signals into whatever platform you grow into.

Key Takeaways

  • Watching whether an agent ran is not the same as watching whether it told the truth; that second watch is now a bought-and-sold layer of the stack.

  • Arize ships Phoenix for local traces and evals plus OpenInference conventions on OpenTelemetry, which is why developers show up in this purchase and not only SREs.

  • NIST, ISO/IEC 42001, and the EU AI Act already ask for logging, human oversight, and post-market monitoring — observability is how a small team produces those records.

  • You do not need a $915 million platform on day one; you need a trace on every tool call that can move money, a scored sample of outputs, and a human stop when the score drops.

  • Teams already routing work through agentic workflows add this as instrumentation, not as a second operating system.

What AI observability actually means

AI observability is the practice of recording what a model or agent actually did — the prompt, the retrieval, the tool call, and the answer — then scoring whether that work was accurate, on-task, and cheap enough to keep running.

If you run a two-truck HVAC shop, a 10-person marketing agency, or a solo clinic, this is not a Silicon Valley hobby. Your dispatch bot can invent a part number, your reporting agent can pad a return-on-ad-spend figure, and your intake chatbot can book the wrong slot while every CPU graph stays green.

Traditional monitoring asks whether the job ran. AI observability asks whether the job told the truth, stayed inside the task, and left an audit trail a person can replay.

That gap is why a monitoring company paid hundreds of millions of dollars for a startup that watches agents, as of August 13, 2026, and why a shop with twelve employees should instrument the three automations that touch customers or cash first.

The CNCF glossary defines observability as a system property: the degree to which the system can generate actionable insights from external outputs. OpenTelemetry's primer adds that you ask questions without already knowing the inner workings, using traces, metrics, and logs as the signals.

AI observability keeps those three signals and adds two more: the text the model saw, and a score for whether the text it produced was grounded, safe, and on-task. Without those extras, an agent can complete a workflow on the wrong path and still look healthy.

A clinic that already routes intake forms through US Tech Automations can attach a hallucination check on the same step that writes the appointment, instead of standing up a second stack. That is the SMB version of what the Dynatrace–Arize deal is buying at enterprise scale.

What Dynatrace bought, and what the check cleared

According to Dynatrace's August 13, 2026 press release, the company signed a definitive agreement to acquire Arize in a cash-and-stock transaction valued at $915 million. Dynatrace is paying $915 million for Arize.

According to the same press release, cash in the deal is approximately $815 million, with replacement equity awards for Arize employees who join, funded from cash on hand and the existing credit facility. Cash in the deal is about $815 million.

According to MarketBeat on Yahoo Finance, Dynatrace expects the acquisition to add roughly 200 basis points to fiscal 2027 ARR growth — about $40 million — and to dilute non-GAAP operating margin by about 175 basis points that year.

Dynatrace's own release states the same 200-basis-point ARR accretion and 175-basis-point margin dilution for fiscal 2027, and says the deal is expected to close later that quarter or early in the company's third quarter, subject to regulatory review.

Yahoo Finance's write-up dated August 20, 2026 frames the close window as late September or early October and quotes CEO Rick McConnell on the need to know whether AI output is accurate and trustworthy, because AI systems fail in ways that do not page an infrastructure dashboard.

According to Diginomica, McConnell described an $82 billion market for core observability that is now being supplemented, by the end of the decade, with a $10 billion AI observability space.

According to Diginomica, McConnell estimated current customer overlap between the two firms at around 20-30%, and pointed to millions of monthly downloads of Arize's open-source Phoenix platform as the developer-buying motion Dynatrace wants.

Arize's site states the product processes 1 trillion spans, runs 1 billion evals per year, and sees 5 million downloads per month. The Phoenix product page separately lists 3 million-plus monthly downloads, 10k-plus GitHub stars, 7k-plus community members, and 22 million-plus monthly OpenTelemetry instrumentation downloads.

Founders Jason Lopatecki and Aparna Dhinakaran are slated to join Dynatrace at close, with Lopatecki continuing to lead the Arize team and report to McConnell, per the official release. Arize's homepage already banners a new chapter with Dynatrace.

Deal itemFigure
Total consideration$915 million
Cash portion~$815 million
Stated FY2027 ARR growth add~200 bps
Stated FY2027 non-GAAP OM dilution~175 bps
Yahoo-stated FY2027 ARR dollars~$40 million
Stated AI observability market by 2030>$10 billion
Stated core observability market$82 billion
Stated customer overlap20–30%

Sources: Dynatrace press release; Yahoo Finance / MarketBeat; Diginomica.

Dynatrace's product blog on the deal is explicit about the operating split it is trying to close: AI engineers evaluate models in one tool, while SREs watch apps and GPUs in another, so when a customer transaction fails the cause can sit anywhere from the prompt to the infrastructure.

That is the mechanism in plain language. The constraint that broke is silent failure. A misconfigured API returns a 500 you can page on. An agent can return a fluent, wrong invoice description with HTTP 200, and the Dynatrace AI observability page lists the extra signals — tokens, tool calls, guardrails, RAG retrieval, GPU saturation — that a classic APM dashboard never stored.

Why "it ran" stopped being enough

OpenTelemetry already taught teams to treat a user request as a trace made of spans: each span is one unit of work with timestamps and attributes. An AI request is the same shape, except the interesting attributes are the prompt, the retrieved chunks, the tool name, the token counts, and the output text.

OpenInference, maintained by Arize on top of OpenTelemetry, is the convention set for those AI-specific spans. OpenTelemetry's gen-AI semantic-convention index exists so backends can agree on names for agent spans, metrics, and events rather than inventing a private format.

Phoenix on GitHub describes itself as an open-source AI observability and evaluation platform: tracing on OpenTelemetry, LLM-as-judge evals, versioned datasets, prompt experiments, and a local pip install arize-phoenix path. The repository listed 9,824 commits on the page fetched for this article.

That local path is the SMB on-ramp. You do not start by buying Dynatrace. You start by tracing the agent that talks to customers, then scoring a sample of its answers against a tiny gold set you already trust.

Datadog's Agent Observability docs treat each request as a trace that may be a single inference, a predetermined workflow, or a dynamic agent, and they capture tokens, errors, latency, and quality evaluations. LangSmith Observability is the same idea for teams already on LangChain: traces first, then datasets you evaluate against.

New Relic's AI observability page lists the practical triad small teams actually feel: response time, token cost, and quality, plus MCP server-call tracing as agents start calling tools. Microsoft Foundry's observability guide (updated 2026-07-31) splits the job into evaluation, production monitoring, and distributed tracing on OpenTelemetry.

Amazon Bedrock Guardrails is the adjacent control, not the trace store: six configurable policies, including hallucination checks against a source, and a vendor claim that the filters block up to 88% of harmful content. According to Amazon Web Services, Automated Reasoning checks validate model answers with up to 99% accuracy using formal logic — a figure to treat as AWS's own claim, not an independent lab result.

The honest limit is coverage. Tracing tells you what the agent did. An eval tells you whether a sample looked good. Neither proves the next unsampled answer is safe, and neither replaces a human on refunds, medical advice, or tax filings.

The three questions this stack now answers

McConnell, as quoted in Diginomica, reduced the category to three questions: is it working, is the output accurate and trustworthy, and are agentic systems delivering the outcomes they were built for.

Question one is classic SRE work: latency, errors, GPU saturation, queue depth. Dynatrace's AI observability solution page still sells that layer — tokens, cost, slowest requests, A/B model compares.

Question two is the Arize-shaped layer: hallucination, drift, toxicity, off-task answers. Phoenix walks a five-step loop — observe, annotate, hypothesize, experiment, measure — so a change to a prompt is a scored experiment, not a Friday hope.

Question three is the business join. An agent can pass evals and still fail the outcome: it booked a job, but on the wrong truck; it drafted an invoice, but with the wrong SKU. That join is why Dynatrace's deal blog keeps repeating "business outcomes" next to traces.

According to Dynatrace's Pulse of Agentic AI 2026 study write-up, 51% of 919 leaders cited technical challenges in managing and monitoring agents at scale. 51% of 919 surveyed leaders cited monitoring barriers.

The same January 22, 2026 study summary reports 52% naming security, privacy, and compliance as a top blocker, 45% struggling to define when agents may act without a human, 42% with limited real-time tracing, 44% still reviewing inter-agent communication by hand, and 69% of agentic decisions verified by a human.

Barrier or practice (n = 919 leaders)Share
Security, privacy, and compliance concerns52%
Managing and monitoring agents at scale51%
Unclear autonomy vs human-approval rules45%
Limited real-time tracing of agent behavior42%
Manual review of inter-agent communication44%
Human verification of agentic decisions69%
Observability used during implementation69%
Expect a budget increase in the next 12 months74%
Agentic AI in ITOps / DevOps72%
Fully autonomous agents only13%

Source: Dynatrace, "Autonomous operations hits an inflection point," January 22, 2026, summarizing The Pulse of Agentic AI 2026 study of 919 leaders. Vendor-sponsored research; treat the percentages as that study's findings, not a census.

Those numbers describe enterprises, not two-truck shops. The pattern still maps. If 44% of surveyed leaders still read agent chats by hand, a 10-person agency that lets a reporting bot talk to form-to-CRM automation without a sampled eval is taking the same risk with fewer people to catch it.

The small-business automation landscape is already full of bots that draft, file, and follow up. AI observability is the missing receipt on those bots.

USTA analysis: what $915 million is pricing

This USTA analysis uses only figures already cited above. It is arithmetic on vendor-stated numbers, not a forecast of close odds or of Dynatrace's actual fiscal 2027 ARR.

Input A: total consideration $915 million, from the Dynatrace press release. Input B: cash $815 million, from the same release. Cash share = 815 / 915 = 0.8907, or 89.1% cash.

Input C: Yahoo Finance / MarketBeat states that 200 basis points of fiscal 2027 ARR growth is "about $40 million." 200 basis points is 2%. Implied ARR base if that pairing holds: $40 million / 0.02 = $2.0 billion. That is a check on the pairing, not an independent ARR disclosure; the press release states the 200 basis points and does not restate the $40 million.

Input D: Dynatrace's stated AI observability category size of more than $10 billion by 2030, from the press release. $915 million / $10 billion = 9.15% of that 2030 floor. The category figure is a projection the buyer used in its announcement, not a counted 2026 market.

Read the three ratios together and the purchase is mostly cash, sized as a low-single-digit slice of the 2030 category the buyer itself named, against an implied ARR base in the billions if Yahoo's dollar translation of the 200 basis points is taken at face value. None of that tells a clinic what to pay for Phoenix. It does tell you the category is no longer a side feature on an APM invoice.

What a small team should instrument first

Start with the automations that can move money or a customer relationship. For a clinic, that is intake, scheduling, and anything that writes into the chart. For an HVAC shop, that is dispatch, quoting, and parts lookup. For an agency, that is the reporting agent and the CRM writer.

Stand up Phoenix locally from the GitHub project or the Phoenix page. Trace every LLM call and every tool call. Keep the traces in your environment if the prompts contain patient, customer, or taxpayer data.

Add one eval that matches the failure you actually fear: groundedness against the work order, "did we book the requested day," "does this invoice line match the SKU list." Score a sample, not 100% of traffic, until you know the cost of the judge model.

Put a human stop on refunds, medical advice, tax positions, and anything that sends money. The Pulse study found 69% of agentic decisions still verified by a person; a 12-person shop should not undercut that on purpose.

Teams already routing documents through US Tech Automations workflows will plug this in as a model swap, not a rebuild: the same data-extraction or customer-service step emits a trace, and the eval hangs off that step.

Accounting shops that post through US Tech Automations finance agents can log every tool call before the ledger writes, which is the same control practice-management software already expects for human staff. An executive-assistant automation that books travel or files a follow-up needs the same receipt.

If you later outgrow a laptop collector, the OpenInference instrumentation is meant to export to Phoenix, Arize AX, Dynatrace, Datadog, or any OpenTelemetry backend. That is the point of a convention. Do not wait for the $915 million merger to close before you log the tool call.

Standards, clocks, and the audit you will be asked for

According to NIST, the AI Risk Management Framework was released on January 26, 2023 for voluntary use, to fold trustworthiness into design, development, use, and evaluation of AI systems.

NIST AI 600-1, the generative-AI profile dated July 2024, is the companion that names risks unique to or exacerbated by generative systems and maps suggested actions onto the RMF functions. A clinic or agency will not implement every subcategory; they will still be asked, by an insurer or a bigger customer, whether they measure output quality and keep a log.

According to ISO, ISO/IEC 42001:2023 is the first AI management-system standard, 51 pages, published in December 2023, sold at CHF 225. It is Plan-Do-Check-Act for AI: policy, risk treatment, and continual improvement, not a model card.

According to the European Commission, the AI Act (Regulation (EU) 2024/1689) entered into force on 1 August 2024, became applicable on 2 August 2026, and high-risk AI systems face strict obligations starting 2 December 2027, including logging for traceability, human oversight, and post-market monitoring.

Even a US shop that never sells into the EU collides with those clocks when a vendor, a payroll processor, or a hospital partner does. Transparency rules for chatbots — tell the person they are talking to a machine — are the part that lands on a 10-person agency first.

OWASP's LLM Top 10 project page points to the OWASP GenAI LLM Top 10 2026, published August 4, 2026, and still lists the 2023 v1.1 set: prompt injection, insecure output handling, data poisoning, model denial of service, supply-chain holes, sensitive-information disclosure, insecure plugins, excessive agency, overreliance, and model theft.

Excessive agency and overreliance are the two that AI observability actually watches in production. You cannot eval your way out of a poisoned training set, but you can catch an agent that started calling refund tools it was never assigned.

According to MITRE ATLAS, the living knowledge base catalogs 197 techniques, 16 tactics, 39 mitigations, and 72 case studies covering predictive, generative, and agentic AI. Cost harvesting, prompt injection, and LLM data leakage sit on that matrix as realized techniques, not thought experiments.

InstrumentDate or count
NIST AI RMF 1.0 releasedJanuary 26, 2023
NIST AI 600-1 generative profileJuly 2024
ISO/IEC 42001 publishedDecember 2023
ISO/IEC 42001 page count51
EU AI Act entered into force1 August 2024
EU AI Act became applicable2 August 2026
High-risk obligations start2 December 2027
OWASP GenAI LLM Top 10 2026 publishedAugust 4, 2026
MITRE ATLAS tactics16
MITRE ATLAS techniques197

Sources: NIST AI RMF; NIST AI 600-1; ISO/IEC 42001; European Commission AI Act; OWASP GenAI LLM Top 10 2026; MITRE ATLAS.

None of those documents sell a dashboard. They all assume you can show what the system did. AI observability is the evidence locker.

Signal vs Speculation

Demonstrated fact (sourced): Dynatrace signed a definitive agreement to buy Arize for $915 million, about $815 million of it cash, announced August 13, 2026, with a close targeted later that quarter or early in Dynatrace's third quarter, subject to regulators, per the company release. Phoenix and OpenInference exist today as open-source paths. NIST, ISO 42001, the EU AI Act, OWASP, and MITRE ATLAS are published instruments, not rumors. Dynatrace's own 919-leader study reports monitoring, autonomy rules, and hand-review as current blockers.

Not demonstrated: that the deal closes on the stated timetable; that the combined product will actually join prompt-level evals to GPU traces for customers on day one; that the $10 billion-by-2030 category size will land; that 200 basis points of ARR will appear; that SMB tools will get cheaper because an enterprise vendor bought the open-source brand.

Our read: if the close holds, the next 12–36 months for small and mid-size businesses look like a two-speed market. Enterprises will be sold a single pane that claims to cover evals plus infrastructure. Everyone else will keep assembling Phoenix or LangSmith or Datadog traces on the three workflows that can embarrass them in public. Insurers and bigger customers will start asking for logs the way they already ask for SOC 2. Shops that already have a workflow spine will add a scorer. Shops that let agents email clients with no trace will learn about observability from a complaint, not from a blog post.

Our read, continued: do not wait for Dynatrace-plus-Arize to become your vendor. Wait for OpenTelemetry-shaped traces you can move. The honest 36-month risk is not that AI observability stays exotic. It is that it becomes a checkbox on a vendor MSA while your actual agent still has no eval on the refund tool.

Glossary

  • AI observability: Recording prompts, retrievals, tool calls, and outputs, then scoring whether the work was accurate, on-task, and affordable.

  • Trace: The end-to-end record of one request as it moves through services; in AI work, one user question through every model and tool call.

  • Span: One unit of work inside a trace — a single LLM call, a retrieval, or a tool invocation — with timestamps and attributes.

  • Eval: A scored check on an output, run by a human, a rubric, or another model acting as judge.

  • Hallucination: A fluent output that is not grounded in the allowed source, such as an invented SKU or appointment.

  • Drift: A silent change in behavior as data, prompts, tools, or user mix shift after the last test.

  • OpenInference: Arize-maintained OpenTelemetry conventions for GenAI spans, usable with Phoenix or other backends.

  • Guardrail: A filter or policy that blocks or rewrites unsafe, off-topic, or ungrounded content, adjacent to but not the same as a trace store.

FAQs

What is AI observability?

AI observability is the practice of recording what a model or agent actually did and scoring whether that work was accurate, on-task, and cheap enough to keep. It sits on top of ordinary traces, metrics, and logs, and it adds the prompt, the tool call, and an eval.

How is AI observability different from ordinary monitoring?

Ordinary monitoring tells you the process ran, the GPU was busy, and the HTTP status was 200. AI observability tells you the agent retrieved the wrong document, invented a part number, or called a refund tool it was never assigned, which is the failure mode Dynatrace's CEO described as not showing up on an infrastructure dashboard.

Do small businesses need AI observability?

Yes, on the few automations that can move money or a customer relationship, not on every chatbot experiment. A two-truck shop that lets a quoting bot talk to parts lookup without a trace is taking an enterprise-shaped risk with a consumer-shaped staff.

What did Dynatrace buy with Arize?

It bought an AI-native evaluation and tracing company, including the Phoenix open-source tool and OpenInference conventions, for $915 million, about $815 million in cash, per the August 13, 2026 release. The stated aim is to join pre-production evals with production observability.

Which open-source tool should a team start with?

Start with Phoenix if you want traces plus evals on a laptop, because it speaks OpenTelemetry and OpenInference and can stay in your environment. If you are already deep in LangChain, LangSmith is the shorter path; if you already pay Datadog, use Agent Observability.

How do regulations connect to this?

The EU AI Act requires logging and human oversight for high-risk systems, NIST's AI RMF asks organizations to measure and manage AI risk, and ISO/IEC 42001 is a certifiable management system. Observability is how you produce the records those regimes assume exist.

When should a human still stop the agent?

Stop the agent on refunds, medical advice, tax positions, credit decisions, and any irreversible customer message. The 919-leader study still has 69% of agentic decisions verified by a person; that is a floor, not a ceiling, for a small shop.

What to do this week

Pick one live agent. Turn on tracing. Write a ten-row gold set for the failure you actually fear. Score a sample daily. Put a human on the money path.

If that agent already lives in a workflow you operate, map the watch-points onto agentic workflows you already run rather than standing up a parallel system. The live platform map sits on the company home page.

The $915 million check is the enterprise signal. The shop-floor change is smaller and earlier: stop shipping answers you cannot replay.

About the Author

Garrett Mullins
Garrett Mullins
Workflow Specialist

Helping businesses leverage automation for operational efficiency.

See how AI agents fit your team

US Tech Automations builds and runs the AI agents that handle this work end to end, so your team doesn't have to.

View pricing & plans