Class: BuilderApm::RequestDetailsController

Inherits:
ApplicationController show all
Defined in:
app/controllers/builder_apm/request_details_controller.rb

Instance Method Summary collapse

Methods inherited from ApplicationController

#redis_client

Instance Method Details

#indexObject



3
4
5
6
7
# File 'app/controllers/builder_apm/request_details_controller.rb', line 3

def index
    @request_id = params[:request_id]
    @data = redis_client.get("builder_apm:Request:#{@request_id}") || {}
    
end