# Location of reportsock text file $rp_loc = '/tmp/reportsock'; # Command to get information from 'top' $top_cmd = 'top -b -n 1 | head -7'; # Command to get information for disk usage $disk_cmd = 'df -h'; # Max partition usage allowed $max_hd = 95; # Max load allowed $max_load = 1; # Least CPU idle allowed $least_cpuidle = 80;