Indicate the number of transfers per second that were issued to the device. Module data module_begin module_name Block_dev_tps module_type generic_data module_exec sar -d | grep devX | tail -1 | awk ‘{print $3}’ (Average) module_exec sar -d 1 1 | grep...
It returns the pid of the process that is consume more than the 90% of the CPU Module data module_begin module_name Processes high CPU module_type generic_data_string module_exec ps -eo pcpu,pid,comm | sort -n | grep -v CPU | tail -1 | awk ‘{if ($1>90)...
It counts the number of processes that are in the Zombie status. Module data module_begin module_name Zombie processes module_type generic_data module_exec ps eos | grep Z | wc l | tr d “\n” module_description Number of zombie processes ...