:
A few modules to monitor Oracle basic OS metrics
Module data
module_begin module_name % CPU Used Oracle module_type generic_data module_exec ps aux | grep ora | grep -v grep | awk '{ sum += $3 } END { print sum }' module_end
module_begin module_name % RAM Used Oracle module_type generic_data module_exec ps aux | grep ora | grep -v grep | awk '{ sum += $4 } END { print sum }' module_end
module_begin module_name Number of processors module_type generic_data module_exec cat /proc/cpuinfo | grep processor | wc -l module_end
(Visited 509 times, 1 visits today)