Libratonator
Experimental CLI tool to pipe Graphite's Carbon data to Librato Metrics
Installation
Add this line to your application's Gemfile:
gem 'libratonator'
And then execute:
$ bundle
Or install it yourself as:
$ gem install libratonator
Usage
Data is piped into libratonator formatted as the Graphite's plaintext protocol:
# take standard Carbon data, pipe it to Librato
$ echo foo.measurement 12345 1348688087 | libratonatorIf you are wild and crazy, this can be used in conjuction with carbonator:
$ echo host=foo measurement=12345 a=1 b=2 c=3 | carbonator | libratonatorContributing
- 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