traceId property

  1. @TagNumber(1)
List<int> get traceId

A unique identifier for a trace. All spans from the same trace share the same trace_id. The ID is a 16-byte array. An ID with all zeroes OR of length other than 16 bytes is considered invalid (empty string in OTLP/JSON is zero-length and thus is also invalid).

This field is required.

Implementation

@$pb.TagNumber(1)
$core.List<$core.int> get traceId => $_getN(0);
  1. @TagNumber(1)
set traceId (List<int> v)

Implementation

@$pb.TagNumber(1)
set traceId($core.List<$core.int> v) { $_setBytes(0, v); }