Method: NewRelic::Agent::Transaction::TransactionSampleBuffer#max_capacity
- Defined in:
- lib/new_relic/agent/transaction/transaction_sample_buffer.rb
permalink #max_capacity ⇒ Object
Apply hard upper limit to the capacity to prevent users from consuming too much memory buffering TT’s.
A typical buffer should NOT override this method (although we do for odd things like dev-mode)
74 75 76 |
# File 'lib/new_relic/agent/transaction/transaction_sample_buffer.rb', line 74 def max_capacity [capacity, SINGLE_BUFFER_MAX].min end |