Skip to content

Instantly share code, notes, and snippets.

@dblooman
Created December 31, 2014 15:47
Show Gist options
  • Save dblooman/5777a85017995ab4d61e to your computer and use it in GitHub Desktop.
Save dblooman/5777a85017995ab4d61e to your computer and use it in GitHub Desktop.
require 'sinatra'
require 'statsd'
$statsd = Statsd.new '192.168.59.103', 8125
get '/' do
$statsd.increment 'visits'
"Hello, world"
end
not_found do
status 404
$statsd.increment '404'
"not found"
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment