Hey folks, sorry I'm reposting this, but I never saw any responses and
thought maybe it just slipped under the radar. I'm trying to generate a
series of reports limited to one of the arguments in a dynamic page. We use
a single .asp page to display information from our site, but branded
differently depending on our content partner. I want to be able to give each
partner a report which gives only the information relevent to them.

So, for example, one report would be limited to pages like
"showproduct.asp?partner=companyA" and another report would be limited to
"showproduct.asp?partner=companyB"

This would allow me to get a hosts report for each one and of course, we
don't want companyA to see what companyB is doing. I tried to do this using
the FILEEXCLUDE command and it worked, but I lost all the detail I used to
have with the individual arguments from the arglist. I need this detail
because there are other arguments (productIDs for example) which we need to
be able to tell them "product A got 120 views, product B got 50 views, etc."

So here is the full detail of my example again:

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

Reply via email to