Sunday, December 17, 2017

explain apache status



My Apache Status Page shows several stats and shortcuts.
Some are easy to understand other aren't explained...



who could explain me the following data words from my apache status page in detail?
it looks similar to this one: >http://www.apache.org/server-status




Parent Server Generation: 33 Resets?



Total accesses: 2458466 Requests?



CPU Usage: u33.6 s9.83 cu45.75 cs0 - .00579% CPU load u? s? cu? cs?



1.6 requests/sec - 3473 B/second - 2177 B/request requests/sec a day?


Answer




Parent Server Generation: 33 Resets?





Number of times you have instructed apache to re-read its configuration file and gracefully restart all child processes.




Total accesses: 2458466 Requests?




Number of requests to server.





CPU Usage: u33.6 s9.83 cu45.75 cs0 - .00579% CPU load u? s? cu? cs?




u=user, s=system... cu and cs are the cumulative values of u and s




1.6 requests/sec - 3473 B/second - 2177 B/request requests/sec a day?





uptime


No comments:

Post a Comment

linux - How to SSH to ec2 instance in VPC private subnet via NAT server

I have created a VPC in aws with a public subnet and a private subnet. The private subnet does not have direct access to external network. S...