# 32 ------------------------------------------------------------------------ # # Data to graph: summary of all open files per process # # Nagios plugin: check_unix_fds.pl -a /srv/app/nagios/bin/nagios -w 50,80 # # Nagios output: ||UNIX_OPEN_FDS OK - nagios handling 44 files # # Use perfdata: |open_files=2016;160000;180000 # # --------------------------------------------------------------------------- # /output:UNIX_OPEN_FDS .* - (\S+) handling (\d+) files/ and push @s, [ "$1_open_files", [ 'open_files', GAUGE, $2 ] ];