get value()

in src/trace/context/ContextCarrier.ts [46:59]


  get value(): string {
    return this.isValid()
      ? [
          '1',
          this.encode(this.traceId?.toString() || ''),
          this.encode(this.segmentId?.toString() || ''),
          this.spanId?.toString(),
          this.encode(this.service || ''),
          this.encode(this.serviceInstance || ''),
          this.encode(this.endpoint || ''),
          this.encode(this.clientAddress || ''),
        ].join('-')
      : '';
  }