interface OpenTelemetryHooksOptions {
    spanPrefix?: string;
    traceRpcCalls?: boolean;
}

Properties

spanPrefix?: string

Prefix for all span names. Defaults to 'bridge-sdk'.

'my-service/bridge-sdk'
traceRpcCalls?: boolean

If true, RPC calls are recorded as child spans of the enclosing transaction span. Adds more granularity at the cost of more spans. Defaults to true.