Sha256: 2cc92264bdbd39a77e7f4f7f816a48bf9def5723ea2fb42c147b6bea85fa668d
Contents?: true
Size: 752 Bytes
Versions: 9
Compression:
Stored size: 752 Bytes
Contents
# frozen_string_literal: true require_relative "base" module Datadog module CI module TestVisibility module Serializers class Span < Base CONTENT_FIELDS = (["trace_id", "span_id", "parent_id"] + Base::CONTENT_FIELDS).freeze CONTENT_MAP_SIZE = calculate_content_map_size(CONTENT_FIELDS) REQUIRED_FIELDS = (["trace_id", "span_id"] + Base::REQUIRED_FIELDS).freeze def content_fields CONTENT_FIELDS end def content_map_size CONTENT_MAP_SIZE end def event_type "span" end private def required_fields REQUIRED_FIELDS end end end end end end
Version data entries
9 entries across 9 versions & 1 rubygems