Gawk
From AdminWiki
Problems and Solutions
Get a columns from lines matching a pattern
A small example explains it all:
netstat -s | awk '/active connections/ { print "active.value " $1 } /passive connection ope/ { print "passive.value " $1 } /failed connection/ { print "failed.value " $1 } /connection resets/ { print "resets.value " $1 } /connections established/ { print "established.value " $1 }'