Maff Rigby <[EMAIL PROTECTED]> wrote:

> Thanks for the reply - this isn't quite what I'm looking for though.
> I am looking to create a PROCTIME report which has the processing
> times for 1 page for a specific shop (that's where the ?shop=x comes
> in). The intsearchengine does tell me the requests per shop, but I
> want to narrow the report down so that I only have 1 shop in there to
> start with.

1 shop and 1 page? Or each page for a specific shop?

> I guess I could use the intsearchengine in conjunction with the %u log
> format to make sure that the requests for the shop match up with the
> processing time report?

No, if you use the %u approach, then there is no query string for the
Inernal Search report to do its work against (and the request report
just reports hits for index.asp, because there is no %q to differentiate
them).

If all you are inerested in is the index.asp page, then I think you
might be able to do it with:

ARGSINCLUDE /index.asp
FILEINCLUDE /index.asp?shop=2

http://www.analog.cx/docs/args.html

If you have a bunch of pages, and they all get shop=7 as a parameter,
and you want to look at them all, then you might be able to something
like this:

FILEALIAS *.asp?shop=* $2-$1.asp

(which will convert xyz.asp?shop=7 into 7-xyz.asp, I think)

and then
FILEINCLUDE 7-*.asp

which will only include those files that had shop=7 as a parameter.

(This is off the top of my head - I don't remember whether Analog will
do the aliasing before or after the including, and I don't know if that
FILEALIAS will work).

Aengus

>
> -----Original Message-----
> From: [EMAIL PROTECTED]
> [mailto:[EMAIL PROTECTED]]On Behalf Of Aengus
> Sent: 29 April 2002 16:17
> To: [EMAIL PROTECTED]
> Subject: Re: [analog-help] Filtering the query string
>
>
> Maff Rigby <[EMAIL PROTECTED]> wrote:
>
>> Thanks Stephen for your help with the PROCTIME report - that is
>> working fine.
>>
>> In my report, I want to include requests that only have a certain
>> query in the URL - i.e. index.asp?shop=2 - I have substituted the %q
>> for a %u in the log format, and then I do a 'USERINCLUDE *shop=2*'.
>> This seems to work but I can't tell if everything has been filtered
>> correctly as I only get the index.asp in the request report. Can
>> anyone verify that I am doing this ok or if they know how I can see
>> the results of the report?
>
> You might want to check out the Internal Search Engine reports -
> http://www.analog.cx/docs/args.html#SEARCHENGINE
>
> It's not clear from your question whether you need the full "shop=2",
> or if you are really only concerned about the "2"
>
> INTSEARCHENGINE /index.asp shop
> INTSEARCHWORD ON
>
> will enable the Internal Search Engine report, and tell you how many
> requests the were for each "shop".
>
> Aengus


+------------------------------------------------------------------------
|  This is the analog-help mailing list. To unsubscribe from this
|  mailing list, go to
|    http://lists.isite.net/listgate/analog-help/unsubscribe.html
|
|  List archives are available at
|    http://www.mail-archive.com/[email protected]/
|    http://lists.isite.net/listgate/analog-help/archives/
|    http://www.tallylist.com/archives/index.cfm/mlist.7
+------------------------------------------------------------------------

Reply via email to