Sha256: 070fd199b6a599f68299cb039d319a717eace32a767ce811c7f92849bc918481
Contents?: true
Size: 1.21 KB
Versions: 14
Compression:
Stored size: 1.21 KB
Contents
module Skylight class Trace < Core::Trace def initialize(*) super @too_many_spans = false native_use_pruning if use_pruning? end def uuid native_get_uuid end def uuid=(value) # We can't change the UUID so just check to make sure we weren't trying to change raise "unable to change uuid" unless value == uuid end def too_many_spans! @too_many_spans = true end def too_many_spans? !!@too_many_spans end def maybe_broken(error) if error.is_a?(Skylight::MaximumTraceSpansError) && config.get(:report_max_spans_exceeded) too_many_spans! else super end end def traced if too_many_spans? error("[E%04d] The request exceeded the maximum number of spans allowed. It will still " \ "be tracked but with reduced information. endpoint=%s", Skylight::MaximumTraceSpansError.code, endpoint) end super end private def track_gc(*) # This attempts to log another span which will fail if we have too many return if too_many_spans? super end def use_pruning? config.get(:prune_large_traces) end end end
Version data entries
14 entries across 14 versions & 1 rubygems