null_metric.rb 203 字节
Newer Older
P
Pawel Chojnacki 已提交
1 2 3
module Gitlab
  module Metrics
    # Mocks ::Prometheus::Client::Metric and all derived metrics
4 5 6 7
    class NullMetric
      def method_missing(name, *args, &block)
        nil
      end
P
Pawel Chojnacki 已提交
8 9 10
    end
  end
end