My app uses the threadsafe version of python 2.7 and I would like to use Appstats with it.
I currently let the runtime container instantiate my app using webapp2.WSGIApplication()
and unfortunately none of my modules are picked up in Appstats.
However, if I follow these http://code.google.com/appengine/docs/python/tools/appstats.html instructions I should use run_wsgi_app()
to invoke my application. From what I understand using webapp2.WSGIApplication()
confers several performance/app caching benefits.
How can I use Appstats with webapp2.WSGIApplication()
and keep the performance benefits?