Does anyone know of a way to get the current connections for Apache for Windows? It's so easy to do for IIS through perfmon, but I haven't found of an easy way to show this for Apache.
I'm not aware of any counter in Apache that tells you how many connections there currently are like there is in IIS. There's a few ways to get this information from a vbscript or powershell. The easiest would be using "netstat -an | find /c ":80"" to return a valid statistic for the number of connections open to port 80.