I am trying to find out the duration of time taken in below sample table.
So I need the difference in duration of the method entered with start and exited with End with their specific message. For ex : For method ABC I want (2023-12-06T010:08:52.8576365Z - 2023-12-06T08:08:52.8576365Z)
So I need the difference in duration of the method entered with start and exited with End with their specific message. For ex : For method ABC I want (2023-12-06T010:08:52.8576365Z - 2023-12-06T08:08:52.8576365Z) difference in method executiontiming of method abc
In order to find the difference between start and end of the message, you can use below code.
The above query sorts the table by the "Message" column, pivots the "StartorEnd" column to create two new columns "Start" and "End", and then calculates the difference between the "End" and "Start" columns. The output for the above code,
Output:
demo