class Datadog::Profiling::Event

Describes a sample of some data obtained from the runtime.

Attributes

timestamp[R]

Public Class Methods

new(timestamp = nil) click to toggle source
# File lib/ddtrace/profiling/event.rb, line 9
def initialize(timestamp = nil)
  @timestamp = timestamp || Time.now.utc.to_f
end