Most proxy statistics programs has decent user based statistics. Look
around a little until you find one that have the exact output you
need. <URL:http://www.squid-cache.org/Scripts/>
You can also easily make per-user statistics by splitting the log on
username and then process the log for each user individually. The
following minimal shell script splits a Squid access log on the user
column, creating one log file per user:
#!/bin/sh
awk '{ print >> FILENAME "-" $8 }' "$@"
Regards
Henrik
On Saturday 07 September 2002 11.59, Sander Winkel wrote:
> With the ident protocol I log all usernames in access.log
> Does anyone know or there is a program which can make statistics
> with the usernames and the url who was visited by the user?
> For example:
>
> john --> http://www.linux.org
> charles --> http://www.freshmeat.net
> Sander --> http://www.squid-cache.org
>
> Offcourse the layout may be difference then shown above.
>
> Kind regards,
> Sander Winkel
> The Netherlands
Received on Sat Sep 07 2002 - 08:21:06 MDT
This archive was generated by hypermail pre-2.1.9 : Tue Dec 09 2003 - 17:10:08 MST