:
This simple module gives you opened handles in your SO, by using lsof tool (usually installed or available in the SO addons). Could be easily modified to search on a given process or user only.
Module data
module_begin module_name Handles module_type generic_data module_exec lsof | wc -l module_end
A modified version to show ONLY INET handles:
module_begin module_name Handles_INET module_type generic_data module_exec lsof -i | wc -l module_end
(Visited 164 times, 1 visits today)