Is there a way to see which objects are being accessed in Appstats?
When parsing Appstats traces for calls, datastore_v3.Get
it would be very helpful to know what objects are being fetched from the data store. Is there a hidden config flag that allows this?
I tried setting appstats_DATASTORE_DETAILS
in True
to appengine_config.py
, but it doesn't seem to make any difference.
source to share
As far as I know, there is no hidden config flag for this. The Appstats module sources are open.
You can view them at https://code.google.com/p/googleappengine/source/browse#svn%2Ftrunk%2Fpython%2Fgoogle%2Fappengine%2Fext%2Fappstats (python version) and https://code.google.com / p / googleappengine / source / browse # svn% 2Ftrunk% 2Fjava% 2Fsrc% 2Fmain% 2Fcom% 2Fgoogle% 2Fappengine% 2Ftools% 2Fappstats (java version).
You can search there to see if there is something like this, or you can copy the code and make changes yourself. You can even submit a fix with changes that can be integrated into the sdk.
source to share