mirror of
https://github.com/puppetlabs/vmpooler.git
synced 2026-01-26 01:58:41 -05:00
9 lines
182 B
Ruby
9 lines
182 B
Ruby
require 'rubygems' unless defined?(Gem)
|
|
|
|
module Vmpooler
|
|
class Statsd
|
|
def initialize(server = 'statsd', port = 8125)
|
|
@server = Statsd.new(server, port)
|
|
end
|
|
end
|
|
end
|