Sha256: ab33ff83d750d4351aad567ac292a4b8bde46c72f440dbaca9f92d75410c6199
Contents?: true
Size: 516 Bytes
Versions: 17
Compression:
Stored size: 516 Bytes
Contents
# frozen_string_literal: true module StatsD module Instrument # @note This class is part of the new Client implementation that is intended # to become the new default in the next major release of this library. class StatsDDatagramBuilder < StatsD::Instrument::DatagramBuilder unsupported_datagram_types :h, :d, :kv protected def normalize_tags(tags) raise NotImplementedError, "#{self.class.name} does not support tags" if tags super end end end end
Version data entries
17 entries across 17 versions & 1 rubygems