Forum Moderators: phranque
Anything like it, but more economical?
Note: I meant to type Fireclick (singular), but unfortunately this forum will not allow me to edit the title.
[edited by: DaveAtIFG at 3:32 pm (utc) on June 24, 2003]
[edit reason] Edited title. Thanks for noting the need! [/edit]
FWIW: in apache, the log setting would be something like this...
CustomLog "logs/clstream.log" "%{cookie}n %t \"%r\""
or
LogFormat "%{cookie}n %t \"%r\"" clickstream
CustomLog "logs/clstream.log" clickstream
that would give you output like this...
darktower-e.54731055617738770 [14/Jun/2003:15:09:06 -0400] "GET /cgi-bin/traceback.cmd HTTP/1.1"
darktower-e.54731055617738770 [14/Jun/2003:15:15:21 -0400] "GET /siteusage/ HTTP/1.1"
darktower-e.54731055617738770 [14/Jun/2003:15:15:21 -0400] "GET /siteusage/usage.png HTTP/1.1"
darktower-e.54731055617738770 [14/Jun/2003:15:15:29 -0400] "GET /siteusage/usage_200305.html HTTP/1.1"
darktower-e.54731055617738770 [14/Jun/2003:15:15:30 -0400] "GET /siteusage/daily_usage_200305.png HTTP/1.1"
darktower-e.54731055617738770 [14/Jun/2003:15:15:30 -0400] "GET /siteusage/hourly_usage_200305.png HTTP/1.1"
darktower-e.54731055617738770 [14/Jun/2003:15:15:30 -0400] "GET /siteusage/ctry_usage_200305.png HTTP/1.1"
from the above, you can see that they came in directly to /cgi-bin/traceback.cmd... hung out there for about four minutes and then went directly to /siteusage/ and from there to /siteusage/usage_200305.html after which, they left the site... this by following only those entries ending in / or .htm(l)
you can also use this to see if all the resources for a page are being pulled as you intend but i don't know if that's really a necessary thing to view as one may click on links faster than the resources are requested... the main thing is seeing the / and .htm(l) pages unless you are scripting a lot of stuff... i'm not sure how that would appear but it should be similar...
HTH