#!@@PERL@@ # # $Id: netstat.in 1142 2006-10-17 12:27:35Z tore $ # # $Log$ # Revision 1.6 2004/12/10 18:51:44 jimmyo # linux/apt* has been forced to LANG=C, to get predictable output. # # Revision 1.5 2004/12/10 10:47:50 jimmyo # Change name from ${scale} to ${graph_period}, to be more consistent. # # Revision 1.4 2004/12/09 22:12:56 jimmyo # Added "graph_period" option, to make "graph_sums" usable. # # Revision 1.3 2004/11/21 00:17:12 jimmyo # Changed a lot of plugins so they use DERIVE instead of COUNTER. # # Revision 1.2 2004/05/20 19:02:38 jimmyo # Set categories on a bunch of plugins # # Revision 1.1 2004/01/29 19:21:20 jimmyo # Moved generic netstat to linux-dir, as it is too spesific. Added Solaris version of the plugin as well. (SF#882354) # # # Parameters: # # config # autoconf # #%# family=auto #%# capabilities=autoconf use strict; if (defined $ARGV[0] and $ARGV[0] eq "autoconf") { print "yes\n"; exit; } elsif (defined $ARGV[0] and $ARGV[0] eq "config") { print "graph_title Netstat\n"; print "graph_args -l 0 --base 1000\n"; print "graph_vlabel active connections per \${graph_period}\n"; print "graph_category network\n"; print "active.label active\n"; print "active.type DERIVE\n"; print "active.min 0\n"; print "active.max 50000\n"; print "passive.label passive\n"; print "passive.type DERIVE\n"; print "passive.min 0\n"; print "passive.max 50000\n"; print "failed.label failed\n"; print "failed.type DERIVE\n"; print "failed.min 0\n"; print "failed.max 50000\n"; print "resets.label resets\n"; print "resets.type DERIVE\n"; print "resets.min 0\n"; print "resets.max 50000\n"; print "established.label established\n"; print "established.type GAUGE\n"; print "established.max 50000\n"; exit; } my %trans = ( tcpActiveOpens => "active", tcpPassiveOpens => "passive", tcpAttemptFails => "failed", tcpEstabResets => "resets", tcpCurrEstab => "established" ); # Slurp mode undef $/; open(NETSTAT, '/usr/bin/netstat -s -P tcp|'); $_ = ; close(NETSTAT); s/^\n*//; s/^TCP/ /m; while (/\s+(\w+)\s*=\s*(\d+)/g) { print "$trans{$1}.value $2\n" if exists $trans{$1}; }