Windows

Graph Ping Time with Microsoft LogParser

December 22, 2011 Rich 1 min read

Found this cool little piece while searching for log parsers for a project.

ping -n 15 www.yahoo.com | logparser SELECT TO_INT(REPLACE_STR(EXTRACT_VALUE(Text,'time',' '),'ms','')) AS Response INTO Ping.gif FROM stdin WHERE Text LIKE '%%Reply%%' GROUP BY Response -i textline -legend off -chartTitle Ping Times -view

This is from Ken Shaefer’s blog from 2005!

Leave a comment