I am trying to see the number of active puma threads on my server.
I can not see it through ps
:
$ ps aux | grep puma
healthd 2623 0.0 1.
ps aux | grep puma
will give you list of process for only puma. You need to find out , how many threads are running by the particular Process. May be this will help you:
ps -T -p 2623
You need to provide process id, for which you want to find out number of threads. Make sure you are providing accurate process id.