Data object to store captured operation traces.
Description
The OperationTrace class allows you to create a data object used to store captured operation traces.
Important points
- This object is used by CachedTracer.
Constructors
Create new instance of OperationTrace
OperationTrace(time: datetime, source: str, component: str, operation: str, trace_id: str, duration: float, error: ErrorDescription)
- time: datetime - The time when operation was executed
- source: str - source (context name)
- component: str - name of the component
- operation: str - name of the executed operation
- trace_id: str - transaction id to trace execution through call chain.
- duration: float - duration of the operation in milliseconds
- error: ErrorDescription - The description of the captured error