google app engine request log breakdown

前端 未结 1 447
旧巷少年郎
旧巷少年郎 2021-01-13 15:21

Here is an example line from one of python appengine apps in the admin console Logs section filtered to \'Request Only\':

01-22 07:19PM 55.483 /zone/5 200 82         


        
1条回答
  •  无人共我
    2021-01-13 16:13

    Column 6: is the time to serve the response. The reason CPU time is greater is because many operations are parallelized. What are you doing in this request? The CPU is the total CPU being used to generate the request.

    Column 9: It's probably less rounding down and more integer truncation.

    0 讨论(0)
自定义标题
段落格式
字体
字号
代码语言
提交回复
热议问题