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
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
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";