2019-02-15 15:39:39 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-01-14 18:37:52 +05:30
|
|
|
module Gitlab
|
|
|
|
module Metrics
|
2016-06-16 23:09:34 +05:30
|
|
|
# Rack middleware for tracking Rails and Grape requests.
|
2016-01-14 18:37:52 +05:30
|
|
|
class RackMiddleware
|
|
|
|
def initialize(app)
|
|
|
|
@app = app
|
|
|
|
end
|
|
|
|
|
|
|
|
# env - A Hash containing Rack environment details.
|
|
|
|
def call(env)
|
2021-03-11 19:13:27 +05:30
|
|
|
trans = Gitlab::Metrics::WebTransaction.new(env)
|
2016-01-14 18:37:52 +05:30
|
|
|
|
|
|
|
begin
|
|
|
|
retval = trans.run { @app.call(env) }
|
|
|
|
|
2016-09-13 17:45:13 +05:30
|
|
|
rescue Exception => error # rubocop: disable Lint/RescueException
|
|
|
|
trans.add_event(:rails_exception)
|
|
|
|
|
|
|
|
raise error
|
2016-01-14 18:37:52 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
retval
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|