sspp (Server Status PHP Parser)
Probably many people know about the existence of a wonderful Apache module mod_status .
It turns on very simply, you need to add it to httpd.conf: At the request of localhost / server-status, you can see the current requests from the web server. And this is of course very cool. But I always lacked sorting in the resulting table, for example, I had to quickly look through the eyes for frequently repeated queries. And it was tiring and frustrating. I have long nurtured in my plans a parser that can do what I really need in my work. And here are my friends, I wrote it and I want to share it with pleasure. Meet SSPP (
ExtendedStatus On
SetHandler server-status
Order deny,allow
Deny from all
Allow from 127.0.0.1

download )

Features:
- Sort table by any field
- Analysis of the most frequent requests, ip-addresses, sites
- Ability to parse custom url handler (e.g. / whm-server-status)
- Ability to run on the local computer (to offload the server)
I will be glad to give good advice, and if you can improve php code (I know php very poorly), I will be infinitely happy%)