I trying to investigate how often a particular HTTP request is getting send to a web site. The request is a POST and has a parameter named "_method"
. I can see this in firebug getting net over.
I need to check the value of this "_method"
parameter, so following the documentation http://tomcat.apache.org/tomcat-6.0-doc/config/valve.html#Access_Log_Valve I add the following to the tomcat access configuration for the valve
%{_method}r
But it is not coming out in access logs.
I wonder is that because of the underscore?
Note, the parameter name cannot be changed.