Hey everyone! 👋 I've been a Panther user for about 18 months, deeply embedded in their platform for monitoring our marketing tech stack's security posture (think PII data flows, access logs from our CDP, suspicious campaign deployment activity). Last quarter, we made a strategic shift to consolidate tools and moved to Datadog Cloud SIEM. I've now lived with both for a meaningful period, and I wanted to share my detailed, hands-on comparison for anyone else weighing these two options.
My core takeaway: **Panther feels like a powerful, dedicated security investigation lab, while Datadog is a seamless, real-time operational dashboard that happens to do great security.** The "better" tool depends entirely on whether security is a standalone function or integrated into your DevOps/marketing ops workflow.
Here’s my breakdown of key dimensions:
**Log Analysis & Schema Mapping**
* **Panther:** You embrace the power—and the work—of defining everything. Writing your own Python-based detection rules and data transforms is incredibly flexible. I had schemas meticulously mapped for our marketing attribution logs. Example of a simple custom detection I wrote:
```python
def rule(event):
# Alert on admin console login from non-corporate IP for our CMS
return (event.get('eventType') == 'console_login' and
event.get('app_name') == 'marketing_cms' and
event.get('ip_address') not in CORPORATE_NETWORKS)
```
This is fantastic for bespoke needs but requires ongoing maintenance.
* **Datadog:** It’s all about out-of-the-box normalization. You send logs, and Datadog automatically parses common fields (`user.email`, `client.ip`). The speed to value is insane, but sometimes you have to massage custom log formats (like our proprietary A/B testing tool logs) to get them perfectly understood.
**Detection & Alerting Workflow**
* **Panther:** The detection-as-code model is brilliant for version control, peer review, and integration into existing CI/CD pipelines. We had detections for anomalies in ad spend data drops. The downside is it's a more "deploy and wait" cycle.
* **Datadog:** Real-time alerting feels more fluid. Setting up a monitor for, say, "more than 5 failed login attempts to the analytics dashboard in 10 minutes" is a 5-minute UI task. The tight integration with their APM and infrastructure metrics lets you create super-contextful alerts (e.g., a security event *combined with* a spike in database CPU).
**Context & Investigation**
* **Panther:** Built for security analysts. The alert triage workflow, the ability to run bulk searches across all data with SQL/Panther Query Language, and the focus on resource-centric views (what happened with this user?) are top-tier.
* **Datadog:** Built for on-call engineers. The context is unparalleled because the security alert sits right next to the service latency graph, the deployment markers, and the related error logs. For investigating a potential breach in our data pipeline, seeing the exact code deployment that preceded it was a game-changer.
**Pricing & Value**
This was a major factor for us. Panther's pricing based on data analyzed per month is predictable and can be cost-effective if you're selective about what you ingest. Datadog's model (based on ingested GB per month + per-host fees for the infra monitoring side) can get complex, but the consolidation meant we decommissioned a separate infra tool, which offset the cost.
**So, which is better?**
If your primary need is a robust, security-focused SOC platform and your team loves code-first tooling, **Panther is a phenomenal choice.** It's deep and powerful.
If security is one piece of your operational puzzle and you value speed, unified visibility, and having security data sit alongside performance data, **Datadog Cloud SIEM is transformative.** The operational context it provides is something Panther simply can't match, as it's not built to see your entire stack's health.
For our use case—where the marketing engineering team owns both the security and reliability of our data pipelines—Datadog's integrated worldview won out. But I genuinely miss the granular control and dedicated security focus of Panther some days.
I'm happy to dive deeper into any specific area—like comparing detection rule syntax or log onboarding—if anyone has questions!
I'm a senior growth engineer at a ~300 person SaaS company in the adtech space, and my team runs our security monitoring for user-facing apps and marketing data pipelines. We evaluated both Panther and Datadog's offerings before standardizing on one.
* **TCO and Pricing Model:** Panther's model is based on data ingestion, which was roughly $2.50/GB at our scale. Datadog's Cloud SIEM uses a per-workload-host model, costing us about $21/host/month. The Datadog bill becomes more predictable unless your infrastructure is elastic, but the real cost is the observability tax; you're incentivized to use their entire suite.
* **Security-First vs. Observability-First UX:** Panther's UI is built for security analysts. Building a timeline for an incident investigation is its natural state. Datadog's UI is built for on-call engineers; you triage a security alert in the same log interface you use to debug a production API error, which is a huge win for cross-functional teams.
* **Operational Overhead:** Panther required dedicated maintenance. We had a security engineer spending a few hours a week managing detection packs and schema updates. Datadog Cloud SIEM runs on autopilot for the out-of-the-box rules, but you lose granular control. Its value comes from automatically ingesting and classifying logs from our existing 40+ Datadog integrations.
* **Alerting and Workflow Integration:** Panther's alerting felt more configurable but lived in its own channel. Datadog's security alerts land in the exact same Slack channels and PagerDuty schedules as our application alerts, which forced operational accountability. The trade-off is that serious security findings can get lost in the noise of high-volume dev alerts.
I'd recommend Datadog Cloud SIEM if your security and platform/ops teams already share on-call duties and you're heavily bought into their APM and logs. Choose Panther if you have a dedicated security team that needs deep, programmable control over the detection engine and doesn't want to be wedded to a single vendor's ecosystem.
✌️
You nailed the "observability tax". That's the real sticker shock.
Datadog's per-host price looks stable, but good luck running SIEM without also buying their log management, APM, and maybe synthetics. The bill multiplies quietly. They're masters of the soft lock-in.
Also, $21/host/month? For a 300-person company, that's hundreds of hosts. Panther's $2.50/GB would have to swallow a firehose of logs to match that. I'd bet Panther was cheaper for pure SIEM data, but you got hooked by the integration convenience.
always ask for a multi-year discount
That's a really good point about the cost comparison. I was just trying to figure out a basic TCO and got lost in the math.
So for someone just starting out, would you say the Panther per-GB model is actually *more* predictable at first? Since you can just send your critical security logs and ignore the rest? I'm worried about over-scoping with Datadog from day one and paying for hosts we don't fully monitor.