log-analysis 0.1.571

A zeek log analysis library implemented in Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// default log path: /usr/local/zeek or /opt/zeek or custom/path/
// https://docs.zeek.org/en/master/quickstart.html#filesystem-walkthrough

#[derive(Debug, PartialEq, Eq)]
pub enum
ErrorType
{
    Unspecified,
    PathNotFound,
    PathPrefixUnspecified,
    ZeekProtocolNotFound,
    SearchInvalidStartDate,
    SearchInvalidEndDate,
    SearchInsufficientParams,
    NoLogHeader,
}
pub type Error = ErrorType;