summaryrefslogtreecommitdiff
path: root/lib/gitlab/metrics/rack_middleware.rb
blob: 6f179789d3e3016929df37a3a4e0e57456d9af68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
module Gitlab
  module Metrics
    # Rack middleware for tracking Rails requests.
    class RackMiddleware
      CONTROLLER_KEY = 'action_controller.instance'

      def initialize(app)
        @app = app
      end

      # env - A Hash containing Rack environment details.
      def call(env)
        trans  = transaction_from_env(env)
        retval = nil

        begin
          retval = trans.run { @app.call(env) }

        # Even in the event of an error we want to submit any metrics we
        # might've gathered up to this point.
        ensure
          if env[CONTROLLER_KEY]
            tag_controller(trans, env)
          end

          trans.finish
        end

        retval
      end

      def transaction_from_env(env)
        trans = Transaction.new

        trans.set(:request_uri, env['REQUEST_URI'])
        trans.set(:request_method, env['REQUEST_METHOD'])

        trans
      end

      def tag_controller(trans, env)
        controller   = env[CONTROLLER_KEY]
        trans.action = "#{controller.class.name}##{controller.action_name}"
      end
    end
  end
end