Ingest swallows billions of log lines per second — firewall events, cloud trails, endpoint telemetry — and surfaces the single alert that matters before your analyst finishes their coffee.
Drag the sliders to match your environment. Watch Splunk and Sentinel costs diverge in real time — every GB, every source, every day of retention.
* Estimates based on published list pricing. Splunk: $4.50/GB ingest. Microsoft Sentinel: $2.76/GB. Ingest pricing is volume-tiered. Actual costs may vary.
Every log source — regardless of format, schema, or transport — hits the same API endpoint. Ingest handles normalization, deduplication, and correlation in the pipeline.
Every rule maps to a MITRE ATT&CK technique, ships pre-tuned against false-positive baselines, and can be forked and customized in KQL without leaving the UI.
index=endpoint action="smb_connect"
| stats count by src_ip, dest_ip
| where count > 10
| join dest_ip [search index=firewall action=allow]The Ingest API accepts any log format over HTTPS. No agents for collection, no schema mapping, no ETL pipelines. Send logs. Get alerts.
https://api.ingest.io/v1/streamimport ingest
client = ingest.Client(api_key="sk_live_...")
# Stream 10,000 events in a single call
response = client.ingest(
source="palo-alto-fw-01",
events=log_batch, # list[dict] — any schema
schema="auto", # auto-detect or specify
correlation=True, # enable real-time correlation
)
print(f"Ingested: {response.events_accepted:,}")
print(f"Correlated: {response.alerts_triggered} alerts"){
"request_id": "req_01HNKP2X4Z9QM7VWSR",
"events_accepted": 847291,
"events_dropped": 0,
"bytes_ingested": 284019234,
"schema_detected": "palo-alto-traffic-v9.1",
"correlation_time_ms": 4.2,
"alerts_triggered": 3,
"alerts": [
{
"id": "alert_DR4421_01HNKP",
"rule": "DR-4421",
"severity": "CRITICAL",
"name": "Lateral Movement via SMB",
"confidence": 0.97
}
],
"pipeline_stage": "correlation_complete",
"ingest_rate_eps": 2410000
}The Ingest agent auto-discovers log sources, negotiates schemas, and begins streaming without a single config file. Pick your platform, run one command.
curl -sSL https://get.ingest.io | sh -s -- --token sk_live_...Supports Ubuntu 20.04+, RHEL 8+, Debian 11+
14-day free trial. No credit card. Bring your own log sources and see your first correlation alert within the hour.