How to display exact timing with Chrome Dev Tools?

Viewed 1923

In this link, it shows how to use network timing pane/window. But, I realized that the timings are shown in relative: there is no "exact timing" here. For example I wanted to see the exact time of the starting of an ajax and it's end of course. This should be the string that I need to see in this pane as an "exact start time" of an ajax request

11.17.2017 10:00:00(GMT+1)

How can I achieve this in Chrome Developer Tools? Are there any place written the exact date of the network events?

1 Answers

Not necessarily what you asked for, but since you asked for any exact dates of network events, it's possible to capture the Response Date (time the response message was originated). If you right click on one of your columns, then choose Response Headers->Manage Header Columns->Add custom header->(type in Date). Unfortunately, it is not the actual start date of the request. I don't know if there's a way to capture that in devtools aside from modifying code to console.log your start date.

enter image description here

Related