|
|
|
|
|
by sroussey
517 days ago
|
|
This reminds me why I added server timing to the chrome dev tools. The basic thing I instrumented in my projects was a count of calls to APIs and their total time. Same for DB access. Then push these out as server timings via http headers and see them in chrome. Quick and dirty way to see what the server call was generally doing. In addition to adding that to chrome dev tools, I had an extension that would consolidate all network requests for a given page and summarize them. Nice to show various teams how many darn db queries they were doing just to load a page. |
|