# 01 ------------------------------------------------------------------------ # # Data to graph: RoundTrip Time measured by Ping # # Service type: check-host-alive (ping) # # Nagios plugin: check_ping # # Nagios output: ||PING OK - Packet loss = 0%, RTA = 1.84 ms # # --------------------------------------------------------------------------- # /output:PING.*?(\d+)%.+?([.\d]+)\sms/ and push @s, [ ping, [ losspct, GAUGE, $1 ], [ rta, GAUGE, $2/1000 ] ];