Skip to content

Instantly share code, notes, and snippets.

@ignacio-chiazzo
Created October 4, 2021 01:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ignacio-chiazzo/9135c661fb88d8eac2cef7de30da2b8c to your computer and use it in GitHub Desktop.
Save ignacio-chiazzo/9135c661fb88d8eac2cef7de30da2b8c to your computer and use it in GitHub Desktop.
measure_logs.rb
module Middleware
class MeasureLogs
def initialize(app)
@app = app
end
def call(env)
start_time = Time.now
status, headers, response = @app.call(env)
end_time = Time.now
total_time = calculate_total_time(start_time, end_time)
log_status(total_time, status, env)
[status, headers, response]
end
private
def log_status(total_time, status, env)
controller_name = env['action_controller.instance'].class.name
action = env['action_controller.instance'].action_name
Rails.logger.info("----- [HTTP Request] status=#{status} time=#{total_time.to_s} processed_by=#{controller_name}\##{action} -----")
end
def calculate_total_time(start_time, end_time)
end_time - start_time
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment