Sha256: bdc4063a505a8a6bfa288a99ee9e5113d05005f49b112597d35b84ba0a5c5c5c
Contents?: true
Size: 453 Bytes
Versions: 8
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
8 entries across 8 versions & 1 rubygems