<p>Please, just tell me if there is no hope, so that I can get on with setting up my own nginx-patch-repository :) </p>
<p>I really would like the possibility to have the uid in a single column. What would otherwise be the best way?</p>
<p>//Martin</p>
<div class="gmail_quote">On 25 Feb 2011 10:40, &quot;Martin Bruse&quot; &lt;<a href="mailto:zondolfin@gmail.com">zondolfin@gmail.com</a>&gt; wrote:<br type="attribution">&gt; Hello list!<br>&gt; <br>&gt; I first sent this mail to <a href="mailto:nginx@nginx.org">nginx@nginx.org</a>, but realized that this list is<br>
&gt; probably more suitable. Especially since I got no response whatsoever :)<br>&gt; <br>&gt; I wanted to use my nginx logs to power click track analysis like<br>&gt; <a href="http://statviz.sourceforge.net/">http://statviz.sourceforge.net/</a> for example, and therefore I used the<br>
&gt; userid module.<br>&gt; <br>&gt; I realized quickly that it either sets $uid_set or $uid_got, never<br>&gt; both, which makes it hard to get one single column in the logfile that<br>&gt; entails the userid.<br>&gt; <br>
&gt; So I devised the following patch for this purpose:<br>&gt; <br>&gt; -----------------------------------8&lt;--------------------------------------------<br>&gt; --- nginx-0.7.67/src/http/modules/ngx_http_userid_filter_module.c<br>
&gt; 2010-06-07<br>&gt; 11:54:19.000000000 +0200<br>&gt; +++ nginx-0.7.67-martin//src/http/modules/ngx_http_userid_filter_module.c<br>&gt;     2011-02-24<br>&gt; 13:16:20.000000000 +0100<br>&gt; @@ -275,9 +275,11 @@<br>&gt; <br>
&gt;     ctx = ngx_http_get_module_ctx(r, ngx_http_userid_filter_module);<br>&gt; <br>&gt; -    if (ctx == NULL || ctx-&gt;uid_set[3] == 0) {<br>&gt; -        v-&gt;not_found = 1;<br>&gt; -        return NGX_OK;<br>&gt; +    if (ctx == NULL) {<br>
&gt; +      v-&gt;not_found = 1;<br>&gt; +      return NGX_OK;<br>&gt; +    } else if (ctx-&gt;uid_set[3] == 0) {<br>&gt; +      return ngx_http_userid_got_variable(r, v, data);<br>&gt;     }<br>&gt; <br>&gt;     conf = ngx_http_get_module_loc_conf(r, ngx_http_userid_filter_module);<br>
&gt; -----------------------------------8&lt;--------------------------------------------<br>&gt; <br>&gt; Since I have no real ambition to have my own fork of nginx, I would<br>&gt; love to hear about the possibilities to get this modification, or<br>
&gt; another that solves my problem in a more nginxy way, into the main<br>&gt; branch.<br>&gt; <br>&gt; regards,<br>&gt; //Martin Bruse<br></div>