Graphite::Monitor
Use Graphite APIs to read monitored values from a Graphite server
Installation
Add this line to your application's Gemfile:
gem 'graphite-monitor'
And then execute:
$ bundle
Or install it yourself as:
$ gem install graphite-monitor
Usage
> Graphite::Monitor.base_uri 'my-graphite.foobar.com'
> m = Graphite::Monitor.new 'foo.bar.*'
> m.latest # defaults to {:from => "-30min"}
[ ... some data ... ]
Contributing
- Fork it
- Create your feature branch (
git checkout -b my-new-feature
) - Commit your changes (
git commit -am 'Add some feature'
) - Push to the branch (
git push origin my-new-feature
) - Create new Pull Request