Sha256: 9c4d197c6abc09995062a7954edf26579fd8d1f958ebfd0a26909eb29ded680e
Contents?: true
Size: 929 Bytes
Versions: 11
Compression:
Stored size: 929 Bytes
Contents
# frozen_string_literal: true # == Schema Information # # Table name: rmp_traces # # id :integer not null, primary key # rmp_profiled_request_id :bigint not null # name :string # start :bigint # finish :bigint # duration :integer # allocations :bigint # payload :json # backtrace :json # created_at :datetime not null # updated_at :datetime not null # # Indexes # # index_rmp_traces_on_rmp_profiled_request_id (rmp_profiled_request_id) # module RailsMiniProfiler class ControllerTrace < Trace store :payload, accessors: %i[view_runtime db_runtime] class << self def find_sti_class(_) super(name) end def sti_name 'process_action.action_controller' end end end end
Version data entries
11 entries across 11 versions & 1 rubygems