<p class="MsoNoSpacing">Hi Antonio,</p>

<p class="MsoNoSpacing">Can you help me a bit more? I have never written in lua </p>

<p class="MsoNoSpacing">Say for every hit I want to hit a rrd proxy like this </p>

<p class="MsoNormal">echo "$location_url:1" | nc -w 1 -u <a href="http://host.com">host.com</a> 8125</p>

<p class="MsoNoSpacing">how do I go about doing this in lua?</p>

<p class="MsoNoSpacing"> </p>

<br><div class="gmail_quote">On Sun, Oct 14, 2012 at 11:32 AM, António P. P. Almeida <span dir="ltr"><<a href="mailto:appa@perusio.net" target="_blank">appa@perusio.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
<div class="HOEnZb"><div class="h5">On 14 Out 2012 20h11 CEST, <a href="mailto:quintinpar@gmail.com">quintinpar@gmail.com</a> wrote:<br>
<br>
> Hi all,<br>
><br>
> I have a website that’s heavily cached – or intended to be heavily<br>
> cached via Nginx .<br>
><br>
> But somehow looking at the page response time I feeling there is a<br>
> very high eviction/invalidation rate.<br>
><br>
> Now is there way I can look at the cache status in Nginx for<br>
> different. I don’t use the purge module.<br>
><br>
> The only way I check cache status is through<br>
><br>
> add_header X-Cache-Status $upstream_cache_status;<br>
><br>
> I want to o/p the cache status to a RRD tool and look at the<br>
> metrics.<br>
><br>
> Is this possible?<br>
<br>
</div></div> With Lua shouldn't be that difficult. You just inspect the value of<br>
 $upstream_cache_status.<br>
<br>
ngx.var.upstream_cache_status paired with<br>
<a href="http://wiki.nginx.org/HttpLuaModule#ngx.location.capture" target="_blank">http://wiki.nginx.org/HttpLuaModule#ngx.location.capture</a><br>
to use a specific location to write to RRDtool.<br>
<br>
Just an idea,<br>
--- appa<br>
<br>
_______________________________________________<br>
nginx mailing list<br>
<a href="mailto:nginx@nginx.org">nginx@nginx.org</a><br>
<a href="http://mailman.nginx.org/mailman/listinfo/nginx" target="_blank">http://mailman.nginx.org/mailman/listinfo/nginx</a></blockquote></div><br>