Class: NewRelic::Agent::StatsEngine::ScopeStackElement

Inherits:
Object
  • Object
show all
Defined in:
lib/new_relic/agent/stats_engine/transactions.rb

Overview

Defines methods that stub out the stats engine methods when the agent is disabled

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(name, deduct_call_time) ⇒ ScopeStackElement

Returns a new instance of ScopeStackElement.



11
12
13
14
15
# File 'lib/new_relic/agent/stats_engine/transactions.rb', line 11

def initialize(name, deduct_call_time)
  @name = name
  @deduct_call_time_from_parent = deduct_call_time
  @children_time = 0
end

Instance Attribute Details

#children_timeObject

Returns the value of attribute children_time.



10
11
12
# File 'lib/new_relic/agent/stats_engine/transactions.rb', line 10

def children_time
  @children_time
end

#deduct_call_time_from_parentObject (readonly)

Returns the value of attribute deduct_call_time_from_parent.



9
10
11
# File 'lib/new_relic/agent/stats_engine/transactions.rb', line 9

def deduct_call_time_from_parent
  @deduct_call_time_from_parent
end

#nameObject (readonly)

Returns the value of attribute name.



9
10
11
# File 'lib/new_relic/agent/stats_engine/transactions.rb', line 9

def name
  @name
end