Profiler.Profile - Node documentation
interface Profiler.Profile

Usage in Deno

import { type Profiler } from "node:inspector";
type { Profile } = Profiler;

Profile.

Properties

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.