문제

I'm looking at RPC calls, but the stack is all tasklet and ndb. This is making it difficult for me to tell what queries are running. Is there an appstats config setting I need to use?

Thanks for the help.

도움이 되었습니까?

해결책

In appengine_config.py add: (Your code calls won't make it into the query stack without this)

appstats_MAX_STACK = 20

In AppStats, under Requests History, click on a request.

In RPC Call Traces click "+" for a datastore_v3.RunQuery

In the stack trace you can see links to your code that was executed.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top