Created
March 18, 2013 10:07
-
-
Save leehambley/5186145 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/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