Re: Recording Django user/session/view requests back into a Django model

2010-03-12 Thread Daniel Roseman
On Mar 12, 4:57 pm, Philip Zeyliger wrote: > Hi folks, > > I'd like to measure who's using my site and what views they're looking at. >  Presumably, I'd do this with some middleware that stuffs request.user and > view_func into the database and then build some simple views to look at this > data.

Recording Django user/session/view requests back into a Django model

2010-03-12 Thread Philip Zeyliger
Hi folks, I'd like to measure who's using my site and what views they're looking at. Presumably, I'd do this with some middleware that stuffs request.user and view_func into the database and then build some simple views to look at this data. Has anyone seen a similar open-source Django plug-in f