interface Profiler.Profile
Usage in Deno
import { Profiler } from "node:inspector";
Profile.
nodes: ProfileNode[]
The list of profile nodes. First item is the root node.
startTime: number
Profiling start timestamp in microseconds.
endTime: number
Profiling end timestamp in microseconds.
optional
samples: number[] | undefined
Ids of samples top nodes.
optional
timeDeltas: number[] | undefined
Time intervals between adjacent samples in microseconds. The first delta is relative to the profile startTime.