Skip to content

Instantly share code, notes, and snippets.

@IgorMarques
Created May 16, 2016 00:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save IgorMarques/079b08c3bbb13e8d896151a192262e8b to your computer and use it in GitHub Desktop.
Save IgorMarques/079b08c3bbb13e8d896151a192262e8b to your computer and use it in GitHub Desktop.
A simple example of the gem StatsD (https://github.com/reinh/statsd) running
require 'statsd-ruby'
statsd = Statsd.new 'localhost', 8125
10.times do
statsd.increment 'hello.world'
sleep 1
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment