You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
https://nginx.org/en/docs/http/ngx_http_upstream_module.html
$upstream_response_time
keeps time spent on receiving the response from the upstream server; the time is kept in seconds with millisecond resolution. Times of several responses are separated by commas and colons like addresses in the $upstream_addr variable.
/* TODO: do not shutdown persistent connection */
if (u->peer.connection->ssl) {
/*
* We send the "close notify" shutdown alert to the upstream only
* and do not wait its "close notify" shutdown alert.
* It is acceptable according to the TLS standard.
*/
u->peer.connection->ssl->no_wait_shutdown = 1;
(void) ngx_ssl_shutdown(u->peer.connection);
}
查看官方针对 upstream_response_time 的解释很模糊,因此想请教一下 upstream_response_time 是否包含 tcp 三次握手和四次挥手?
https://nginx.org/en/docs/http/ngx_http_upstream_module.html
$upstream_response_time
keeps time spent on receiving the response from the upstream server; the time is kept in seconds with millisecond resolution. Times of several responses are separated by commas and colons like addresses in the $upstream_addr variable.
https://docs.nginx.com/nginx/admin-guide/monitoring/logging/
$upstream_response_time – The time between establishing a connection and receiving the last byte of the response body from the upstream server
The text was updated successfully, but these errors were encountered: