1
A
回答
2
我實際上可以解決這個問題。挖掘端點,我可以看到它實際上是一個WSGI服務器。並使用Appstats進行測試並完美工作,需要將其添加到文檔中。
在appengine_config.py,我這樣做:
def webapp_add_wsgi_middleware(app):
from google.appengine.ext.appstats import recording
app = recording.appstats_wsgi_middleware(app)
return app
webapp_add_wsgi_middleware(api_app)
這非常適用於生產過。
相關問題
- 1. 爲Google Cloud Messaging設置服務器端
- 2. 指定Google Cloud端點響應協議
- 3. Google Cloud Enpoints:端點配置未更新
- 4. 爲Google Cloud Messaging設置服務器端和客戶端
- 5. 如何設置Cloud Foundry API端點?
- 6. 沒有Google帳戶的Google Cloud端點
- 7. 如何爲Android設置Google Cloud Messaging?
- 8. Google Cloud端點的Eclipse客戶端項目配置
- 9. Google Cloud端點API獲取404
- 10. Google Cloud端點框架 - EndpointServlet ClassNotFoundException
- 11. Google Cloud端點API調用ServiceException
- 12. Google Cloud端點gwt Oauth2身份驗證
- 13. 如何從GWT撥打Google Cloud端點
- 14. 從Google Cloud端點訪問UserService
- 15. 帶Google雲端功能的Google Cloud端點
- 16. Google Cloud Service Java客戶端配置
- 17. 如何取消Google Cloud端點端點請求
- 18. 降低Google Cloud端點請求響應標頭大小
- 19. 如何在Google Cloud Endpoints Javascript客戶端中設置自定義標題?
- 20. 爲什麼要使用Google Cloud應用端點
- 21. 在Google Cloud中設置網站?
- 22. 在Google App Engine端點(Java)中設置響應標頭
- 23. Google Cloud Messaging - 服務器端
- 24. Google Cloud Messaging服務器端
- 25. Google Cloud模塊中的後端端點類未更新(Android)
- 26. Eucalyptus Cloud設置
- 27. org.jboss.ws.WSException:未設置目標端點地址
- 28. 將主幹設置爲指向外部端點
- 29. Google Cloud Endpoint在端點執行異步代碼
正確。 Cloud Endpoints是一個API代理,用於翻譯API請求並將它們轉發給protorpc後端'/ _ah/spi/*'路由。那些路線是你想要分析的路線。在日誌查看器中不會看到任何'/ _ah/api/*'請求。 –
什麼是'api_app'?請提供完整的代碼。 –