Module Core_profiler.Online
include Core_profiler_disabled.Intf.Profiler_intf with type Delta_timer.state = private Core.Time_ns.t and type Delta_probe.state = private int
module Profiler : sig ... endmodule Timer : Core_profiler_disabled.Intf.Probe with type 'a create_args := 'a Core_profiler_disabled.Intf.timer_create_args and type 'a record_args := 'a Core_profiler_disabled.Intf.timer_record_argsA
Timercontains only a time stamp and no extra information; however, it is useful because (inOffline) the current time is recorded when measurements are made.
module Probe : Core_profiler_disabled.Intf.Probe with type 'a create_args := 'a Core_profiler_disabled.Intf.probe_create_args and type 'a record_args := 'a Core_profiler_disabled.Intf.probe_record_argsA
Proberecords some integer value that is passed toatalong with a timestamp.
module Delta_probe : sig ... end with type state = private intDelta_probeis an optimized two-probe group to track changes to some counter.
module Delta_timer : sig ... end with type state = private Core.Time_ns.tDelta_timeris an optimized two-probe group to track time differences between calls tostartandstop.