Skip to content
Book demo
Back to Tools

9 Platforms with AI Root Cause Analysis: What to Look For

Jul 18, 2026Last updated: Jul 20, 2026
Molisha Shah
Molisha Shah
9 Platforms with AI Root Cause Analysis: What to Look For

Evaluate platforms with AI root cause analysis against nine criteria before reading any vendor's ranked list. In the public documentation I reviewed, no major commercial vendor publishes precision, recall, or top-k accuracy figures for its RCA engine. I checked the docs from Datadog, Dynatrace, New Relic, PagerDuty, and BigPanda, and the pattern held across all of them.

TL;DR

Every vendor listicle I reviewed in this category ranks its own product first and skips the questions needed to judge production use. Those questions cover causal inference versus co-occurrence, topology awareness, explainability, benchmarked accuracy, code-level integration, autonomy, and pricing. I built the rubric first, then scored nine platforms against it using official docs and pricing pages.

I read competing listicles from Logz.io, Rootly, NeuBird, Nudgebee, and Energent.ai. In my review, everyone placed the publishing vendor at number one. Rootly rated itself "Advanced" while grading competitors "Basic" in its own comparison table. Energent.ai claimed an unmatched diagnostic accuracy of 94.4% with no external validation. None scored vendors on whether the platform can trace an incident back to a specific code change.

I weigh that RCA output highest because most platforms stop at deploy markers, PR attribution, or change correlation instead of code-diff analysis. That gap matters to me because I work daily with Augment Cosmos, a unified cloud agents platform built around code context more than telemetry context. Cosmos is generally available and included on all paid plans. The comparison below shows where observability-first RCA tools lose visibility into code behavior.

I start with the nine criteria, then score Datadog, Dynatrace, New Relic, PagerDuty, incident.io, BigPanda, Rootly, Logz.io's OrionIQ, and Resolve.ai against them, with a longer look at Resolve.ai.

[ Free report ]

The Agentic SDLC

How teams like Stripe, Ramp, and Uber move from solo coding agents to a coordinated, team-level system.

The Agentic SDLC report cover

The Nine Criteria That Separate Causal RCA from Anomaly Lists

An automated root cause analysis system earns trust by producing a correct, explainable first hypothesis. Ranked anomaly lists still leave humans to decide whether a correlated signal is causal, while agentic incident investigation should gather evidence, test hypotheses, and produce a reasoned conclusion. Each criterion below includes the question I would put to a vendor.

1. Signal Correlation Across Logs, Metrics, and Traces

Multi-signal correlation is the entry-level requirement. The platform must synchronize heterogeneous telemetry before any causal analysis can start, which means timestamp synchronization and noise suppression as preprocessing steps. Otherwise, the RCA engine is reasoning over alert volume rather than the incident signal. A documented weakness in current LLM-based approaches is that single-modal data limits diagnosis, and multi-modal approaches often rely on simplistic temporal alignment. Ask the vendor whether correlation runs across all three signal types or whether logs are bolted onto a metrics-first engine.

2. The Difference Between Causal Analysis and Co-occurrence

A core technical distinction in this market is whether the engine infers cause or ranks co-occurrence. Correlation-based methods compute coefficients or run PageRank over correlation-weighted graphs, and they tend to favor entities with high correlation, while the actual root cause gets overlooked. Causal discovery methods instead build directed acyclic graphs using algorithms like PC, Granger causality, or LiNGAM, and can support interventional and counterfactual reasoning.

The difference affects triage. Correlation identifies the timestamp where symptoms cluster. Causal analysis attempts to identify the propagation path and triggering change. Questions worth asking any vendor:

  • Which causal discovery algorithm do you use, and can you show the resulting DAG for a past incident?
  • Can your system distinguish a symptom node from a root cause node when both correlate strongly with the SLO degradation?
  • Does your system infer the propagation direction for each incident? Anomalies propagate both upward and downward through call graphs, and correlation-based traversal cannot reliably determine which direction.

In the public documentation I reviewed, no major commercial vendor documents whether its RCA engine uses causal discovery or correlation-weighted graph traversal. Every platform uses causal-AI language regardless of mechanism, so the burden of proof sits with the vendor in your evaluation.

3. Topology Awareness

Causal inference requires a dependency graph that reflects how failures propagate through the system during incidents. A failed service affects all its parent services, so identifying the culprit without traversing the graph is guesswork. The evaluative question is whether the platform can predict blast radius. Dynatrace's Smartscape documentation, for example, describes visualizing the impact and blast radius of problems directly. Validate against your specific topology, because monolithic, distributed, containerized, and multi-cloud environments create different propagation paths.

4. Explainability

Teams act on AI conclusions only when they can inspect the reasoning. The must-haves are a visible evidence chain, transparent reasoning for recommendations, and a natural language interface for querying incident context. The failure mode is real: ranking candidates without exposing the causal path makes it hard for responders to separate root cause from symptom. Ask to see the causal path and the evidence chain behind each candidate. Interpretable RCA research focuses explicitly on exposing event chains and avoiding unexplained rankings.

5. Published Accuracy Benchmarks

The absence of published accuracy figures is itself a finding. The academic state of the art on the RCAEval benchmark (735 failure cases, 11 fault types, 15 reproducible baselines) peaks at BARO's 0.67 AC@1, meaning the best research method fails to identify the correct root cause in the first 33% of the time. Meanwhile, human SREs achieved over 80% accuracy in zero-shot conditions in an ICCS 2025 study, outperforming the tested LLMs.

Against that backdrop, treat unbenchmarked vendor claims like NeuBird's 94% accuracy figure with skepticism; no methodology, dataset, or independent verification accompanies it. incident.io's own testing guidance gives a concrete standard: target tools with over 80% precision even at lower recall, because false positives destroy trust during high-stress outages, and validate by replaying five to ten closed incidents with known root causes through a proof-of-concept environment.

6. Code and CI/CD Integration Depth

Competing listicles skip this criterion, and the public docs I reviewed show limited coverage. BigPanda frames its Root Cause Changes product around the premise that nearly 85% of incidents and outages are caused by software and infrastructure changes. Yet no platform in this evaluation autonomously identifies the specific lines of code that caused a production incident. The table shows where each one stands.

PlatformDeploy-level markersCommit attributionCode-diff analysis
DatadogGAGA (user-supplied SHA)Preview only (Code Changes Detection via git log)
DynatraceGAVersion-levelKubernetes manifest-level GA; git-diff not documented
New RelicGAUser-supplied metadataNot documented
PagerDutyGANot documentedTime/service/ML correlation only
incident.ioVia integrationsPR-levelPR identification plus fix PR generation
RootlyVia CI/CD integrationsGitHub-connected AI SRERemediation and summary drafting; causal diff methodology not documented
BigPandaCI/CD ingestionNot detailedChange correlation, not code-diff
Resolve.aiVia integrationsGitHub/GitLab-connected actionsPR generation and commit reverts within guardrails; causal diff not documented

I cross-checked those rows against official docs from Datadog Code Changes Detection, Dynatrace root cause analysis, New Relic Change Tracking, PagerDuty Recent Changes, incident.io Investigations, and Rootly AI SRE. Only Datadog's Code Changes Detection explicitly computes the commits introduced between deployments by running git log between deployment SHAs, and Datadog gates that feature as access-gated Preview rather than GA.

This gap is why I keep code-context tooling in the evaluation. Augment reports that its Context Engine analyzes entire codebases across 400,000+ files through semantic dependency-graph analysis. When I ran Cosmos against a deploy-caused failure pattern, one configuration kept build, test, code review, and deployment context connected during the investigation, so the analysis started from dependencies and call paths and treated the deploy as part of that graph. Observability-native RCA tools usually identify that a deploy correlates with an anomaly; a code-aware agent can inspect what the change actually did.

7. Autonomy Level

Autonomy is a spectrum, and marketing consistently runs ahead of what teams deploy. Google SRE's progressive authorization model defines four levels: L1 recommends actions only; L2 stages mitigations that require explicit human approval; and L3 and L4 mutate production state only for specific, well-bounded scenarios after demonstrating sustained, statistically significant success rates against human-verified golden evaluation data. Rootly's maturity model runs Read-Only, Advised, Approved, and Autonomous, and notes that enterprises rarely jump directly to autonomous remediation.

Augment's guidance on AI agents in incident management identifies the guardrails that make autonomy survivable: idempotent actions, rollback plans before execution, audit logs, human approval for high-risk writes, and an escape hatch back to manual mode.

8. Pricing and AI Feature Gating

The pricing structure determines whether AI RCA is a line item or a multiplier, and it typically follows one of three models. Dynatrace bundles capabilities into its platform subscription, with nothing gated. Datadog's AI Credits and PagerDuty's AIOps and Advanced add-ons make AI a paid add-on. Logz.io charges per invocation. The evaluation question is what one investigation costs and what happens to the bill when incident volume spikes.

How Nine Platforms Score Against the Criteria

I evaluated each platform against the rubric using official documentation, pricing pages, and independent assessments, noting where vendor claims lack verification. The pricing summary comes first, followed by platform-by-platform findings.

PlatformAI RCA in base price?Published AI pricing
DatadogNo, AI Credits add-on$500 per 500 credits/month (annual); approximately 6.5 credits per Bits investigation
DynatraceYes, nothing gated in DPS$0.04/hour per host (infrastructure)
New RelicPartial; Advanced Compute gated to Pro/EnterpriseContact sales for compute units
PagerDutyNo, two separate add-onsAIOps from $699/mo; Advance from $415/mo
incident.ioYes, in Pro tier$25/user/month (annual)
BigPandaYes, the core product is AI$231,840/year for 20,000 credits (AWS Marketplace)
RootlyPartial; full AI SRE quote-onlyEssentials $20/user/month
Logz.ioSeparate consumption line item$10 per 1M tokens; $10 per Alert Analysis invocation
Resolve.aiYes, AI is the core productNot public; contact sales

1. Datadog (Watchdog and Bits AI)

Datadog homepage with tagline 'AI-Powered Observability and Security' and a colorful performance and security monitoring dashboard preview

Datadog runs two RCA systems with different scopes. Watchdog RCA identifies version changes, traffic increases, AWS instance failures, and disk space exhaustion as its four documented root cause types. Its docs state plainly that Watchdog never classifies degraded performance, such as higher latency or new errors, as the root cause, and it requires APM. That documented scope places Watchdog closer to a bounded-cause classification than to general-purpose causal RCA.

Bits Investigation, GA, since December 2025, is more ambitious. It operates in a continuous loop of observation, reasoning, and action, forming hypotheses and querying telemetry to validate or invalidate them. Bits marks an investigation inconclusive when data is insufficient, which I count as an explainability plus, and it ends with proposed fixes while leaving execution to the team. The constraint: Bits is primarily Datadog-native, with several third-party integrations listed as Preview, and it adds per-investigation billing through AI Credits on top of existing Datadog costs. Gate AI Credits and model per-investigation cost before rollout.

2. Dynatrace (Davis AI)

Dynatrace homepage with tagline 'Observability built for the age of AI' on a blue gradient background with a dark-themed Kubernetes and logs platform UI preview

Among the nine platforms, Dynatrace makes the most specific public causality claim. Its documentation describes deterministic, causation-based analysis powered by the Grail data lakehouse and the Smartscape real-time dependency graph, and says Davis correlates code changes, deployments, configuration, and policy updates to show what changed and why a problem occurred.

The documentation does not disclose which causal discovery algorithm, if any, underlies Davis AI, so the deterministic-causal claim remains unverifiable against the rubric. On code integration, Davis correlates deployment events and Kubernetes manifest changes as GA capabilities, but git-diff-level commit attribution is not documented. Dynatrace is the only platform in this table that bundles all capabilities with no AI gating, at published rates such as $0.04 per host-hour. Model workflow and synthetic execution costs before rollout.

3. New Relic

New Relic homepage with tagline 'Observability That Knows' on a split light and dark background with agent monitoring and OpenTelemetry feature cards

New Relic is the only vendor in this group that publishes comparative performance data for its own AI, even if self-reported. Its 2026 AI Impact Report shows accounts using AI achieving a 2x higher correlation rate, an approximately 46% noisy-alert rate versus approximately 63% for non-AI accounts, and roughly 25% faster resolution (26.75 minutes MTTC versus 50.23). Topology-aware correlation works automatically through agents and extends via the NerdGraph API.

New Relic spreads RCA across issue pages, Response Intelligence, and Logs Intelligence: issue pages show probable root cause, Response Intelligence provides causal analysis and suggested remediation, and Logs Intelligence delivers a root-cause hypothesis. On pricing, basic AIOps is included even in the free tier, but New Relic AI is behind Pro or Enterprise, and the Advanced Compute add-on requires a contact-sales rep. The jump from $99 Standard seats to $349 Pro seats should be modeled explicitly, especially for teams with many full-platform users.

4. PagerDuty

PagerDuty homepage with tagline 'Ship faster, resolve smarter, sleep better' on a dark background with green accents and an operations console UI preview

Among Datadog, Dynatrace, New Relic, PagerDuty, and BigPanda, PagerDuty had the fewest details on public RCA mechanisms in the official documentation I retrieved. Its SRE Agent ingests event data, runbooks, and logs to build an understanding of the incident's scope and likely cause, and its memory accumulates across incidents. Change correlation operates on time, related service, or machine learning, which places it below code-diff analysis on the integration rubric. In the retrieved docs, PagerDuty does not document any topology awareness or explainability mechanisms.

PagerDuty's strengths are scale and data: the company says its agents draw on operational intelligence from 86 billion events ingested and 828 million incidents created in the past year, plus enterprise compliance and 700+ integrations. Pricing adds complexity because AI requires a separate purchase at every tier. AIOps starts at $699/month and Advanced at $415/month on top of per-user plans. Using PagerDuty's published pricing, a 10-person Business team with AIOps totals $13,308/year before adding Advanced.

5. incident.io

Incident.io homepage with tagline 'Move fast when you break things' on a clean white background with coral Get a demo button

incident.io scores well on the code-integration criterion most platforms miss: its Investigations product spots the likely pull request behind an incident and can generate a fix and open a PR, all within Slack. The AI connects telemetry, code changes, and past incidents without manual prompting, and its guidance recommends a human-in-the-loop approach for initial deployments. incident.io also clearly states autonomy limits, keeping human oversight central in production environments.

The vendor claims it automates up to 80% of incident response, a self-reported figure. Pricing is the most transparent in the group: Team at $15/user/month annually, Pro at $25 with the AI agent included, and Enterprise at around $50, with no separate AI SKU. incident.io is a workflow-first tool without its own telemetry, so RCA quality depends on what your integrations feed it.

6. BigPanda

BigPanda homepage with tagline 'Agentic AI for IT operations' on a bold blue background with an ITOps workflow diagram

BigPanda documents its RCA mechanism in more detail than many AIOps incumbents. Root Cause Changes uses inference, correlation, CI/CD data, and multisource aggregation to provide natural-language explanations of the reasoning and statistical confidence behind matches. Its Open Box ML correlates across time, topology, context, and alert type with patterns that administrators can audit and adjust, and its Real-time Topology Mesh handles dependency mapping.

No independent source verifies the vendor-reported claim of 95%+ alert-noise reduction, and pricing is enterprise-only and quote-based. AWS Marketplace lists 20,000 credits at $231,840/year, with 60,000 credits at $695,520/year. BigPanda correlates change data rather than analyzing code diffs, so it identifies which change likely caused the incident without reasoning about the change's contents.

7. Rootly

Rootly AI homepage with tagline 'AI for on-call and incident response' on a purple mountain landscape background with an on-call calendar UI preview

Rootly's AI SRE runs investigations, surfaces similar past incidents, drafts remediation steps and PRs, and positions its agents as working alongside human engineers rather than replacing them. Its public materials document specific incident-workflow automations, but they do not document an independently modeled infrastructure topology or disclose a causal discovery method, so Rootly scores lower on the topology criterion than observability-native tools with dependency graphs.

Rootly self-reports a 91% faster incident resolution claim with no precision or recall methodology. Pricing: Essentials at $20/user/month includes AI Chat, AI Similar Incidents, and AI Scribe; the full autonomous AI SRE product is contact-sales-only, with startup discounts of up to 50% for companies with fewer than 100 employees.

8. Logz.io OrionIQ

Logz.io homepage with tagline 'Innovate Faster, Recover Quicker, Get Automated Insights' on a vivid yellow background with a dark log explorer UI preview

Logz.io made OrionIQ generally available in April 2026, and it automatically triggers RCA on alerts, correlating logs, metrics, and traces to surface a root cause in real time with no manual setup. It supports natural language questions, agents that take action across systems, enterprise guardrails, and spending caps for AI usage. On paper, that places it further along the autonomy spectrum than most observability-native tools.

Open source
augmentcode/augment-swebench-agent875
Star on GitHub

The homepage claim of 90x faster troubleshooting (90 minutes to 60 seconds) is self-reported. Notably, Logz.io's own RCA page declines to publish accuracy figures, stating only that results depend on the quality and breadth of the data. Pricing is consumption-based: $10 per 1 million AI Chat tokens and $10 per Alert Analysis invocation, in addition to platform ingest costs. In the retrieved documentation, Logz.io meets logs/metrics/traces correlation but does not document Slack-native incident workflow, GitHub PR generation, commit attribution, or code-diff analysis.

9. Resolve.ai

Resolve.ai homepage with tagline 'AI for prod' on a light beige background with an embedded product demo video showing the founder

Resolve.ai makes broader autonomy claims than the other vendors reviewed here and deserves scrutiny proportional to those claims. Spiros Xanthos (formerly Splunk observability) and Mayank Agarwal founded the company in 2024. It raised a $35M seed led by Greylock and, through an April 2026 Series A extension, reached a $1.5 billion valuation. Its AI Production Engineer deploys multiple specialized agents coordinated by a planner that analyze logs and metrics, test hypotheses in parallel, and either auto-fix issues or recommend fixes for engineer approval.

Against the rubric, Resolve.ai scores well in topology and breadth of integration. It builds a continuously updated knowledge graph of services, dependencies, deployments, and team knowledge, connecting all the way down to individual pods. Integrations span Grafana, Datadog, Prometheus, Splunk, New Relic, Honeycomb, OpenTelemetry, all three major clouds, PagerDuty, Slack, and, on the code side, GitHub, GitLab, and Jenkins. Governed actions include silencing alerts, reverting commits, opening PRs, and executing GitHub workflows within guardrails. Named customers include Coinbase, DoorDash, MongoDB, Salesforce, and Resolve.ai, which states it holds SOC 2 Type II certification and complies with GDPR and HIPAA.

The 80% MTTR Claim, Checked

The widely circulated 80% MTTR reduction figure does not appear verbatim in the pages retrieved by Resolve.ai. The retrieved sources make narrower and more specific claims:

  • The AI SRE product page headlines over 70% faster MTTR, 100% of alerts investigated, and under five minutes from alert to root cause.
  • The Salesforce case study reports approximately 60% MTTR reduction, approximately 70% faster alert triage, and approximately 30% less investigation time, with no disclosed baseline periods or sample sizes.
  • The DoorDash case study reports up to 87% faster time to root cause, cutting one investigation from 40 minutes to 1, again with no disclosed methodology.

No retrieved Resolve.ai page states an 80% MTTR reduction; its own product page claims over 70%. The 80% figure most likely echoes industry-wide category marketing, since incident.io publishes the same up-to-80% MTTR language. Resolve.ai does not publicly list pricing, so treat third-party estimates as estimates only.

Resolve.ai's public model emphasizes knowledge graphs, parallel investigation, and governed remediation. Telemetry-first platforms still lack semantic understanding of code behavior. When I ran Cosmos on a failing-service scenario, prior codebase analysis surfaced service boundaries and likely call paths before telemetry correlation, which is the ordering that a code-first approach makes possible.

Decision Framework: Team Size, Stack, and Autonomy Comfort

No single AI root cause analysis tool wins across contexts. The platforms split into observability-native AI (Datadog, Dynatrace, New Relic), incident-management AI (incident.io, Rootly, PagerDuty), and standalone AI SRE agents (Resolve.ai, Cleric, Traversal). A Kubernetes-native team and a hybrid-infrastructure enterprise need different buying criteria, and a team focused on on-call coordination needs different tooling than one focused on investigation depth.

By Team Size

Team size changes the buying decision because pricing, governance, and integration depth scale differently across vendors.

  • 5 to 30 engineers: incident.io (AI included at $25/user Pro, Slack-native) or Rootly (up to 50% startup discounts, $20/user Essentials). New Relic's free tier works for teams establishing early visibility. Skip BigPanda; it is enterprise-priced.
  • 30 to 200 engineers: Datadog or New Relic if you are already on the platform, paired with incident.io or Rootly for workflow AI. Budget for AI add-ons explicitly, since Datadog's per-investigation credits and New Relic's Pro seat jump are where costs escalate.
  • 200+ engineers: Dynatrace (71% of its G2 reviewers are enterprise users, and its subscription avoids AI gating), BigPanda for change-heavy ITIL environments, or Resolve.ai if you can absorb contact-sales pricing and want closed-loop investigation plus remediation.

By Stack

Choose observability-native AI if your telemetry already lives in one platform; native access typically means better RCA, at the cost of lock-in. Choose incident-management AI if your main constraint is coordination and post-incident learning. Choose a standalone agent only if your telemetry pipeline is mature, because these agents depend on data from your existing observability stack. If your incidents trace back to code changes, weigh PR-level and diff-level integration heavily, which narrows the field to incident.io, Rootly, Resolve.ai, and code-first platforms like Cosmos.

By Autonomy Comfort

Map your comfort to the maturity stages: start read-only, move to advised, then approved, and grant bounded autonomous execution only for high-frequency, rollback-safe failure classes. A benchmark discussed in Augment's AIOps guide shows that broad autonomous investigation still falls short for complex incidents. Replay real incidents, compare tool output with known root causes, and expand automation only after those reviews show reliable performance. Human approval should stay attached to state-mutating steps until the tool has earned trust on your own incidents.

Score the Code-Integration Gap Before You Shortlist

The evaluation order is simple. During any proof-of-concept, use closed incidents with known root causes, demand the causal path for each candidate, and price the AI add-ons at real incident volume. For a deeper grounding in how AI agents fit into incident response, start with the AI SRE guide that anchors this series.

Frequently Asked Questions About AI Root Cause Analysis Platforms

These are the questions platform and reliability teams ask when they are deciding which AI RCA tool to trust in production.

Written by

Molisha Shah

Molisha Shah

GTM

Molisha is an early GTM and Customer Champion at Augment Code, where she focuses on helping developers understand and adopt modern AI coding practices. She writes about clean code principles, agentic development environments, and how teams are restructuring their workflows around AI agents. She holds a degree in Business and Cognitive Science from UC Berkeley.


Get Started

Give your codebase the agents it deserves

Install Augment to get started. Works with codebases of any size, from side projects to enterprise monorepos.