This abstract class specifies the interface a backend implementation should conform to. @abstract
Collects a metric.
@param metric [StatsD::Instrument::Metric] The metric to collect @return [void]
# File lib/statsd/instrument/backend.rb, line 9 def collect_metric(metric) raise NotImplementedError, "Use a concerete backend implementation" end