Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在查看 RPC 调用,但堆栈都是 tasklet 和 ndb。这让我很难判断正在运行哪些查询。是否有我需要使用的 appstats 配置设置?
谢谢您的帮助。
在 appengine_config.py 中添加:(如果没有这个,您的代码调用将不会进入查询堆栈)
appstats_MAX_STACK = 20
在 AppStats 中的请求历史记录下,单击一个请求。
在 RPC 调用跟踪中,单击 datastore_v3.RunQuery 的“+”
在堆栈跟踪中,您可以看到指向已执行代码的链接。