Package version:

Interface DiagnosticNode

Represents a tree like structure, for capturing diagnostic information.

interface DiagnosticNode {
    children: DiagnosticNode[];
    data: {
        [key: string]: any;
    };
    durationInMs: number;
    id: string;
    nodeType: string;
    startTimeUTCInMs: number;
}

Properties

children: DiagnosticNode[]
data: {
    [key: string]: any;
}
durationInMs: number
id: string
nodeType: string
startTimeUTCInMs: number