What is a simple reporting tool with Yammer Metrics in a development environment

We are starting to integrate yammer metrics in our applications. And I would like to visualize metrics.

Yammer-metrics builds a process that can send metrics to Ganglia or Graphite. But there are a few great features on my computer.

Do you know some simple tool for creating reports, for example, for storing data in ram-storage?

+7
source share
3 answers

There is a javascript library that displays the output of the MetricsServlet: https://github.com/benbertola/metrics-watcher

+7
source

I looked at the Metrics project (I assume it is: http://metrics.codahale.com/ ) and found that it can export metrics to a CSV file that can be used with many reporting tools, including this one: DBxtra , reason, for of which I recommend this, hoc, and you can design and view a report in less than 10 minutes, mainly by drag and drop.

0
source

If you want to periodically send a report on your console, you can use:

com.yammer.metrics.reporting.ConsoleReporter.enable(5, TimeUnit.MINUTES) 
-one
source

All Articles