1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
//! `flowscope::emit` — structured event sinks.
//!
//! Built-in writers for the three log formats every flow-analysis
//! pipeline ends up emitting:
//!
//! - [`FlowEventCsvWriter`] — `flows.csv` for spreadsheets,
//! DuckDB, pandas. RFC-4180 quoting. No extra deps.
//! - [`FlowEventNdjsonWriter`] — newline-delimited JSON for
//! Elasticsearch / Loki / ClickHouse. Gated on the
//! `emit-ndjson` feature (pulls in `serde_json` and requires
//! `serde`).
//! - [`ZeekConnLogWriter`] — Zeek-style `conn.log` rows
//! (tab-separated). Drop-in for existing Zeek pipelines via
//! `zeek-cut`.
//!
//! Each writer takes a [`std::io::Write`] sink and a single
//! `FlowEvent<FiveTupleKey>` per call. By default they emit only
//! [`FlowEvent::Ended`]; use the per-
//! writer options struct to opt into `Started` / `Packet` /
//! anomaly rows.
//!
//! ```no_run
//! use std::fs::File;
//! use std::io::BufWriter;
//! use flowscope::emit::FlowEventCsvWriter;
//! use flowscope::extract::FiveTuple;
//! use flowscope::pcap::PcapFlowSource;
//! use flowscope::FlowTracker;
//!
//! # fn ex() -> Result<(), Box<dyn std::error::Error>> {
//! let f = File::create("flows.csv")?;
//! let mut csv = FlowEventCsvWriter::new(BufWriter::new(f))?;
//! let mut tracker = FlowTracker::<FiveTuple>::new(FiveTuple::bidirectional());
//!
//! for owned in PcapFlowSource::open("trace.pcap")?.views() {
//! for ev in tracker.track(&owned?) {
//! csv.write_event(&ev)?;
//! }
//! }
//! for ev in tracker.finish() {
//! csv.write_event(&ev)?;
//! }
//! csv.finish()?;
//! # Ok(()) }
//! ```
//!
//! New in 0.10.0 (plan 101).
pub use ;
pub use ;
pub use ;
pub use ;
use Cow;
use crateFlowEvent;
/// A lifecycle event the [`emit`](crate::emit) writers can consume —
/// implemented by both [`FlowEvent`] (the tracker
/// primitive) and the typed driver's
/// [`Event`](crate::driver::Event) (issue #97).
///
/// Lets every `write_lifecycle` accept either, so a consumer driving
/// the typed [`Driver<E>`](crate::driver::Driver) can emit its
/// `Event<K>` stream through the same CSV / Zeek / NDJSON / EVE writers
/// the raw `FlowTracker` uses — without hand-converting first.
///
/// The `FlowEvent` projection is borrowed for `FlowEvent` itself
/// (zero-copy) and produced by conversion for `Event` (see
/// [`Event::to_flow_event`](crate::driver::Event::to_flow_event)).
/// [`Event::ParserClosed`](crate::driver::Event::ParserClosed) has no
/// flow-record projection and is skipped.