Module Spacetime.Series
type tType representing a file that will hold a series of heap snapshots together with additional information required to interpret those snapshots.
val create : path:string -> tcreate ~pathcreates a series file atpath.
val save_event : ?time:float -> t -> event_name:string -> unitsave_eventwrites an event, which is an arbitrary string, into the given series file. This may be used for identifying particular points during program execution when analysing the profile. The optionaltimeparameter is as forSnapshot.take.
val save_and_close : ?time:float -> t -> unitsave_and_close serieswrites information intoseriesrequired for interpreting the snapshots thatseriescontains and then closes theseriesfile. This function must be called to produce a valid series file. The optionaltimeparameter is as forSnapshot.take.