Skip to content

nixtrace/infludp

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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:
gem 'infludp'

Usage.

$metrics = Infludp::Client.new(
  host: '127.0.0.1',
  port: 4444
)

$metrics.send('cpu',
{
  node: 'server1',
  os: 'ubuntu'
},
{
  value: 22
})

Test.

bundle exec rake test:all

Benchmarks.

Rehearsal ---------------------------------------------------------------
1000 metrics:                 0.020000   0.000000   0.020000 (  0.018585)
------------------------------------------------------ total: 0.020000sec

                                  user     system      total        real
1000 metrics:                 0.020000   0.000000   0.020000 (  0.019719)

Contributing.

  1. Fork it ( https://github.com/badshark/infludp/fork )
  2. Create your feature branch (git checkout -b my-new-feature)
  3. Commit your changes (git commit -am 'Add some feature')
  4. Push to the branch (git push origin my-new-feature)
  5. Create a new Pull Request

License.

MIT

About

A minimal, zero dependencies, thread-safe Ruby gem to send metrics via UDP to InfluxDB.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages