Sha256: f9dfbfaef0bb07a89eeea248ddcc945a41140f6ce56884b7825362f3a5e4988a
Contents?: true
Size: 453 Bytes
Versions: 26
Compression:
Stored size: 453 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/heap' module NewRelic module Agent class TimestampSampledBuffer < PrioritySampledBuffer TIMESTAMP_KEY = 'timestamp'.freeze private def priority_for(event) -event[0][TIMESTAMP_KEY] end end end end
Version data entries
26 entries across 26 versions & 1 rubygems