Method: NewRelic::Agent::Stats#increment_count

Defined in:
lib/new_relic/agent/stats.rb

#increment_count(value = 1) ⇒ Object

increments the call_count by one

[View source]

112
113
114
# File 'lib/new_relic/agent/stats.rb', line 112

def increment_count(value = 1)
  @lock.synchronize { @call_count += value }
end