Sha256: e043f8e52f7528c9ada1e0384ba131e0c51c8a272d275a1169565de5686e23c6
Contents?: true
Size: 552 Bytes
Versions: 79
Compression:
Stored size: 552 Bytes
Contents
# encoding: utf-8 # This file is distributed under New Relic's license terms. # See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details. require 'new_relic/agent/transaction/transaction_sample_buffer' module NewRelic module Agent class Transaction class SlowestSampleBuffer < TransactionSampleBuffer CAPACITY = 1 def capacity CAPACITY end def allow_sample?(sample) sample.threshold && sample.duration >= sample.threshold end end end end end
Version data entries
79 entries across 79 versions & 2 rubygems