2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
module Gitlab
|
|
|
|
module Metrics
|
|
|
|
# Mocks ::Prometheus::Client::Metric and all derived metrics
|
|
|
|
class NullMetric
|
2018-03-17 18:26:18 +05:30
|
|
|
include Singleton
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
def method_missing(name, *args, &block)
|
|
|
|
nil
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|