Be careful updating. Also notice : Those plugins will not work on the 2.4 series of Play. The scala calls are part of the futures : That does a thing async, and while something awaits that async stuff to be complete, that thread is doing something else.
In general, having a lot of threads isn't a good thing : They have their own stack (fixed minimum size on Linux), and are scheduled. Akka does it a far better way : The actors just keeps running and processing stuff.
Probably not. In general, with Play you only need to mess around with the actor pool if you're doing blocking operations. That usually means either a database, or large / intensive file operations.
I suggest converting the request into a curl request, and doing time measurements with that. That's what your endusers will see, if you're doing really kinky stuff with Actors kamon is a good match, since it will give good in-depth info about how it's really doing.
Regards,
Igmar