spanId property

  1. @TagNumber.new(27)
String get spanId

The span ID within the trace associated with the log entry, if any.

For Trace spans, this is the same format that the Trace API v2 uses: a 16-character hexadecimal encoding of an 8-byte array, such as 000000000000004a.

Implementation

@$pb.TagNumber(27)
$core.String get spanId => $_getSZ(10);
  1. @TagNumber.new(27)
set spanId (String v)

Implementation

@$pb.TagNumber(27)
set spanId($core.String v) {
  $_setString(10, v);
}