-
public interface DatadogSpanLinkRepresents 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 LonggetSpanId()The unique identifier for a Datadog span. abstract BooleangetSampled()Indicates whether the Datadog span has been sampled. abstract DatadogTraceIdgetTraceId()The unique identifier for a Datadog trace. abstract StringgetTraceStrace()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. -
-
Method Detail
-
getSampled
abstract Boolean getSampled()
Indicates whether the Datadog span has been sampled.
-
getTraceId
abstract DatadogTraceId getTraceId()
The unique identifier for a Datadog trace.
-
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.
-
-
-
-