correlationVector property

String? correlationVector

The operation correlation vector to attach to telemetry items.

Implementation

String? get correlationVector =>
    _contextMap[_correlationVectorKey] as String?;
void correlationVector=(String? value)

Setting will change the operation correlation vector attached to telemetry items submitted with this context.

This is a convenience for setting the ai.operation.correlationVector key on TelemetryContext.properties.

Implementation

set correlationVector(String? value) =>
    _contextMap.setOrRemove(_correlationVectorKey, value);