diff --git a/CHANGELOG b/CHANGELOG index 523c1462..6316bb44 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -5,7 +5,8 @@ xxxxxxxx v1.21.0 - Add Syslog string parsers (RFC 3164 and RFC 5424) - Add CEF string parser - Add PLIST file parser (XML and binary support) -- Add `mdadm` command parser tested on linux (IN PROGRESS) +- Add `-n` support to the `traceroute` parser +- Add `mdadm` command parser tested on linux - Add `--time-out` or `-t` option to add a UTC timestamp to the JSON output - Fix `lsusb` command parser for output containing a `Device Qualifier` and `Binary Object Store Descriptor` sections diff --git a/docs/parsers/cef.md b/docs/parsers/cef.md index cb275315..a75b3db6 100644 --- a/docs/parsers/cef.md +++ b/docs/parsers/cef.md @@ -17,7 +17,7 @@ and the values are converted to their respective types. Extra naive and UTC epoch timestamps are added where appropriate per the CEF specification. To preserve escaping and original keynames and to prevent type conversions -use the `--raw` or `raw=True` option in the `parse()` function. +use the `--raw` CLI option or `raw=True` param in the `parse()` function. Usage (cli): diff --git a/docs/parsers/traceroute.md b/docs/parsers/traceroute.md index 1a0f7347..eb7b5c8b 100644 --- a/docs/parsers/traceroute.md +++ b/docs/parsers/traceroute.md @@ -143,4 +143,4 @@ Returns: ### Parser Information Compatibility: linux, darwin, freebsd -Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.6 by Kelly Brazil (kellyjonbrazil@gmail.com) diff --git a/jc/parsers/cef.py b/jc/parsers/cef.py index f5071b4f..de7c3f53 100644 --- a/jc/parsers/cef.py +++ b/jc/parsers/cef.py @@ -12,7 +12,7 @@ and the values are converted to their respective types. Extra naive and UTC epoch timestamps are added where appropriate per the CEF specification. To preserve escaping and original keynames and to prevent type conversions -use the `--raw` or `raw=True` option in the `parse()` function. +use the `--raw` CLI option or `raw=True` param in the `parse()` function. Usage (cli): diff --git a/man/jc.1 b/man/jc.1 index 4314bdce..f101dc07 100644 --- a/man/jc.1 +++ b/man/jc.1 @@ -1,4 +1,4 @@ -.TH jc 1 2022-08-19 1.21.0 "JSON Convert" +.TH jc 1 2022-08-20 1.21.0 "JSON Convert" .SH NAME \fBjc\fP \- JSON Convert JSONifies the output of many CLI tools and file-types .SH SYNOPSIS