2018-11-16 19:37:17 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-05-09 03:39:28 -04:00
|
|
|
module Gitlab
|
|
|
|
module Metrics
|
|
|
|
# Mocks ::Prometheus::Client::Metric and all derived metrics
|
2017-05-29 08:19:43 -04:00
|
|
|
class NullMetric
|
2018-01-19 08:54:06 -05:00
|
|
|
include Singleton
|
|
|
|
|
2017-05-29 08:19:43 -04:00
|
|
|
def method_missing(name, *args, &block)
|
|
|
|
nil
|
|
|
|
end
|
2017-05-09 03:39:28 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|