vmPing
vmPing copied to clipboard
Show lost packets for the last X packets sent
Today we have a "status bar" that shows "Sent", "Received" and "Lost", but sometimes we have 999999 packets already sent and the "Lost" information alone is not so useful because we don't know when the loss occurred.
Would be nice if there is a "Lost (
Even better would be a "filter" option to show only lost packets, packets higher than X msec, and so on.
Or a search field with RegEx capabilities, so we could create advanced filters.
Thanks in advance! :)
hm... i thought about that, but it might be aginst the simplicity of vmPing. Isn't "status history" in menu and the "Popup Notifications" (both see below) enough data of status changes? If you need further diving into the data you could parse the logs via powershell like that (not fully tested) in the log directory:
dir |% {"Timeout on $($_.name.replace('.txt','')) within last 100 Pings: $((gc $_ -Tail 100 | where {$_ -match "Request timed out"}).count)/100"}
Timeout on 8.8.8.8 within last 100 Pings: 0/100
Timeout on 9.9.9.9 within last 100 Pings: 0/100
Status History:
Popup Notifications:
Maybe when issue #12 will be implementet with a table like the following one there can be two more columns for "Loss % last 100" and "Loss % last 1000" for example
What do you think about my suggestions?