A set of secured performance timings all keyed off of the same string

interface TimingGroup {
    count?: number;
    elapsedTicks?: number;
    timings?: TimingEntry[];
}

Properties

count?: number

The total number of timing entries associated with this group

elapsedTicks?: number

Overall duration of all entries in this group in ticks

timings?: TimingEntry[]

A list of timing entries in this group. Only the first few entries in each group are collected.