log-analysis 0.1.571

A zeek log analysis library implemented in Rust
Documentation
1
2
3
4
5

use crate::zeek::zeek_log_proto::ZeekProtocol;
use std::collections::{BTreeMap, HashMap};

pub type LogTree = BTreeMap<ZeekProtocol, HashMap<String, HashMap<String, Vec<String>>>>;