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

Version Path
ddtrace-1.10.1 lib/datadog/profiling/event.rb
ddtrace-1.10.0 lib/datadog/profiling/event.rb
ddtrace-0.51.1 lib/ddtrace/profiling/event.rb
ddtrace-0.51.0 lib/ddtrace/profiling/event.rb
ddtrace-0.50.0 lib/ddtrace/profiling/event.rb
ddtrace-0.49.0 lib/ddtrace/profiling/event.rb
ddtrace-0.48.0 lib/ddtrace/profiling/event.rb