views:

42

answers:

1

Does anyone know which version of mod_top I can use for windows server 2003? I want a performance monitoring tool for PHP based web application.

thanks

A: 

Perhaps you could execute tasklist on the command line and parse the array of lines it outputs?

exec('tasklist /v /FO CSV', $strTaskList);

echo '<pre>';
print_r($strTaskList);
echo "<pre>\n";
JYelton