1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-07-15 01:24:29 +02:00

update docs to add "duplicates" fields

This commit is contained in:
Kelly Brazil
2020-07-21 15:16:39 -07:00
parent 7e1b041016
commit 778d1bacbf
2 changed files with 28 additions and 12 deletions

View File

@ -22,6 +22,7 @@ Examples:
"packets_transmitted": 3,
"packets_received": 3,
"packet_loss_percent": 0.0,
"duplicates": 0,
"round_trip_ms_min": 28.015,
"round_trip_ms_avg": 32.848,
"round_trip_ms_max": 39.376,
@ -33,7 +34,8 @@ Examples:
"response_ip": "151.101.1.67",
"icmp_seq": 0,
"ttl": 59,
"time_ms": 28.015
"time_ms": 28.015,
"duplicate": false
},
{
"type": "reply",
@ -41,7 +43,8 @@ Examples:
"response_ip": "151.101.1.67",
"icmp_seq": 1,
"ttl": 59,
"time_ms": 39.376
"time_ms": 39.376,
"duplicate": false
},
{
"type": "reply",
@ -49,7 +52,8 @@ Examples:
"response_ip": "151.101.1.67",
"icmp_seq": 2,
"ttl": 59,
"time_ms": 31.153
"time_ms": 31.153,
"duplicate": false
}
]
}
@ -64,6 +68,7 @@ Examples:
"packets_transmitted": "3",
"packets_received": "3",
"packet_loss_percent": "0.0",
"duplicates": "0",
"round_trip_ms_min": "25.078",
"round_trip_ms_avg": "29.543",
"round_trip_ms_max": "32.553",
@ -75,7 +80,8 @@ Examples:
"response_ip": "151.101.129.67",
"icmp_seq": "0",
"ttl": "59",
"time_ms": "25.078"
"time_ms": "25.078",
"duplicate": false
},
{
"type": "reply",
@ -83,7 +89,8 @@ Examples:
"response_ip": "151.101.129.67",
"icmp_seq": "1",
"ttl": "59",
"time_ms": "30.999"
"time_ms": "30.999",
"duplicate": false
},
{
"type": "reply",
@ -91,7 +98,8 @@ Examples:
"response_ip": "151.101.129.67",
"icmp_seq": "2",
"ttl": "59",
"time_ms": "32.553"
"time_ms": "32.553",
"duplicate": false
}
]
}

View File

@ -21,6 +21,7 @@ Examples:
"packets_transmitted": 3,
"packets_received": 3,
"packet_loss_percent": 0.0,
"duplicates": 0,
"round_trip_ms_min": 28.015,
"round_trip_ms_avg": 32.848,
"round_trip_ms_max": 39.376,
@ -32,7 +33,8 @@ Examples:
"response_ip": "151.101.1.67",
"icmp_seq": 0,
"ttl": 59,
"time_ms": 28.015
"time_ms": 28.015,
"duplicate": false
},
{
"type": "reply",
@ -40,7 +42,8 @@ Examples:
"response_ip": "151.101.1.67",
"icmp_seq": 1,
"ttl": 59,
"time_ms": 39.376
"time_ms": 39.376,
"duplicate": false
},
{
"type": "reply",
@ -48,7 +51,8 @@ Examples:
"response_ip": "151.101.1.67",
"icmp_seq": 2,
"ttl": 59,
"time_ms": 31.153
"time_ms": 31.153,
"duplicate": false
}
]
}
@ -63,6 +67,7 @@ Examples:
"packets_transmitted": "3",
"packets_received": "3",
"packet_loss_percent": "0.0",
"duplicates": "0",
"round_trip_ms_min": "25.078",
"round_trip_ms_avg": "29.543",
"round_trip_ms_max": "32.553",
@ -74,7 +79,8 @@ Examples:
"response_ip": "151.101.129.67",
"icmp_seq": "0",
"ttl": "59",
"time_ms": "25.078"
"time_ms": "25.078",
"duplicate": false
},
{
"type": "reply",
@ -82,7 +88,8 @@ Examples:
"response_ip": "151.101.129.67",
"icmp_seq": "1",
"ttl": "59",
"time_ms": "30.999"
"time_ms": "30.999",
"duplicate": false
},
{
"type": "reply",
@ -90,7 +97,8 @@ Examples:
"response_ip": "151.101.129.67",
"icmp_seq": "2",
"ttl": "59",
"time_ms": "32.553"
"time_ms": "32.553",
"duplicate": false
}
]
}