From 5abe095beb4b668e5f55fe8c9588677547e4c2a7 Mon Sep 17 00:00:00 2001 From: Kelly Brazil Date: Mon, 3 May 2021 15:26:16 -0700 Subject: [PATCH] update ping docs --- docs/parsers/ping.md | 17 ++++++++++++++--- 1 file changed, 14 insertions(+), 3 deletions(-) diff --git a/docs/parsers/ping.md b/docs/parsers/ping.md index fe0c0bc6..d2325648 100644 --- a/docs/parsers/ping.md +++ b/docs/parsers/ping.md @@ -38,14 +38,25 @@ Schema: "round_trip_ms_stddev": float, "responses": [ { - "type": string, # ('reply' or 'timeout') + "type": string, # 'reply', 'timeout', etc. See type_map for all options "timestamp": float, "bytes": integer, "response_ip": string, "icmp_seq": integer, "ttl": integer, "time_ms": float, - "duplicate": boolean + "duplicate": boolean, + "vr": integer, # hex value converted to decimal + "hl": integer, # hex value converted to decimal + "tos": integer, # hex value converted to decimal + "len": integer, # hex value converted to decimal + "id": integer, # hex value converted to decimal + "flg": integer, # hex value converted to decimal + "off": integer, # hex value converted to decimal + "pro": integer, # hex value converted to decimal + "cks": ingeger, # hex value converted to decimal + "src": string, + "dst": string } ] } @@ -169,4 +180,4 @@ Returns: ## Parser Information Compatibility: linux, darwin, freebsd -Version 1.4 by Kelly Brazil (kellyjonbrazil@gmail.com) +Version 1.5 by Kelly Brazil (kellyjonbrazil@gmail.com)