diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 20:01:36 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-15 20:01:36 +0000 |
commit | 62e4c68907d8d33709c2c1f92a161dff00b3d5f2 (patch) | |
tree | adbbaf3acf88ea08f6eeec4b75ee98ad3b07fbdc /src/formats/pcap_log.json | |
parent | Initial commit. (diff) | |
download | lnav-62e4c68907d8d33709c2c1f92a161dff00b3d5f2.tar.xz lnav-62e4c68907d8d33709c2c1f92a161dff00b3d5f2.zip |
Adding upstream version 0.11.2.upstream/0.11.2
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | src/formats/pcap_log.json | 82 |
1 files changed, 82 insertions, 0 deletions
diff --git a/src/formats/pcap_log.json b/src/formats/pcap_log.json new file mode 100644 index 0000000..8ae73e2 --- /dev/null +++ b/src/formats/pcap_log.json @@ -0,0 +1,82 @@ +{ + "$schema": "https://lnav.org/schemas/format-v1.schema.json", + "pcap_log": { + "json": true, + "title": "Packet Capture", + "description": "Internal format for pcap files", + "mime-types": [ + "application/vnd.tcpdump.pcap" + ], + "multiline": false, + "convert-to-local-time": true, + "line-format": [ + { + "field": "time" + }, + " ", + { + "field": "source", + "auto-width": true, + "align": "right" + }, + " → ", + { + "field": "destination", + "auto-width": true, + "align": "left" + }, + " ", + { + "field": "protocol", + "auto-width": true, + "align": "left" + }, + " ", + { + "field": "length", + "auto-width": true, + "align": "right" + }, + " ", + { + "field": "info" + } + ], + "level": { + "warning": "^6291456$", + "error": "^8388608$" + }, + "timestamp-field": "time", + "level-pointer": "/_ws_expert__ws_expert_severity$", + "body-field": "info", + "hide-extra": true, + "value": { + "source": { + "kind": "string", + "foreign-key": true, + "collate": "ipaddress", + "identifier": true + }, + "destination": { + "kind": "string", + "foreign-key": true, + "collate": "ipaddress", + "identifier": true + }, + "protocol": { + "kind": "string", + "identifier": true + }, + "length": { + "kind": "integer" + }, + "info": { + "kind": "string" + }, + "layers": { + "kind": "json", + "hidden": true + } + } + } +}
\ No newline at end of file |