Open GoogleCodeExporter opened 9 years ago
Removing unused labels.
Original comment by baron.schwartz
on 16 Apr 2010 at 2:14
Please attach a text file with apache1 output for a test case. (I want to be
sure
that all whitespace is correct for the test case.)
Original comment by baron.schwartz
on 16 Apr 2010 at 2:16
Thank you. Here's some output files. A typical /server-status (which I don't
think
you need, but nonetheless, just in case), and one from /server-status?auto.
Original comment by moo...@gmail.com
on 23 Apr 2010 at 11:17
Attachments:
Unfortunately I don't have time to do this, but have you looked at the wiki?
There is a really comprehensive instruction guide on how to do this, and it
isn't hard. I would love for someone else to do this so I can just include it.
Original comment by baron.schwartz
on 15 Jan 2011 at 6:59
here is a fix:
in the apache section of ss_get_by_ssh.php you will find:
if ($words[0] == "Total kBytes") {
$words[1] = big_multiply($words[1], 1024);
}
change it to:
if ($words[0] == "Total kBytes") {
$words[1] = big_multiply($words[1], 1024);
} else if ($words[0] == "BusyServers"){
$words[0] = "BusyWorkers";
} else if ($words[0] == "IdleServers") {
$words[0] = "IdleWorkers";
}
and apache 1.3 worker status starts working :)
Original comment by ewint...@gmail.com
on 5 Apr 2011 at 4:34
Original issue reported on code.google.com by
moo...@gmail.com
on 9 Apr 2010 at 6:24