Sha256: 58cb034d8f2da4cebd831a03dc3029c9ca0930190424a909b1a0e84d865a71c1
Contents?: true
Size: 535 Bytes
Versions: 17
Compression:
Stored size: 535 Bytes
Contents
# frozen_string_literal: true # Copyright The OpenTelemetry Authors # # SPDX-License-Identifier: Apache-2.0 module OpenTelemetry module SDK module Trace # A text annotation with a set of attributes and a timestamp for export. # # Field types are as follows: # name: String # attributes: frozen Hash{String => String, Numeric, Boolean, Array<String, Numeric, Boolean>} # timestamp: Integer nanoseconds since Epoch Event = Struct.new(:name, :attributes, :timestamp) end end end
Version data entries
17 entries across 17 versions & 1 rubygems