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