AggregatedStackTrace¶
-
class
oci.apm_traces.models.
AggregatedStackTrace
(**kwargs)¶ Bases:
object
A branching tree with aggregated stack trace.
Methods
__init__
(**kwargs)Initializes a new AggregatedStackTrace object with values from keyword arguments. Attributes
children
Gets the children of this AggregatedStackTrace. stack_trace_element
Gets the stack_trace_element of this AggregatedStackTrace. -
__init__
(**kwargs)¶ Initializes a new AggregatedStackTrace object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - stack_trace_element (oci.apm_traces.models.StackTraceElement) – The value to assign to the stack_trace_element property of this AggregatedStackTrace.
- children (list[oci.apm_traces.models.AggregatedStackTrace]) – The value to assign to the children property of this AggregatedStackTrace.
-
children
¶ Gets the children of this AggregatedStackTrace. List of child aggregated stack trace to represent branches.
Returns: The children of this AggregatedStackTrace. Return type: list[oci.apm_traces.models.AggregatedStackTrace]
-
stack_trace_element
¶ Gets the stack_trace_element of this AggregatedStackTrace.
Returns: The stack_trace_element of this AggregatedStackTrace. Return type: oci.apm_traces.models.StackTraceElement
-