class OpenTelemetry::Trace::Propagation::TraceContext::TraceParent

def flag_string

def flag_string
  # the w3c standard only dictates the one flag for this version
  # therefore we can only output the one flag.
  flags.sampled? ? '01' : '00'
end