Does anyone know how to query all the logs of a Google App Engine application? For all the logs, I mean all the application version logs.
We upgrade our application every time we deploy. I have a script that pulls log files every 30 minutes for some kind of offline analytics.
This is what my script is calling right now. appcfg.py --append --num_days = 0 --include_all request_logs / opt / gae / appname // var / log / gae / appname.log
These are not all application version log files, but only the version specified in the /opt/gae/appname/app.yaml file. The problem is that everything in this app.yaml file may not be alive, but rather still in development.
It would be nice if we had the flag --version = 0, which pulled out the logs for all versions, for example, for -num_days = 0.
source share