Interface OperationLineage

Opaque identifiers that relate a request to its logical parent and root.

interface OperationLineage {
    operationId: string;
    operationScope: OperationScope;
    parentOperationId?: string;
    rootOperationId: string;
}

Hierarchy (View Summary)

Properties

operationId: string
operationScope: OperationScope
parentOperationId?: string
rootOperationId: string