I have a Function and i want to calculate the time the function need to run it and the complexity
Hello there,
Hope you’re doing well.
If you want to calculate the time that your action needs to execute, you just need to have a time stamp in the beginning of the logic (or right before you call the action), do the same in the end of the logic (or right after the call), then to the diff between these 2 and you will get the time you pretend.
Kind regards,
Rui Barradas
Hi Obadah,
I addition to what Rui shared, calculating the complexity of an client or server action is not a direct feature within the OutSystems platform.
But here are some guidelines:
Use AI Mentor Studio to evaluate if your action is reported on any of the code patterns it evaluates.
-- Daniel