A "normal" memory usage value reported by phpSysInfo
2.1 is 85%-100%. With previous versions of phpSysInfo, you could have 30Mo-60Mo of physical memory used on an SME system.
In fact, since the v2.1, this value is not calculated as it was in previous versions : it now includes buffers and cached memory in the reported values.
If,
as me, you prefer to see only memory used by the processes, you can modify the line 338 of the file
phpSysInfo_directory/includes/os/class.Linux.inc.php :
$results['ram']['t_used'] = $results['ram']['used'];
must be replaced by
$results['ram']['t_used'] = $results['ram']['used'] - $results['ram']['cached'] - $results['ram']['buffers'];
A swap usage of 32% (of the default 256Mo swap space) may be normal, depending on the number of processes running on your system. For a "whole thing", it looks like a good value for me.
