Sha256: cb90b27c5c662eeef657e6f60cb985fbfe730156ce08e05bb541cdb4fcb0ed7e
Contents?: true
Size: 576 Bytes
Versions: 32
Compression:
Stored size: 576 Bytes
Contents
# This file is distributed under New Relic's license terms. # See https://github.com/newrelic/newrelic-ruby-agent/blob/main/LICENSE for complete details. # frozen_string_literal: true 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
32 entries across 32 versions & 1 rubygems