Access Log Parser

This is a pure Rust library for parsing access log entries. It currently support common, combined, Cloud Controller Nginx and Gorouter log formats.

Usage

Add the following to your Cargo.toml:

toml [dependencies] access_log_parser = "0.6"

Parse a log line:

rust let entry = parse( LogType::CommonLog, r#"127.0.0.1 - - [15/Mar/2019:03:17:05 +0000] "GET / HTTP/1.1" 200 612"#, ); if let Ok(LogEntry::CommonLog(entry)) = entry { assert_eq!(entry.ip, Ipv4Addr::new(127, 0, 0, 1)); assert!(entry.identd_user.is_none()); assert!(entry.user.is_none()); assert_eq!( entry.timestamp, FixedOffset::west(0).ymd(2019, 3, 15).and_hms(3, 17, 5) ); match entry.request { LogFormatValid::Valid(req) => { assert_eq!(req.method(), http::Method::GET); assert_eq!(req.uri(), "/"); assert_eq!(req.version(), http::Version::HTTP_11); assert_eq!(entry.status_code, http::StatusCode::OK); assert_eq!(entry.bytes, 612); } LogFormatValid::InvalidRequest(path) => panic!("invalid path [{}]", path), LogFormatValid::InvalidPath(path, err) => { panic!("invalid request [{}], err: {:?}", path, err) } } }

Features

License

This software is released under version 2.0 of the Apache License.