Revision 0af84753
Added by Jim Pingle almost 12 years ago
usr/local/www/diag_system_activity.php | ||
---|---|---|
46 | 46 |
$pgtitle = gettext("Diagnostics: System Activity"); |
47 | 47 |
|
48 | 48 |
if($_REQUEST['getactivity']) { |
49 |
$text = `/usr/bin/top -HS`;
|
|
49 |
$text = `/usr/bin/top -aHS | cut -c1-105`;
|
|
50 | 50 |
echo $text; |
51 | 51 |
exit; |
52 | 52 |
} |
Also available in: Unified diff
Show full process arguments in system activity output, but limit output to 105 chars wide so it does not spill out of its background area.