TraceSpanReference type
TraceSpanReference type
Signature
export declare type TraceSpanReference = {
refType: 'CHILD_OF' | 'FOLLOWS_FROM';
span?: TraceSpan | null | undefined;
spanID: string;
traceID: string;
};
Import
import { TraceSpanReference } from '@grafana/data';