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
constructor(time: Date, source: String, component: String, operation: String, correlationId: String, duration: number, error: ErrorDescription)
- time: Date - The time when operation was executed
- source: String - source (context name)
- component: String - name of the component
- operation: String - name of the executed operation
- correlationId: String - transaction id to trace execution through call chain.
- duration: number - duration of the operation in milliseconds
- error: ErrorDescription - The description of the captured error