Class: Instana::Exporter::Otlp::BaseConverter::Event
- Inherits:
-
Struct
- Object
- Struct
- Instana::Exporter::Otlp::BaseConverter::Event
- Defined in:
- lib/instana/exporter/otlp/base_converter.rb
Overview
Represents a span event (mirrors OpenTelemetry::SDK::Trace::Event)
Fields:
name [String] - event name
attributes [Hash] - key/value attributes attached to the event
timestamp [Integer] - Unix nanoseconds
Instance Attribute Summary collapse
-
#attributes ⇒ Object
Returns the value of attribute attributes.
-
#name ⇒ Object
Returns the value of attribute name.
-
#timestamp ⇒ Object
Returns the value of attribute timestamp.
Instance Attribute Details
#attributes ⇒ Object
Returns the value of attribute attributes
41 42 43 |
# File 'lib/instana/exporter/otlp/base_converter.rb', line 41 def attributes @attributes end |
#name ⇒ Object
Returns the value of attribute name
41 42 43 |
# File 'lib/instana/exporter/otlp/base_converter.rb', line 41 def name @name end |
#timestamp ⇒ Object
Returns the value of attribute timestamp
41 42 43 |
# File 'lib/instana/exporter/otlp/base_converter.rb', line 41 def @timestamp end |