Sha256: 56fb8544cf56282ff4078af01b2e691f7a85b8dd64cab767a9853f881502979f
Contents?: true
Size: 383 Bytes
Versions: 42
Compression:
Stored size: 383 Bytes
Contents
require "statsd" require "forwardable" module GovukStatsd extend SingleForwardable def_delegators :client, :increment, :decrement, :count, :time, :timing, :gauge, :set, :batch def self.client @statsd_client ||= begin statsd_client = ::Statsd.new("localhost") statsd_client.namespace = ENV["GOVUK_STATSD_PREFIX"].to_s statsd_client end end end
Version data entries
42 entries across 42 versions & 1 rubygems