应用服务的响应时间指标到底是什么
What exactly is Response Time metric from App Service
是否与 here 所述的 IIS 日志中的 "Time Taken (time-taken)" 相同?
Time-taken is the time it takes from when IIS receives the first byte in the request until it sends out the last byte in that request. This includes network time getting to the client (for nearly all cases if you have a page that is less than 2KB, I think, that is cached) so a slow network connection will have a longer network time and thus time taken.
The start time of when the first byte is received by IIS is the "time" field and the finish time when IIS sends out that the last byte is the "time" field + the "time-taken" field
平均响应时间 是由 2 个指标组成的复合指标。
1) 请求数
2) 样本的响应时间总和。
我们每 10 秒发布一次指标,因此一分钟内有 6 个样本。这意味着我们每 10 秒发布这 10 秒内的请求数和那 10 秒内的响应时间总和.
它没有关于每个请求的响应时间的信息。最小粒度为 1 分钟,因此聚合 6 个样本计算计算的采样类型(平均、总和、最大、最小)。
是否与 here 所述的 IIS 日志中的 "Time Taken (time-taken)" 相同?
Time-taken is the time it takes from when IIS receives the first byte in the request until it sends out the last byte in that request. This includes network time getting to the client (for nearly all cases if you have a page that is less than 2KB, I think, that is cached) so a slow network connection will have a longer network time and thus time taken. The start time of when the first byte is received by IIS is the "time" field and the finish time when IIS sends out that the last byte is the "time" field + the "time-taken" field
平均响应时间 是由 2 个指标组成的复合指标。
1) 请求数
2) 样本的响应时间总和。
我们每 10 秒发布一次指标,因此一分钟内有 6 个样本。这意味着我们每 10 秒发布这 10 秒内的请求数和那 10 秒内的响应时间总和.
它没有关于每个请求的响应时间的信息。最小粒度为 1 分钟,因此聚合 6 个样本计算计算的采样类型(平均、总和、最大、最小)。