7

We start to integrate yammer metrics in our applications. And i would like to visualize the metrics.

Yammer-metrics have collect process, which could send metrics to Ganglia, or Graphite. But there are a little bit huge to install on my computer.

Do you know some simple reporting tool, with ram storage for example for this usage ?

vanto
  • 3,134
  • 18
  • 28
Antoine
  • 4,456
  • 4
  • 44
  • 51

3 Answers3

7

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

Kevin
  • 11,521
  • 22
  • 81
  • 103
0

I was looking at the Metrics project (i assume is this: http://metrics.codahale.com/) and found that is able to export the metrics to a CSV file, which can be used with many reporting tools including this one: DBxtra, the reason i recommend this one is because is very ad-hoc and you can design and view a report in less than 10 minutes, mostly by doing drag and drop.

Miguel Garcia
  • 806
  • 5
  • 9
-1

If you just want to report periodically on your console you could use:

com.yammer.metrics.reporting.ConsoleReporter.enable(5, TimeUnit.MINUTES)
Ayush Gupta
  • 5,568
  • 2
  • 21
  • 17