What is the unit of ef_duration

after running netlify dev with --debug true I get this:
Finished edge function invocation { ef_duration: 1404.5359859999999 }
is that 1404ms? can’t find any resource on it, also will it actually be invoked after deployment? as I see the CPU execution time limit is 50ms…

also does ef_duration include time spent waiting for responses from sub-requests (e.g. fetching a database) ?

That should be in milliseconds. You can probably guess if you feel a second pass while your EF does the work.

Yes, it would include the time waiting for responses. Thus, it would work in production.

got it, thank you…! :netliheart: