Created
March 4, 2012 15:22
-
-
Save pablete/1973508 to your computer and use it in GitHub Desktop.
Add a 'start_time' variable to nginx 1.0.10 to support an X-REQUEST-START header. This header is used by New Relic RPM to record queue time.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- nginx-1.0.10/src/http/ngx_http_variables.c 2011-05-30 08:36:17.000000000 -0400 | |
+++ nginx-1.0.10-patched/src/http/ngx_http_variables.c 2011-11-24 23:48:09.000000000 -0500 | |
@@ -92,6 +92,8 @@ | |
ngx_http_variable_value_t *v, uintptr_t data); | |
static ngx_int_t ngx_http_variable_pid(ngx_http_request_t *r, | |
ngx_http_variable_value_t *v, uintptr_t data); | |
+static ngx_int_t ngx_http_variable_start_time(ngx_http_request_t *r, | |
+ ngx_http_variable_value_t *v, uintptr_t data); | |
/* | |
* TODO: | |
@@ -254,6 +256,9 @@ | |
{ ngx_string("pid"), NULL, ngx_http_variable_pid, | |
0, 0, 0 }, | |
+ { ngx_string("start_time"), NULL, ngx_http_variable_start_time, | |
+ 0, 0, 0 }, | |
+ | |
{ ngx_null_string, NULL, NULL, 0, 0, 0 } | |
}; | |
@@ -1803,6 +1808,27 @@ | |
return re; | |
} | |
+static ngx_int_t | |
+ngx_http_variable_start_time(ngx_http_request_t *r, | |
+ ngx_http_variable_value_t *v, uintptr_t data) | |
+{ | |
+ u_char *p; | |
+ | |
+ p = ngx_pnalloc(r->pool, NGX_INT64_LEN); | |
+ if (p == NULL) { | |
+ return NGX_ERROR; | |
+ } | |
+ | |
+ uint64_t usec = (((uint64_t)r->start_sec * 1000 * 1000) + ((uint64_t)r->start_msec * 1000)); | |
+ | |
+ v->len = ngx_sprintf(p, "%L", usec) - p; | |
+ v->valid = 1; | |
+ v->no_cacheable = 0; | |
+ v->not_found = 0; | |
+ v->data = p; | |
+ | |
+ return NGX_OK; | |
+} | |
ngx_int_t | |
ngx_http_regex_exec(ngx_http_request_t *r, ngx_http_regex_t *re, ngx_str_t *s) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment