How can I tell you how many work dynamos I use on Heroku?

I use HireFireApp to autoscale my web and work speakers on Heroku. However, when I go to the Resque application in my application, it says

"0 of 46 workers working"

Does this mean that I am using 46 working speakers ???

Update:

Running Heroes ps shows:

web.1     up for 21m       bundle exec thin start -p $PORT       
worker.1  starting for 1s  bundle exec rake resque:work QUEUE..
+3
source share
1 answer

From the command line in your heroku application, view the output

heroku ps

which will show you how many workers you use.

+5
source

All Articles