I am attempting to limit a report to only count requests which contain the
text "liquidprice" anywhere in the URL.
For example, this would match:
/pages/liquidprices/page.html
as well as
/dynamic.asp?id=12345&customer=liquidprice&anothervar=123
When I add the following lines to my configuration:
ARGSINCLUDE *
REQARGSFLOOR 1r
FILEINCLUDE *liquidprice*
REQFLOOR 1r
REQINCLUDE pages
REQSORTBY ALPHABETICAL
REQCOLS R
REQARGSSORTBY ALPHABETICAL
it appears to count the requests properly, but I do not get any detail under
the requests report. This is what I see:
Listing files with at least 1 request, sorted alphabetically.
reqs: file
-----: ----
14360: [not listed: 2 files]
If I comment out the FILEINCLUDE line above, I get my full request report
which includes many separate "files" with liquidprice as an argument:
11:
/reviews/showproduct.asp?ProductID=5239&SiteID=11&CategoryID=1002&partner=li
quidprice
120:
/reviews/showproduct.asp?ProductID=5239&SiteID=2&CategoryID=1305&partner=liq
uidprice
57:
/reviews/showproduct.asp?ProductID=5242&SiteID=11&CategoryID=1002&partner=li
quidprice
108:
/reviews/showproduct.asp?ProductID=5268&SiteID=11&CategoryID=1005&partner=li
quidprice
95:
/reviews/showproduct.asp?ProductID=5272&SiteID=11&CategoryID=1005&partner=li
quidprice
How do I get this level of detail restricted to the match I specify in the
FILEINCLUDE command?
winmail.dat