Class Link (1.9.1)

Link(mapping=None, *, ignore_unknown_fields=False, **kwargs)

A pointer from the current span to another span in the same trace or in a different trace. For example, this can be used in batching operations, where a single batch handler processes multiple requests from different traces or when the handler receives a request from a different project.

Attributes

NameDescription
trace_id str
The [TRACE_ID] for a trace within a project.
span_id str
The [SPAN_ID] for a span within a trace.
type google.cloud.trace_v2.types.Span.Link.Type
The relationship of the current span relative to the linked span.
attributes google.cloud.trace_v2.types.Span.Attributes
A set of attributes on the link. You have have up to 32 attributes per link.

Classes

Type(value)

The relationship of the current span relative to the linked span: child, parent, or unspecified.

Values: TYPE_UNSPECIFIED (0): The relationship of the two spans is unknown. CHILD_LINKED_SPAN (1): The linked span is a child of the current span. PARENT_LINKED_SPAN (2): The linked span is a parent of the current span.