I followed the instructions from here
http://googleappengine.blogspot.com/2010/03/easy-performance-profiling-with.html
So, I created the file appengine_config.py to contain this:

def webapp_add_wsgi_middleware(app):
   from google.appengine.ext.appstats import recording
   app = recording.appstats_wsgi_middleware(app)
   return app

and I added this to the app.yaml:

- url: /stats.*
  script: $PYTHON_LIB/google/appengine/ext/appstats/ui.py

and this at the botom:

admin_console:
 pages:
 - name: Appstats
   url: /stats

On Dec 3, 11:15 am, Robert Kluin <[email protected]> wrote:
> I am guessing it might be something to do with your Appstats
> configuration.  Care to share any details about how you've got
> appstats setup?
>
> Also, just for reference:
>  http://code.google.com/appengine/docs/python/tools/appstats.html
>
> Robert
>
>
>
>
>
>
>
> On Fri, Dec 3, 2010 at 12:53, MdeA <[email protected]> wrote:
> > I shouldn't say for "most", but for "many" of my user requests.
> > Does anybody know?
>
> > On Dec 3, 10:48 am, MdeA <[email protected]> wrote:
> >> Does anybody knows what the message 'Configuration
> >> "webapp_add_wsgi_middleware" not recognized' means.
> >> Started showing a couples of days ago in the logs for most of my user
> >> requests.
> >> Should I worry about that?
> >> Thx.
>
> > --
> > You received this message because you are subscribed to the Google Groups 
> > "Google App Engine" group.
> > To post to this group, send email to [email protected].
> > To unsubscribe from this group, send email to 
> > [email protected].
> > For more options, visit this group 
> > athttp://groups.google.com/group/google-appengine?hl=en.

-- 
You received this message because you are subscribed to the Google Groups 
"Google App Engine" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/google-appengine?hl=en.

Reply via email to