Skip to content

Latest commit

 

History

History
33 lines (24 loc) · 1.32 KB

File metadata and controls

33 lines (24 loc) · 1.32 KB

SpanRelation

It shows from where the call is destined to. It includes the following information: 1. List of Application Perspectives from which the call is destined to. 2. Destination service and destination endpoint. 3. Physical context from the infrastructure point of view.

Properties

Name Type Description Notes
applications List[Application]
endpoint Endpoint [optional]
physical_context PhysicalContext [optional]
service Service [optional]

Example

from instana_client.models.span_relation import SpanRelation

# TODO update the JSON string below
json = "{}"
# create an instance of SpanRelation from a JSON string
span_relation_instance = SpanRelation.from_json(json)
# print the JSON string representation of the object
print(SpanRelation.to_json())

# convert the object into a dict
span_relation_dict = span_relation_instance.to_dict()
# create an instance of SpanRelation from a dict
span_relation_from_dict = SpanRelation.from_dict(span_relation_dict)

[Back to Model list] [Back to API list] [Back to README]