Request an exact quote
Cybersecurity · Network detection & response migration path

From Corelight to Zeek

The shortest exit in security: Corelight is packaged Zeek, so the logs and scripts carry over unchanged. What you actually give up is sensor engineering, curated Suricata content, enrichment, and support, and this guide is mostly about pricing those honestly.

Effort
Medium
Est. timeline
~15 wks
Zeek model
Free (open source)
Open source
Yes
▶ Model your savings in the interactive calculator

This is the shortest migration in the entire cybersecurity category, and it is worth saying why up front. Corelight sells sensors built on Zeek, the open network-monitoring framework, with Suricata alongside it. The log formats are Zeek’s, the scripting language is Zeek’s, and the analytical model is Zeek’s. Everything downstream, your SIEM parsers, your detections, your dashboards, your analysts’ habits, is already built against open technology.

That makes the technical migration unusually low-risk and puts the entire decision on one question: is Corelight’s packaging worth its subscription in your environment? This guide is mostly about answering that honestly rather than about migration mechanics, because the mechanics are genuinely straightforward.

Start with a log diff, because it is your entire scope

Before any planning, run open Zeek on a copy of the same traffic a Corelight sensor is watching, for a full day, and diff the output.

You will find three categories. Log types and fields that are identical, which is the majority and the reason this works. Corelight additions that are not in open Zeek, extra collections, inference logs, enrichment fields added at the sensor. And normalisation differences where Corelight has cleaned up or standardised something.

For each item in the second and third categories, ask one question: does any detection, dashboard, or investigation workflow depend on it? Most will not. The ones that do are your migration work, and they are usually addressable with a custom Zeek script or by moving the enrichment downstream into your SIEM pipeline, where arguably it belonged anyway.

That diff is the scope. Everything else in this project is deployment engineering.

What the subscription actually buys

Be fair to the product here, because underestimating this is how the migration goes wrong.

Capture engineering. Running Zeek at high packet rates without loss is the hard part of network monitoring, and it is not obvious work. NIC choice, driver and ring-buffer configuration, AF_PACKET fanout or PF_RING, CPU pinning, worker counts, and cluster topology all matter, and getting them wrong produces a sensor that looks healthy and silently misses traffic. Corelight has done this engineering and validated it on specific hardware.

Suricata content management. Corelight curates and updates rulesets. Open Zeek does not include Suricata at all, so you are deploying and managing it separately, choosing rule sources (ET Open or a paid feed), and handling updates.

Enrichment and integrations. Additional context on logs, and packaged export paths into common SIEMs.

Fleet management. A control plane for many sensors, versus configuration management and your own tooling.

Support. Someone to call when a sensor misbehaves at 2am.

If your monitored links are modest, your team runs Linux confidently, and your detections come from your SIEM rather than from Corelight’s additions, most of that is replaceable with effort you already have. If you are watching multi-gigabit links with no capture-tuning experience on the team, the subscription is buying you a genuine capability.

The mapping

  • Corelight sensor → Zeek on commodity hardware, standalone or in cluster mode depending on rate.
  • Corelight’s bundled Suricata → Suricata deployed separately, with a chosen ruleset and update mechanism.
  • Corelight Fleet manager → configuration management (Ansible or equivalent) plus your monitoring.
  • Sensor-side enrichment → SIEM-side enrichment in your ingest pipeline.
  • Corelight-specific log types → custom Zeek scripts, or an accepted gap, per the diff.
  • Export integrations → Filebeat, Kafka, or direct log shipping from the sensor.
  • Support contract → your on-call rota, plus the Zeek community and optional third-party support.

Sizing and the packet-loss discipline

The one thing that must not be casual is capture loss instrumentation.

A Zeek deployment dropping packets does not fail loudly. It produces logs that look complete and confident and are quietly missing sessions, which corrupts every conclusion drawn from them. Instrument capture statistics from the first day, alert on drop rate crossing a threshold, and review it weekly rather than treating it as a deployment-time check.

For sizing, a rough approach: start with a standalone Zeek on a modern server for links up to around a gigabit of real traffic, and move to cluster mode with load balancing across workers above that. Measure rather than trust the estimate, because packet rate and protocol mix matter more than headline bandwidth, and a link full of small packets is far harder than one full of bulk transfers.

Run the new sensor alongside the Corelight sensor on duplicated traffic and compare connection counts. If open Zeek is logging materially fewer connections than Corelight on identical input, you have a capture problem, not a configuration difference, and that comparison is the cleanest test you will get.

Order of operations

  1. Diff a day of Corelight logs against open Zeek on the same traffic, and classify every difference.
  2. Check every custom script for Corelight-specific events, fields, or packages.
  3. Decide what happens to Suricata: deploy separately, with a chosen ruleset and update path.
  4. Size and build the sensor, standalone or cluster, with capture-loss instrumentation from day one.
  5. Run in parallel on duplicated traffic, comparing connection counts and log volumes.
  6. Close the diff: write scripts or move enrichment into the SIEM for the differences that matter.
  7. Re-point log shipping to the new sensor while keeping Corelight active.
  8. Soak for a full month, including a peak traffic period, watching drop rates.
  9. Retire the sensor subscription at its renewal boundary, once the parallel period is clean.

Clearing the bar before you cut over

Connection counts match Corelight’s on identical traffic within a small margin. Capture loss is instrumented, alerting, and near zero at peak. Every custom script runs and produces output. Suricata is deployed with a maintained ruleset and a working update mechanism. Every log field a detection or dashboard depends on is present, either natively or via a replacement script. And someone owns the sensor operationally, by name.

The short version

Corelight to Zeek is the least locked-in migration in this category, because the product is the open engine plus packaging. Diff the logs first, since that diff is the entire scope. Be honest that the subscription buys real capture engineering, curated Suricata content, and support, and that your traffic rate largely determines whether replacing those is trivial or genuinely hard. Instrument packet loss from day one, because a silently dropping sensor is worse than none. Use the calculator above for illustrative economics, and count the hardware, the Suricata management, and the on-call ownership as the price of dropping the subscription.

Tooling & automation for this path

Corelight is packaged Zeek, so the logs and scripts you already rely on carry over: deploy open Zeek (with Suricata alongside for signatures) on sized commodity hardware, port custom scripts and the log-shipping pipeline unchanged where possible, then decide deliberately what you lose in packaged support and enrichment before dropping the sensor subscription.

Primary references: official Zeek documentation ↗ and the Corelight documentation ↗ , always verify version-specific behavior against them before you migrate.

Frequently asked questions

Are Corelight logs really the same as open Zeek logs?

The core log types are Zeek's own, which is why downstream detections, dashboards, and SIEM parsers generally keep working. Corelight adds value on top: additional collections and inference logs, enrichment fields, and packaging that normalises output across sensors. So the honest expectation is that most of your pipeline carries over and a specific subset of fields and log types will disappear. Diff a day of Corelight output against a day of open Zeek output on the same traffic before you plan anything else, because that diff is your entire migration scope.

What is Corelight actually charging for, if the engine is open?

Sensor engineering, mostly, and it is genuinely valuable work. Getting Zeek to process high-rate traffic without dropping packets involves NIC selection, kernel bypass or AF_PACKET tuning, receive-side scaling, CPU pinning, and cluster architecture, and Corelight has done that engineering and validated it on their hardware. On top of that: curated Suricata rule management, enrichment, integrations, a management plane for a fleet of sensors, and a support contract. Whether that is worth the subscription depends almost entirely on your traffic rate and whether you have the skills in-house.

Can we run open Zeek at 10Gbps or more?

Yes, and people do, but it is real engineering rather than a package install. Above a few gigabits you are into cluster mode with a manager, proxies, and multiple workers, load-balanced across cores via PF_RING, AF_PACKET fanout, or a hardware packet broker. Expect to tune, measure, and iterate on packet loss, because a Zeek deployment that silently drops packets produces confident, incomplete logs, which is worse than no sensor at all. Instrument capture loss from day one and alert on it.

Do our custom Zeek scripts run on open Zeek?

Almost always, since it is the same interpreter. The exceptions are scripts referencing Corelight-specific events, fields, or packages, which will error or silently do nothing. Grep your script estate for anything Corelight-namespaced, test every script against open Zeek on captured traffic, and treat a script that loads without error but produces no output as a failure rather than a pass.

Is this migration ever a bad idea?

Yes, in two clear cases. If your traffic rate is high enough that packet loss is a genuine engineering risk and nobody on the team has tuned a capture pipeline before, the subscription is buying you competence you do not otherwise have. And if the curated Suricata content and enrichment are doing real detection work that nobody will replace, you are removing capability to save a licence. Neither is a reason not to run the analysis, but both are reasons the answer might be to stay and negotiate instead.

Model your 3-year cost

Pre-filled for Corelight → Zeek; adjust every figure with your own numbers. Estimates are illustrative, not vendor quotes, see our methodology.

Sized at 10 Gbps inspected, cost is computed on this.
Stay on Corelight (3yr)
$240,000
Move to Zeek (3yr + migration)
$75,000
Projected savings
$165,000 (69%)
Payback period
9.6 mo
Build a decision report from these numbers:

How this is licensed: Security is the category where the billing unit changes per segment: EDR/XDR bills per endpoint or per protected asset; SIEM bills by ingest volume (GB/day) or events per second; MDR, MSSP, and SOC-as-a-Service bill per endpoint or per asset for endpoint-centric services but per GB ingested for co-managed SIEM and SOC-as-a-Service; SOAR bills per analyst seat or per automation run; and vulnerability management bills per scanned asset. The calculator normalizes everything to protected endpoints so segments stay comparable; if you are modelling a SIEM or an ingest-priced SOC-as-a-Service specifically, treat one endpoint as roughly one asset generating logs and sanity-check the total against your GB/day contract.

Illustrative, editable figures, not vendor pricing (defaults reviewed May 2026).

Request a vendor-accurate Zeek quote

A guided builder that turns your estimates into a requirements report (RFQ) you can send to a vendor, partner, or distributor for a binding quote, then feed the real prices back into the calculator above. How our estimates work.

  1. 1Size it
  2. 2Requirements
  3. 3Your details
  4. 4Channels & export

How big is your Corelight estate?

Every device that needs the agent installed. Not sure? Enter rough numbers, the distributor confirms exact counts later.

1,000 endpoints
Default mid-size assumption (1,000 endpoints)