Unique Logins
I know some of you are tracking unique logins to the portal. So far the way we have been doing that is somewhat cumbersome. We use the session.log on every portal tier server (we have 13 of them) and parse them at the end of the day. Any one has a better method of doing this and willing to share? I would like to run a Unique login count on PD at different times of the day.
thanks

Works here
There's a better way than that?? :)
Todd
unique logins
I don't know any easier way than than a cronjob on each web tier creating a data file by running:
grep "user login:" $CP_ROOT/logs/session.log | awk '{ print $1 " " $5 }' | sort | uniq | awk '{ print $1 }' | uniq -c
We have 4 web fronts, and one server we call "logserver". The logserver has a cronjob that scp's each of the web fronts to get the data file from the above grep, then some php scripts parse, merge, and stick the rows in a db.