I'm using apache MPM event on my centos server with these configs:
<IfModule event.c>
StartServers 8
ServerLimit 32
ThreadsPerChild 256
MaxRequestWorkers 8192
MaxConnectionsPerChild 10000
MinSpareThreads 125
MaxSpareThreads 250
ThreadLimit 256
KeepAlive On
KeepAliveTimeout 2
MaxKeepAliveRequests 500
</IfModule>
now what I need is to check what number of servers and threads are currently created by apache. how can I check these values?