batch-fileconnectionlatencypinging

Latency detection using Batch Script


I am making a batch script that detects High latency from a pinging reply and to notify me with my connection. My script detects 300ms to 700ms numbers by saving pinging reply to log file.

ping -n 15 192.206.238.4 | find /i "Reply" > nul > %cd%\acttracing.log

Then use findstr to search for 300ms to 700ms content and if thus it will go to :sound where it plays a warning notification.

nul findstr /c:"time=680" acttracing.log && (
  echo "High Latency" was found.
) || (
  echo "High Latency" was NOT found.
)
If %ERRORLEVEL% equ 0 goto :sound

nul findstr /c:"time=685" acttracing.log && (
  echo "High Latency" was found.
) || (
  echo "High Latency" was NOT found.
)
If %ERRORLEVEL% equ 0 goto :sound

nul findstr /c:"time=690" acttracing.log && (
  echo "High Latency" was found.
) || (
  echo "High Latency" was NOT found.
)
If %ERRORLEVEL% equ 0 goto :sound

nul findstr /c:"time=695" acttracing.log && (
  echo "High Latency" was found.
) || (
  echo "High Latency" was NOT found.
)
If %ERRORLEVEL% equ 0 goto :sound

nul findstr /c:"time=700" acttracing.log && (
  echo "High Latency" was found.
) || (
  echo "High Latency" was NOT found.
)
If %ERRORLEVEL% equ 0 goto :sound

Now the problem, it's frequently notifying me even in one high latency number found from the saved log file which obviously not affecting my connection. How to make it go to :sound only if it detects 10 times ERRORLEVEL? is there a way to write my script shorter than writing it from 300 to 700?

thanks in advance....


Solution

  • Use a for command to get the output of ping, tokenize/split/explode it, get the response time, and finally compare.

    set ip=google.com
    for /f "skip=2 delims=" %%a in ('ping %ip% -n 1') do (
    set "var=%%a"
    goto next
    )
    :next
    for /f "tokens=1-6" %%a in ("%var%") do set var=%%e
    set time=%var:~5,-2%
    if %time% GTR 300 (
    if %time% LSS 700 (
    echo high latency
    ))
    

    It's very straightforward, but quite a bit lengthy (hope that's not a problem?).