Skip to content 

ITraceEvent Interface

Packages > @fluidframework/common-utils > ITraceEvent

Event in a performance trace including time elapsed.

Signature:

export interface ITraceEvent 

Properties

List of properties of this interface
Property Type Description
duration number Time elapsed since the last trace event. Measured in milliseconds as a floating point with a decimal
tick number This number represents a relative time which should be consistent for all trace ticks.
totalTimeElapsed number Total time elapsed since the start of the Trace. Measured in milliseconds as a floating point with a decimal

Events

duration

Time elapsed since the last trace event. Measured in milliseconds as a floating point with a decimal

Signature:

readonly duration: number;

tick

This number represents a relative time which should be consistent for all trace ticks.

Signature:

readonly tick: number;

totalTimeElapsed

Total time elapsed since the start of the Trace. Measured in milliseconds as a floating point with a decimal

Signature:

readonly totalTimeElapsed: number;