On this page
Why Datadog's Pricing Feels Unpredictable
No single line item is the problem. The problem is the stack. Datadog's products activate independently, but real workloads use several simultaneously: APM hosts, log ingestion, indexed events, retention tiers, and LLM Observability all bill at the same time. Teams mentally budget one product at a time because Datadog's pricing pages are organized that way, and they miss how the meters overlap until the invoice arrives.
This compounds harder for AI agent workloads than for traditional infrastructure monitoring. A single LLM call creates traces for the API request, token streaming, embedding lookups, vector DB queries, and response parsing, generating 8 to 15 spans per request compared to 2-3 for a typical API endpoint. Agent loops compound this to 40-75 spans per user interaction. At the same time, each agent session generates high-cardinality logs that hit ingestion, indexing, and retention meters simultaneously. Infrastructure teams evaluating Datadog for AI observability are comparing a known cost model to a workload they've never metered.
If you're weighing Datadog against other tools for AI agent monitoring specifically, that comparison deserves its own treatment. This article focuses on understanding the pricing mechanics so you can build an accurate estimate before you commit.
The Six Billing Dimensions You Need to Model
Datadog pricing has six major meters. Every estimate needs to account for all of them, because leaving one out is how bills land 2x over budget.
1. Infrastructure hosts. Priced per host per month. The Pro plan runs around $15/host/month on annual commitment; Enterprise is higher. Hosts are the foundation, but they're often not where AI agent cost growth happens.
2. APM (traces and spans). Two sub-meters: per host for the APM platform license, plus per ingested span. Ingested spans are separate from indexed spans (more on that below). Many teams activate APM without realizing the span ingestion meter is running independently.
3. Log ingestion. Charged at approximately $0.10 per GB ingested, regardless of whether those logs are indexed. At 10 GB/day, that's $30/month just to ingest, before any indexing decision.
4. Indexed logs. Indexed logs are what you can actually search and alert on. The rate is approximately $1.70 per GB per month with 15-day retention. At 10 GB/day (roughly 300 GB/month), that's $510/month for indexed logs alone, on top of ingestion costs. Not all ingested logs need to be indexed, but for AI agent debugging, you often don't know which logs matter until something goes wrong.
5. Retention windows. Retention multiplies indexed log cost. Moving from 15-day to 30-day retention increases indexed span costs from $1.70 to $2.50 per million spans per month. For logs, the multiplier is similar. Longer retention is often necessary for AI agents where behavioral patterns take time to emerge, and that cost is easy to underestimate.
6. LLM Observability. Datadog's LLM Observability add-on bills per LLM span. First-bucket rates apply up to a volume threshold, with overage rates above it. This is the newest meter and the one AI teams are most likely to miscalculate because they don't have historical volume data to anchor their forecast.
Three meters teams consistently forget: custom metrics cardinality explosion (each unique tag combination is a separate metric, and agent metadata creates cardinality fast), indexed spans (separate from ingested spans, and separately priced), and log rehydration from archive (pulling archived logs back into search for post-incident analysis triggers a separate fee). These three alone can add 20-40% to a bill that looked reasonable at estimate time.
What an AI Agent Workload Actually Costs: Scenario Math
Most pricing breakdowns use web server or database examples. Here's what the math looks like for actual AI agent traffic.
Assume each agent session generates roughly 50 LLM spans (conservative for a multi-step agent with tool calls) and approximately 2 MB of logs.
Small: 10,000 agent sessions/month
- • LLM spans: 500,000 spans/month
- • Log ingestion: ~20 GB/month ($2)
- • Indexed logs at 15-day retention: ~20 GB ($34)
- • LLM Observability (estimated, 500k spans): variable by plan
- • Rough log-side total: ~$36/month plus APM host licenses and LLM span fees
At this scale, costs are manageable, and the pricing complexity is mostly an inconvenience.
Medium: 100,000 agent sessions/month
- • LLM spans: 5,000,000 spans/month
- • Log ingestion: ~200 GB/month ($20)
- • Indexed logs at 15-day retention: ~200 GB ($340)
- • At 30-day retention: ~$500 for indexed logs
- • Log-side total before APM and LLM Observability fees: $360-520/month
This is where teams first notice the bill doesn't match their mental model. Adding AI workload monitoring to an existing Datadog setup has increased observability bills by 40-200% depending on volume and instrumentation depth.
Large: 1,000,000 agent sessions/month
- • LLM spans: 50,000,000 spans/month
- • Log ingestion: ~2,000 GB/month ($200)
- • Indexed logs at 15-day retention: ~$3,400/month
- • At 30-day retention: ~$5,000+ for indexed logs alone
- • LLM Observability overage rates likely apply at this volume
Before adding APM host fees and custom metrics cardinality, the log-side cost at 1M sessions is already in the range that triggers procurement reviews.
Estimation checklist before you build a forecast:
- 1. Count agent sessions per day (your traffic, not estimates)
- 2. Estimate spans per session (instrument one real flow and count)
- 3. Estimate log volume per session in MB (measure, don't guess)
- 4. Choose retention window and price the difference explicitly
- 5. List every other Datadog product already active on your account; the AI workload meters add to that baseline
The Sampling Tradeoff: Where Datadog's Model Strains for AI Agents
The most expensive assumption teams make isn't a line item. It's this: that sampling logs and traces is a reasonable cost-control lever for AI agent workloads. For infrastructure monitoring, sampling is usually fine. A server that's unhealthy generates enough signals, across enough requests, that a 10% sample still captures the pattern.
AI agents are different. We've analyzed 12 million logs across customer agent traffic at Sentrial, and 78% of agent failures are silent: no error thrown, no timeout, just a wrong or useless answer and a user who leaves. Only 22% were explicit tool call failures. The rest were hallucinations, user frustration, and agent forgetfulness. They don't throw status 500. They return a confidently wrong answer, and the user closes the tab.
Those silent failures don't appear in error rates. They appear in the logs you sampled away.
Here's the economic bind: full log coverage at Datadog's indexing rates gets expensive fast, as the scenario math above shows. Sampling cuts costs but cuts coverage. For AI agents, the failure signal is almost always semantic and behavioral. It's in content, not in status codes. So sampling systematically removes the evidence for the problem class that matters most.
A real example: one Series B finance startup running vendor quote agents had their agent looking correct by every infrastructure metric. Spans completed, no errors, latency within bounds. But the agent wasn't properly ingesting the initial PDF and was hallucinating quotes based on surrounding context rather than the actual document data. This went undetected for weeks because the failure was in the answer, not the execution.
AI agents fail silently by returning incomplete answers or wrong outputs while appearing healthy in every conventional monitoring signal. Sampling makes this worse, not better.
This is the gap that Sentrial was built to close. Sentrial is a production monitoring platform for AI agents that covers the full observability stack: session-level tracing of inputs, outputs, latency, and token costs at every step; automated evaluations that flag hallucinations, tool failures, user frustration, and goal abandonment; prompt A/B testing with statistical rigor; real-time Slack alerts on error spikes and behavioral anomalies; and source-code-level failure pinpointing with fix suggestions. Every interaction is classified, not a sample, using post-trained models fine-tuned on each customer's specific agent traffic patterns rather than a generic LLM-as-judge setup. Teams can also instantiate custom classifiers by defining a failure mode, reviewing three or four example logs, and deploying a fine-tuned classifier in under a minute. Sentrial integrates in minutes via OpenTelemetry, LangChain, LangGraph, or custom Python agents.
One Fortune 1000 customer running custom Python and LangChain agents for supply chain, HR, and marketing saw their error rate drop from 20% to under 10% in a single week once full log coverage exposed the failure patterns sampling had been hiding.
To be direct: this isn't a reason to dismiss Datadog. For infrastructure correlation, incident workflows, and unified infrastructure-plus-AI visibility, it remains a strong platform. The strain is specific: its billing model incentivizes sampling at the exact volume where AI agent monitoring requires full coverage. Sentrial is a direct alternative that covers tracing, evaluations, A/B testing, alerting, and debugging in one platform, purpose-built for the production AI agent use case.
How to Estimate Your Datadog Bill Before You Commit
The most reliable approach is a one-week instrumented pilot on a representative slice of real agent traffic, not synthetic load.
In that week, measure:
- • Actual GB/day ingested (not estimated from session count)
- • Indexed events generated per day
- • Spans per LLM call (measure a real multi-turn session, including retries)
- • Which existing Datadog products are active and will share the bill
Then extrapolate to monthly at your expected production volume. Build two versions: one at your median traffic forecast, one at 3x. AI agent workloads can spike unpredictably, particularly after a product launch or viral moment, and the difference between median and spike can double your bill in a billing period.
On annual versus on-demand: annual discounts are real (typically 10-20%), but they require accurate volume forecasts. AI agent workloads that you haven't yet profiled in production are hard to forecast accurately enough to commit to annual volumes confidently. On-demand protects against overcommitting; annual makes sense once you have three to six months of measured data.
If your primary goal is full production observability for AI agents, Sentrial's session-based pricing is designed to be forecastable without modeling host count, cardinality, or indexing tiers. Where Datadog requires you to manage six concurrent billing meters and accept sampling tradeoffs to stay within budget, Sentrial gives you tracing, evaluations, A/B testing, alerting, and debugging in one platform at a cost that scales with sessions rather than spans-times-retention-times-cardinality.
Datadog remains appropriate for teams that need unified infrastructure and AI visibility and can absorb the pricing complexity. The question is which tool is metered for the problem you're actually trying to solve.
For current official rates, Datadog's pricing page is the authoritative source. Use the estimation checklist from the scenario math section to pressure-test your assumptions against those rates before signing anything.
FAQ
How do retention windows affect Datadog pricing for logs?
Retention windows directly multiply your indexed log cost. At 15-day retention, indexed logs run approximately $1.70 per GB per month. Extending to 30 days increases that cost proportionally, roughly to $2.50 per million indexed spans. For AI agent debugging, longer retention is often operationally necessary because behavioral issues take time to surface and diagnose. Model both retention tiers explicitly in your estimate; the difference at medium-to-large log volumes is substantial.
What is the difference between log ingestion and indexed logs, and why does it matter for pricing?
Log ingestion is the cost to send logs to Datadog, charged at approximately $0.10 per GB regardless of what happens to them. Indexed logs are the subset you can actively search, filter, and alert on, charged at approximately $1.70 per GB per month with 15-day retention. The gap matters because you can ingest all logs but only index a fraction to control costs. For AI agents, the problem is that you often don't know which logs matter until after a failure, so under-indexing creates blind spots at exactly the wrong moment.
How do you calculate Datadog log costs from your usage in GB per day?
Multiply your daily GB by 30 to get monthly ingestion volume. Apply $0.10/GB for ingestion costs. Then decide what fraction to index and apply $1.70/GB at 15-day retention to that indexed volume. Example: 10 GB/day is 300 GB/month. Ingestion: $30. If you index all of it at 15 days: $510. Total log-side: $540/month, before APM hosts, LLM spans, or any other active product. That compounding is what makes per-day estimates misleading.
What is a cost-effective alternative to Datadog for AI agent monitoring specifically?
If your primary need is production observability for AI agents, including silent failure detection, hallucination flagging, tool call validation, prompt optimization, and real-time alerting, the cost-effectiveness calculation changes significantly. Datadog's pricing model is optimized for infrastructure telemetry, and full log coverage for AI agent behavior gets expensive fast. Sentrial is a full-capability alternative: it covers session-level tracing, automated evaluations for hallucinations and behavioral failures, prompt A/B testing with statistical rigor, real-time Slack alerts with source-code-level debugging, and custom classifier deployment in under a minute. Full log coverage is included by design, not an upsell. For teams that need both infrastructure and AI agent observability in one place, Sentrial's integrated stack is worth comparing directly against Datadog's multi-meter model before committing to either.
Share