0

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

undefined
  • 5,190
  • 11
  • 56
  • 90

1 Answers1

0

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
  • 35,664
  • 27
  • 132
  • 191