Package 

Interface DatadogSpanLink


  • 
    public interface DatadogSpanLink
    
                        

    Represents a link to a Datadog span, which contains metadata and identifiers for associating a span with its trace and related details.

    • Method Summary

      Modifier and Type Method Description
      abstract Long getSpanId() The unique identifier for a Datadog span.
      abstract Boolean getSampled() Indicates whether the Datadog span has been sampled.
      abstract DatadogTraceId getTraceId() The unique identifier for a Datadog trace.
      abstract String getTraceStrace() Represents a string representation of a specific trace related to the Datadog span.
      abstract Map<String, String> getAttributes() A map containing key-value pairs of additional attributes associated with a Datadog span.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • getSpanId

         abstract Long getSpanId()

        The unique identifier for a Datadog span.

      • getSampled

         abstract Boolean getSampled()

        Indicates whether the Datadog span has been sampled.

      • getTraceStrace

         abstract String getTraceStrace()

        Represents a string representation of a specific trace related to the Datadog span.

      • getAttributes

         abstract Map<String, String> getAttributes()

        A map containing key-value pairs of additional attributes associated with a Datadog span.