You can monitoring the folder size or the number of files that contains a folder with all its subdirectories through “du” command in Windows too. Module data You can download here “du.exe” and copy in folder ..pandora_agentutil of Windows...
Returns the file descriptors used in the system. Module data module_begin module_name FileDescriptors module_type generic_data module_exec cat /proc/sys/fs/file-nr | awk ‘{ print $1 }’ module_end
This returns total open files in system. This could be useful to detect bottlenecks and other problems. Also could be used in some Unix systems with command “lsof”. Module data module_begin module_name OpenedFiles module_type generic_data module_exec...