Filtering problems, 2 different visitor values
I have annoying problem with one report. It gives me 2 different Visitor values with almost the same filters. Logfiles are IIS / Sharepoint 2007 logs.
Filter 1:
Include - Requested file - url/to/my/page.aspx
Gives me 1372 hits and 786 visitors
Filter 2:
Include - Requested file - url/to/*
The I look at the top results and see url/to/my/page.aspx 1372 hits and only 501 visitors.
The first filter is very specific to find only one page. The second filter finds all subpages but giver very different value for the same page.aspx. Why? I can not see any logic in this behavior.
My final goal is to get Visitor values from some specific pages but I also need to get ie top 100 subpages (by visitor) from a site collection.
ps. I also tried Filter 3: Include - Visitors accessed the specified file (url/to/*) but it didnt give me results from that at all. There were only url/a url/b etc...
Filter 1:
Include - Requested file - url/to/my/page.aspx
Gives me 1372 hits and 786 visitors
Filter 2:
Include - Requested file - url/to/*
The I look at the top results and see url/to/my/page.aspx 1372 hits and only 501 visitors.
The first filter is very specific to find only one page. The second filter finds all subpages but giver very different value for the same page.aspx. Why? I can not see any logic in this behavior.
My final goal is to get Visitor values from some specific pages but I also need to get ie top 100 subpages (by visitor) from a site collection.
ps. I also tried Filter 3: Include - Visitors accessed the specified file (url/to/*) but it didnt give me results from that at all. There were only url/a url/b etc...
It seems that there were visitors that requested url/to/my/page.aspx, then requested some other files that match url/to/* , and then requested url/to/my/page.aspx again, for example:
url/to/my/page.aspx is requested
after 20 minutes url/to/anotherpage.aspx is requested
after 20 minutes url/to/my/page.aspx is requested
In such case if you use the url/to/* filter, all these requests are analyzed and the program determines that there was one visitor that requested page url/to/my/page.aspx (while there were two hits).
However, if you use the url/to/my/page.aspx filter, the program will only see that there was one request for page url/to/my/page.aspx, and after 40 minutes another request for the same page from the same IP. As the timeout is set to 30 minutes, the program will report two visitors (and two hits) in this case.
So if you use the url/to/my/page.aspx filter instead of url/to/* filter, the program may report more visitors and it happens in your case.