Play! Performance metrics 2.0

I am developing my first app for Play! 2.0. It feels really good, I love the cast of actors, but one thing I'm looking for is where I could pick up some performance metrics. I'm looking for Rails notifications such as an API or something like Twitter finagle (find the curl command used to extract stats.txt).

Is there anything in the game? 2.0? or should I start cooking something on my own? If there is nothing ready - any pointers and tips are welcome!

+5
source share
3 answers

The official way to get Akka's performance metrics is as follows: http://typesafe.com/products/console

+2
source

Until I used it on Play! scala application, I was a big fan of Newrelic for all performance indicators in production. However, I do not think that with Play! war. This will give you basic metrics with a free account. For most of my scala applications, I use newrelic annotations to collect metrics by a specific method that I want to track in detail - I saw that newrelic gives a lot of detailed results with Java than Scala, therefore, annotations.

+1
source

statsd play2: https://github.com/typesafehub/play-plugins/tree/master/statsd Codahale Metrics Play2: https://github.com/kenshoo/metrics-play

I am looking at indicators to provide JMX data at the moment, although if statsd is an option, you can look at that first.

0
source

All Articles