目前我们通过日志想分析一下服务的一些性能问题,我们在 access log 中分别统计了$request_time。因为代码中会通过ngx.location.capture_multi请求下游所以还统计了$upstream_response_time。以及在执行的代码中通过ffi.C.gettimeofday(tv, nil)获取时间戳打点来计算纯代码的执行耗时(减去upstream_response_time)(设定为run_cost_time)。但是在access log中我们发现存在大量的request_time < upstream_response_time + run_cost_time,甚至还存在很多的request_time < run_cost_time。想知道这是什么情况呢?