2
訪問將Appstats我已經啓用了專用的Appstats我的Python App Engine應用程序,我可以在/ _ah /統計/ URL下本地訪問,但是當我部署應用程序和我的應用程序下訪問appspot.com用戶界面沒有定製將Appstats鏈接,因爲它應該有。在我的YAML文件中,我定義:無法在部署的版本
builtins:
- appstats: on
我總結我的應用appengine_config.py
這樣的:
def webapp_add_wsgi_middleware(app):
app = SessionMiddleware(app, cookie_key="MyRandomString")
app = recording.appstats_wsgi_middleware(app)
return app
我從這個answer使用此配置。
我錯過了什麼嗎?