metrics.rb 1.88 KB
Newer Older
1 2 3 4
if Gitlab::Metrics.enabled?
  require 'influxdb'
  require 'socket'
  require 'connection_pool'
5
  require 'method_source'
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21

  # These are manually require'd so the classes are registered properly with
  # ActiveSupport.
  require 'gitlab/metrics/subscribers/action_view'
  require 'gitlab/metrics/subscribers/active_record'

  Gitlab::Application.configure do |config|
    config.middleware.use(Gitlab::Metrics::RackMiddleware)
  end

  Sidekiq.configure_server do |config|
    config.server_middleware do |chain|
      chain.add Gitlab::Metrics::SidekiqMiddleware
    end
  end

22 23 24 25 26 27 28 29 30 31 32 33 34
  # This instruments all methods residing in app/models that (appear to) use any
  # of the ActiveRecord methods. This has to take place _after_ initializing as
  # for some unknown reason calling eager_load! earlier breaks Devise.
  Gitlab::Application.config.after_initialize do
    Rails.application.eager_load!

    models = Rails.root.join('app', 'models').to_s

    regex = Regexp.union(
      ActiveRecord::Querying.public_instance_methods(false).map(&:to_s)
    )

    Gitlab::Metrics::Instrumentation.
35 36 37 38 39 40 41 42
      instrument_class_hierarchy(ActiveRecord::Base) do |klass, method|
        # Instrumenting the ApplicationSetting class can lead to an infinite
        # loop. Since the data is cached any way we don't really need to
        # instrument it.
        if klass == ApplicationSetting
          false
        else
          loc = method.source_location
43

44 45
          loc && loc[0].start_with?(models) && method.source =~ regex
        end
46 47 48
      end
  end

49 50 51 52 53 54 55 56 57 58 59 60
  Gitlab::Metrics::Instrumentation.configure do |config|
    config.instrument_instance_methods(Gitlab::Shell)

    config.instrument_methods(Gitlab::Git)

    Gitlab::Git.constants.each do |name|
      const = Gitlab::Git.const_get(name)

      config.instrument_methods(const) if const.is_a?(Module)
    end
  end

61 62 63 64
  GC::Profiler.enable

  Gitlab::Metrics::Sampler.new.start
end