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
Operator onEnd can be improved with extra details about duration, by providing min/max duration, along with indexes of where those were reached.
This is to help locate deviations in iterable performance.
For example, have duration inside IIterationSummary of the following type:
exportinterfaceIDuration{average: number;// averge durationmax?: {delay,index,value}// delay = waiting time, index when the value was reached, the valuemin?: {delay,index,value};// same as abovetotal: number;// total duration}
This would be a breaking change, because duration property changes.
The text was updated successfully, but these errors were encountered:
Operator onEnd can be improved with extra details about duration, by providing min/max duration, along with indexes of where those were reached.
This is to help locate deviations in iterable performance.
For example, have
duration
insideIIterationSummary
of the following type:This would be a breaking change, because
duration
property changes.The text was updated successfully, but these errors were encountered: