-
-
Save ScheerMT/3f5ed1010b2573e5dc26 to your computer and use it in GitHub Desktop.
This file contains 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