Sha256: 911b3078aa2babc9f590d84e8acbbfb7c1a70c37b19b79f974e3267a4b95fb52
Contents?: true
Size: 1.26 KB
Versions: 22
Compression:
Stored size: 1.26 KB
Contents
module Aws module Telemetry class TelemetryProviderBase def initialize: (?tracer_provider: TracerProviderBase, ?context_manager: ContextManagerBase) -> void attr_reader tracer_provider: TracerProviderBase attr_reader context_manager: ContextManagerBase end class TracerProviderBase def tracer: (?String name) -> TracerBase end class TracerBase def start_span: (String name, ?untyped with_parent, ?Hash[String, untyped] attributes, ?SpanKind kind) -> SpanBase def in_span: (String name, ?Hash[String, untyped] attributes, ?SpanKind kind) -> SpanBase def current_span: () -> SpanBase end class SpanBase def set_attribute: (String key, untyped value) -> self alias []= set_attribute def add_attributes: (Hash[String, untyped] attributes) -> self def add_event: (String name, ?Hash[String, untyped] attributes) -> self def status=: (SpanStatus status) -> void def finish: (?Time end_timestamp) -> self def record_exception: (untyped exception, ?Hash[String, untyped] attributes) -> void end class ContextManagerBase def current: () -> untyped def attach: (untyped context) -> untyped def detach: (untyped token) -> bool end end end
Version data entries
22 entries across 22 versions & 1 rubygems