Sha256: 1a28a09ca73e59163ba4bbe2d1c86f732d426dce2cd16162fe9aa540c61716a8
Contents?: true
Size: 304 Bytes
Versions: 8
Compression:
Stored size: 304 Bytes
Contents
# frozen_string_literal: 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
8 entries across 8 versions & 1 rubygems