Real-Time Statistics in shell

#1
Hi all,
list of current web sessions is available in web interface (Real-Time Statistics > Requests),
is there any chance to have it by entering a shell command?
Thanks,
Abed
 

Jon K

Administrator
Staff member
#2
If you want to view the current connections in used you can use the following command in shell.

netstat -an | grep 80 | grep ESTA | wc -l
 
#3
thanks for the answer,
the command you mentioned only shows the raw established connections and ports, but we need more detailed information about each connection, in litespeed web interface following information is shown:
Client - Ka - M - R - In/Total - Out/Total - VHost - Handler - P - Request

thanks,
 
Top