Timer on a Data Source Microflow

0
Hi all, I’m trying to display the performance of two different retrieves (not() vs List operations), which are both executed in a data source microflow. Since the data source microflow returns the list with objects that fills the DataGrid, I cannot use the Mendix Timer since this widget expects a boolean in return. Does anyone has an idea how to use Microflow Timer in a data source microflow or maybe another approach on how to calculate the time of running the data source microflows? Help is much appreciated! thanks, Jan
asked
1 answers
1

You could do this with logging, create a date variable at the start of you microflow with current date time, create a log message at the end of your microflow with secondsBetween current time and the variable. Then just start running them both and see the results

answered