Skip to content

Instantly share code, notes, and snippets.

@leehambley
Created March 18, 2013 10:07
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save leehambley/5186145 to your computer and use it in GitHub Desktop.
Save leehambley/5186145 to your computer and use it in GitHub Desktop.
#!/usr/bin/env ruby
#
# vim: set ft=ruby
#
require 'socket'
require 'term/ansicolor'
include Term::ANSIColor
$stdout.sync = true
c = Term::ANSIColor
s = UDPSocket.new
s.bind(nil, 8125)
while blob = s.recvfrom(1024)
metric, value = blob.first.split(':')
puts "StatsD Metric: #{c.blue(metric)} #{c.green(value)}"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment