aboutsummaryrefslogtreecommitdiff
path: root/src/http/modules/ngx_http_log_module.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-04-21 07:50:19 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-04-21 07:50:19 +0000
commitb4ccb9f5bd1ae7ea59e2f78c31ec713bb10af0ff (patch)
tree73172325b181d406d61fb6880b2535c172663cef /src/http/modules/ngx_http_log_module.c
parent60472812081386c0f2fda3139aef07a10f095173 (diff)
downloadnginx-b4ccb9f5bd1ae7ea59e2f78c31ec713bb10af0ff.tar.gz
nginx-b4ccb9f5bd1ae7ea59e2f78c31ec713bb10af0ff.zip
$request_time has millisecond precision
Diffstat (limited to 'src/http/modules/ngx_http_log_module.c')
-rw-r--r--src/http/modules/ngx_http_log_module.c13
1 files changed, 9 insertions, 4 deletions
diff --git a/src/http/modules/ngx_http_log_module.c b/src/http/modules/ngx_http_log_module.c
index e4b861bf0..d3ebca4f1 100644
--- a/src/http/modules/ngx_http_log_module.c
+++ b/src/http/modules/ngx_http_log_module.c
@@ -170,7 +170,8 @@ static ngx_http_log_var_t ngx_http_log_vars[] = {
{ ngx_string("time_local"), sizeof("28/Sep/1970:12:00:00 +0600") - 1,
ngx_http_log_time },
{ ngx_string("msec"), NGX_TIME_T_LEN + 4, ngx_http_log_msec },
- { ngx_string("request_time"), NGX_TIME_T_LEN, ngx_http_log_request_time },
+ { ngx_string("request_time"), NGX_TIME_T_LEN + 4,
+ ngx_http_log_request_time },
{ ngx_string("status"), 3, ngx_http_log_status },
{ ngx_string("bytes_sent"), NGX_OFF_T_LEN, ngx_http_log_bytes_sent },
{ ngx_string("body_bytes_sent"), NGX_OFF_T_LEN,
@@ -394,11 +395,15 @@ static u_char *
ngx_http_log_request_time(ngx_http_request_t *r, u_char *buf,
ngx_http_log_op_t *op)
{
- time_t elapsed;
+ ngx_time_t *tp;
+ ngx_msec_int_t ms;
- elapsed = ngx_time() - r->start_time;
+ tp = ngx_timeofday();
+
+ ms = (tp->sec - r->start_sec) * 1000 + (tp->msec - r->start_msec);
+ ms = (ms >= 0) ? ms : 0;
- return ngx_sprintf(buf, "%T", elapsed);
+ return ngx_sprintf(buf, "%T.%03M", ms / 1000, ms % 1000);
}