The module returns the percentage of free physical memory. The module syntax will be the following: Module data module_begin module_name Physical Free Memory module_type generic_data module_freepercentmemory module_description Porcentaje Memoria física libre ...
The module searchs if as specific process is running. Module data module_begin module_name Process Running xxx module_type generic_proc module_service xxx module description Procces xxx Running module_end
This module returns the percentage of CPU occupied by system processes. Module data module_begin module_name CPU System module_type generic_data module_cpuusage all module_max 100 module_min 0 module_description CPU (%) used by system ...
This module returns the percentage of CPU occupied by user processes Module data module_begin module_name CPU User module_type generic_data module_exec vmstat 1 2 | tail 1 | awk ‘{ print $20 }’ | tr d “n” module_max 100 module_min 0 ...
It returns the consume percentage, pid and name of the process that is consume more than the 90% of the CPU Module data module_begin module_name Processes high CPU (%, PID, name) module_type generic_data_string module_exec core=$(nproc) && ps -eo...