Sha256: 356f1d1b4ffc3df82807e2b7f40eb35c1c4b800cbde82debd670fd351f7609ea
Contents?: true
Size: 273 Bytes
Versions: 7
Compression:
Stored size: 273 Bytes
Contents
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
7 entries across 7 versions & 1 rubygems