Crate cloudfront_logs
source ·Expand description
AWS CloudFront logs parser
The log file format is described in the official documentation: https://docs.aws.amazon.com/AmazonCloudFront/latest/DeveloperGuide/AccessLogs.html#LogFileFormat
Re-exports§
pub use consts::*;pub use types::*;pub use deprecated::*;Deprecated
Modules§
- Logline types which (mostly) borrow their data from a
&str - deprecatedDeprecated
- Line owning variants of the parser types by taking ownership of the input data and offering a borrowed view into the parsed line.
Structs§
- The unvalidated log line for
parquetusage - OwnedValidatedParquetLogline
parquetThe validated log line forparquetusage - UnvalidatedParquetLogline
parquetThe unvalidated log line forparquetusage - ValidatedParquetLogline
parquetThe validated log line forparquetusage
Functions§
- Validates a log line
Type Aliases§
- UnvalidatedChronoLogline
chronoThe unvalidated typed log line, usingchronocrate for date and time - The unvalidated raw log line
- The unvalidated simple log line
- The unvalidated typed log line, using
timecrate for date and time - ValidatedChronoLogline
chronoThe validated typed log line, usingchronocrate for date and time - The validated raw log line
- The validated simple log line
- The validated typed log line, using
timecrate for date and time