Infludp.
A minimal, zero dependencies, thread-safe Ruby gem to send metrics via UDP to InfluxDB, and nothing else.
Installation.
- Add infludp to your Gemfile:
ruby gem 'infludp'
Usage.
$metrics = Infludp::Client.new(
host: '127.0.0.1',
port: 4444
)
$metrics.send('cpu.load', {
node: 'east.server1',
value: 22
})
Test.
bundle exec rake test:all
Contributing.
- Fork it ( https://github.com/badshark/infludp/fork )
- 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 a new Pull Request