API timing information

Solved!
rona
Level 3
API timing information

Hello,

With the response of the API, we have some timing information like :

- preProcessing

- wait

- execution

- functionInternal

 

Please, is there a definition for each of this element ? What is the time unit used ?

Is execution including preProcessing, wait and functionInternal ?

What is functionInternal compared to execution ?

 

Annie

0 Kudos
1 Solution
Clรฉment_Stenac

Hi,

Time unit is microseconds.

You can ignore "functionInternal", and only keep wait, preprocessing and execution

  • wait is time waiting for an execution slot to be available
  • preProcessing is internal activities that occur before your function is called
  • execution is the actual time taken by your function

Hope this helps,

View solution in original post

1 Reply
Clรฉment_Stenac

Hi,

Time unit is microseconds.

You can ignore "functionInternal", and only keep wait, preprocessing and execution

  • wait is time waiting for an execution slot to be available
  • preProcessing is internal activities that occur before your function is called
  • execution is the actual time taken by your function

Hope this helps,