Interface LinkOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
Link, Link.Builder

public interface LinkOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    com.google.protobuf.ByteString
    A unique identifier for the linked span.
    com.google.protobuf.ByteString
    A unique identifier of a trace that this linked span is part of.

    Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

    isInitialized

    Methods inherited from interface com.google.protobuf.MessageOrBuilder

    findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
  • Method Details

    • getTraceId

      com.google.protobuf.ByteString getTraceId()
       A unique identifier of a trace that this linked span is part of. The ID is a
       16-byte array.
       
      bytes trace_id = 1;
      Returns:
      The traceId.
    • getSpanId

      com.google.protobuf.ByteString getSpanId()
       A unique identifier for the linked span. The ID is an 8-byte array.
       
      bytes span_id = 2;
      Returns:
      The spanId.