What is the "elapsed time" in django-debug-toolbar?

1.2k views Asked by At

What sort of stuff is going on in the "elapsed time" value in the Django Debug Toolbar? I assume CPU time is a part of it, but what else is going on? The more explicit you can be, the more it'll help!!

    Resource          Value
    User CPU time     110.000 msec
    System CPU time   50.000 msec
    Total CPU time    160.000 msec
    Elapsed time      1855.731 msec
    Context switches  74 voluntary, 80 involuntary

FYI: I've seen this but still don't really get what's going on.

1

There are 1 answers

1
c4urself On BEST ANSWER

the elapsed time is the time it's taken to complete the request, that includes server processing and client-side rendering of the html/css/js