You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sum of all self times in a batch of calls. For example, if 5 calls are in a batch and its self times are : `[1,2,3,4,5]` in milliseconds, then the batch self time would be sum of the self times, in this case, it will be 15 milliseconds.
The total time taken for the entire operation of a call, from the moment the request was initiated to when the response was received. The time measured is in milliseconds. This is also known as latency of a call.
[optional]
error_count
int
Represents whether the call is erroneous or not. 0 is not erroneous and 1 is erroneous.
[optional]
id
str
The call ID. A unique identifier for an individual call. For example: `1bcad5c82338deaf`.
is_synthetic
bool
[optional]
label
str
Name of the call. For example: `GET /articles/:id`.
Information about the logs attached to the call, if available.
min_self_time
int
The smallest self time in the batch. May be null to indicate that `minSelfTime` is unknown when this node has only an exit span and no children. The time measured is in milliseconds.
[optional]
network_time
int
The time difference between the Exit Span Time of the caller and the Entry Span Time of the call. This value is measured in milliseconds and may be null if network time is not applicable.
[optional]
raw_span_load_error
str
Whether an error occurred loading raw spans from external storage.
Information about the spans from which the call is composed.
start
int
The timestamp when the call or request was initiated. For example, Unix epoch time in milliseconds `1735532879870` is `Monday, 30 December 2024 04:27:59.870 GMT`
[optional]
synthetic
bool
[optional]
Example
frominstana_client.models.trace_activity_tree_node_detailsimportTraceActivityTreeNodeDetails# TODO update the JSON string belowjson="{}"# create an instance of TraceActivityTreeNodeDetails from a JSON stringtrace_activity_tree_node_details_instance=TraceActivityTreeNodeDetails.from_json(json)
# print the JSON string representation of the objectprint(TraceActivityTreeNodeDetails.to_json())
# convert the object into a dicttrace_activity_tree_node_details_dict=trace_activity_tree_node_details_instance.to_dict()
# create an instance of TraceActivityTreeNodeDetails from a dicttrace_activity_tree_node_details_from_dict=TraceActivityTreeNodeDetails.from_dict(trace_activity_tree_node_details_dict)