[google-appengine] interpreting Logs

2011-08-02 Thread Bruno Sandivilli
Hi, is there anynway to analyse the user actions using the log of requests? I'm thinking in log every action a user does , in my application, like "the user have clicked in homepage". In an apache server for example, i can interprete the log and see the sessionid and the get request. -- You recei

Re: [google-appengine] interpreting Logs

2011-08-02 Thread Robert Kluin
You could give analytics a try: http://www.google.com/analytics/ I suppose you could also log some additional info in each request (if needed) and periodically grab the logs if you wanted to. http://code.google.com/appengine/docs/python/tools/uploadinganapp.html#Downloading_Logs You could pr