The monitoring gap everyone is about to hit
Your AI agent finished the workflow. It returned a 200. The session closed cleanly. Token costs posted to the dashboard.
And somewhere, a user got completely wrong information and quietly moved on.
No alert fired. No exception was thrown. By every metric your monitoring infrastructure was built to track, the system worked. The problem is that 78% of AI agent failures don't surface as system errors at all. They're semantic failures: an agent that hallucinates a fact, loops on a subtask without terminating, drops context between steps, or calls a tool three times in the wrong sequence until the workflow completes with bad state.
APM tools were designed for a different world. A world where software either worked or threw an error. Deterministic systems. That world ended the moment agents started writing text.
Sentrial, a two-person YC W2026 company founded by UC Berkeley undergrads Neel Sharma and Anay Shukla, is building the observability layer for the world that replaced it. Their pitch: "Datadog for agent reliability." Their differentiation: they actually mean it at the semantic level, not just the infrastructure level.
StartupHub.ai tracks 145 companies working on AI agent monitoring and observability. The vast majority are still pre-Series A, which means the category is forming, not formed. The incumbent tooling - LangSmith, Langfuse, Weights and Biases - was built for a different job, and nobody has firmly claimed the production monitoring slot yet. That gap is what Sentrial is running at.
Where the founders came from
Neel Sharma spent time at Sense building agentic optimization pipelines. Anay Shukla deployed DevOps agents at Accenture. Both watched the same failure pattern repeat: production deployments that looked green by every observable metric except the actual outputs. Users getting wrong answers. Workflows completing with incorrect data. No way to know which sessions had failed, let alone why.
The standard response to this problem has been to add more pre-production evaluation. More test cases, more evals, better coverage in LangSmith before the code ships. That helps at the margin. It doesn't help with the production distribution shift problem: real user traffic exposes failure modes that test suites don't cover, and there's no feedback loop from production failures back to the eval suite unless you build one deliberately.
Sentrial is that feedback loop, made product.
What the product does
Five lines of code. A callback handler added to your existing LangChain, LangGraph, OpenAI, or Anthropic setup. Full session telemetry starts flowing immediately: inputs, outputs, latency, token costs at each step of every agent run.
On the classification side, Sentrial ships with seven built-in failure detectors: hallucinations, bad tool calls, infinite loops, agent forgetfulness (losing context across multi-step workflows), jailbreaking, unsafe outputs, and user frustration signals extracted from conversation patterns. These run on every session in real time, not as a batch job after the fact.
When a failure fires, a Slack alert goes out with source-code-level pinpointing. Not a generic "agent failure in session X." The exact step, the exact output, the exact tool call that went wrong.
The feature that separates Sentrial most clearly from its competitors is replay-and-fork. Engineers can branch execution from the exact point where a session broke, without re-running the full workflow from the start. For multi-step agent pipelines where reaching the failure state takes minutes of processing, this is not a convenience feature. It's the difference between being able to debug in minutes and spending an hour recreating state before you can start.
Custom failure modes can be defined from three or four example logs, deployed in under a minute. No labeling campaign. No ML engineers needed to configure a new classifier. The operational loop from "we're seeing a new failure pattern" to "we're alerting on it" is intentionally short.
The classifier architecture
Here's where the technical bet lives. The detection engine post-trains classifiers specifically on each customer's traffic patterns rather than using a generic LLM-as-judge approach against a universal rubric.
The practical difference matters. A generic judge will flag domain-specific outputs as hallucinations when they're correct, and miss failures that require knowing what correct looks like in that specific context. A fintech agent answering regulatory questions produces outputs that look unusual to a generic judge and entirely normal to a domain-calibrated one. Per-customer fine-tuning closes that gap.
This is also why Sentrial captures full logs without sampling. The architectural decision is deliberate and directly competitive. Datadog's per-host billing model creates a financial incentive to sample: more hosts observed means higher bills, so teams route a percentage of traffic. Sampling is catastrophic for catching rare agent failure modes. A failure affecting 0.4% of sessions disappears completely from a 10% sample. Sentrial's session-based pricing removes that incentive by design. Full-fidelity capture across all traffic, because the failures worth catching are precisely the ones that don't announce themselves.
OpenTelemetry compatibility lets the telemetry route into existing observability stacks where they already exist. This isn't a rip-and-replace for infrastructure monitoring. It's a semantic layer above it.
The competitive landscape
LangSmith and Langfuse are the tools most engineering teams building agents have already touched. Sentrial's position on both is clear: they're offline evaluation platforms, designed for pre-production iteration and model improvement. Excellent at what they're designed for. Not built for the production behavioral monitoring problem.
The distinction isn't marketing. Offline evals run against fixed test suites. Production monitoring has to handle the open-ended distribution of real user behavior. An agent that performs well on 200 curated test cases can still hallucinate on the 201st real query if that query is slightly outside the evaluation distribution. The test suite can't tell you this. Production telemetry can.
Raindrop.ai is the closest direct competitor with a production-first stance, scoring 59 on the StartupHub platform. Judgment Labs, focused on continuous improvement at scale, sits at 63. Neither has established the category the way Datadog established infrastructure observability. The market is still early enough that the winner isn't obvious.
Traction and the team
Six weeks before YC Demo Day, Sentrial was at zero MRR. By Demo Day, they were at $30,000 MRR. That's not a freemium funnel with a thousand free accounts. At two people with a session-based pricing model, that revenue concentration means a small number of paying customers writing real checks. The reference case is a Fortune 1000 company running LangChain agents across supply chain, HR, and marketing automation that cut agent error rates from above 20% to below 10% within one week of Sentrial deployment.
Two founders, both current undergraduates, no outside investors beyond YC's $500K seed from January 2026. The leanness is notable for what it implies about the product: at this stage, a two-person team can only close deals this fast if the integration experience is genuinely simple and the time-to-value is short. Five lines of code and a Slack alert within hours checks both boxes.
The moat: what's real and what isn't
The per-customer classifier advantage compounds over time. As Sentrial accumulates session data across customers in similar domains, the failure detection models improve faster than any new entrant starting from scratch. The integration data flywheel - more customers means more labeled failure examples means better classifiers - is the kind of moat that takes time to build, not just capital.
Replay-and-fork is a genuine engineering differentiator that nobody else has shipped yet. Whether it stays proprietary is the open question: LangSmith's engineering team could build this. It's likely on roadmaps.
What's not a moat: the integrations. LangChain, LangGraph, OpenAI SDK, Anthropic SDK - these are published APIs. Any well-resourced competitor adds support in a sprint. The SDK layer is table stakes, not a defense.
The harder structural challenge is distribution. LangSmith is embedded in how teams already work with agents. Teams reaching for monitoring features will reach for LangSmith first, even if those features are weaker, because the context switch cost is lower. Sentrial has to win on outcome quality, not convenience, until they build enough brand recognition that "use Sentrial for production monitoring" becomes a default recommendation in the ecosystem.
The build challenge
A capable engineering team could reproduce the outer shell of Sentrial - the SDK integration layer, trace ingestion, Slack alert routing - in three to four months. The replay-and-fork system adds another quarter. The piece that can't be copied quickly is classifier quality, because it comes from production traffic data accumulated over real customer deployments. The first year of session data is the asset, not the codebase.
The full-capture, no-sampling pipeline at production scale also has real infrastructure cost. Teams doing this wrong will either sample (losing the rare failures) or overingest (building unsustainable cost structures). Getting the pricing model right to support full fidelity while remaining competitive with Datadog's per-host numbers is an ongoing operational challenge, not a solved one.
Replicability score: 48 out of 100. The integration and pipeline are replicable. The classifier depth and the production data flywheel are not, at least not quickly.


