Sha256: e5ef8fdce452cdef7b45a174c508dc6774fd80fe40473c82848dd37a140e2783
Contents?: true
Size: 288 Bytes
Versions: 16
Compression:
Stored size: 288 Bytes
Contents
# typed: true module Datadog module Profiling # Describes a sample of some data obtained from the runtime. class Event attr_reader \ :timestamp def initialize(timestamp = nil) @timestamp = timestamp || Time.now.utc.to_f end end end end
Version data entries
16 entries across 16 versions & 1 rubygems