Python App Engine アプリケーションの appstats を有効にしました。/_ah/stats/ URL でローカルにアクセスできますが、アプリケーションをデプロイして UI のアプリケーションの下にある 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
この回答からこの構成を使用しました。
何か不足していますか?