class OneApm::Support::TracedMethodFrame

Attributes

children_time[RW]
name[RW]
start_time[RW]
tag[R]

Public Class Methods

new(tag, start_time) click to toggle source
# File lib/one_apm/support/traced_method_stack.rb, line 11
def initialize(tag, start_time)
  @tag = tag
  @start_time = start_time
  @children_time = 0
end