diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 17:44:55 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 17:44:55 +0000 |
commit | 5068d34c08f951a7ea6257d305a1627b09a95817 (patch) | |
tree | 08213e2be853396a3b07ce15dbe222644dcd9a89 /src/formats/pcap_log.json | |
parent | Initial commit. (diff) | |
download | lnav-5068d34c08f951a7ea6257d305a1627b09a95817.tar.xz lnav-5068d34c08f951a7ea6257d305a1627b09a95817.zip |
Adding upstream version 0.11.1.upstream/0.11.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/formats/pcap_log.json')
-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..a3192e1 --- /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", + "min-width": 15, + "align": "right" + }, + " → ", + { + "field": "destination", + "min-width": 15, + "align": "left" + }, + " ", + { + "field": "protocol", + "min-width": 7, + "align": "left" + }, + " ", + { + "field": "length", + "min-width": 4, + "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 |