I use ereporter to watch for exceptions, and then just log in to the console now and then to look for non-exception issues.
https://developers.google.com/appengine/articles/python/recording_exceptions_with_ereporter Note that those instructions are not quite right. The correct thing to add to app.yaml these days (py2.7) is: - url: /_ereporter.* script: google.appengine.ext.ereporter.report_generator.application login: admin On Aug 7, 2013, at 7:31 AM, stephanos <[email protected]> wrote: > Okay, never mind. I found the according issue for this. In 1 month it will be > 5 years old :) > > So, how do you guys monitor your apps? Just login once a day into the console? > > > > On Wednesday, August 7, 2013 11:58:26 AM UTC+2, stephanos wrote: > > Hi there, > > Is there an API to grab the stats/data that are displayed in an application's > admin console? > > Specifically, I'd like to get access to the number of tasks in a queue, > requests per second etc. in order to put it on a dashboard. > > > Thanks, > Stephan > > -- > You received this message because you are subscribed to the Google Groups > "Google App Engine" group. > To unsubscribe from this group and stop receiving emails from it, send an > email to [email protected]. > To post to this group, send email to [email protected]. > Visit this group at http://groups.google.com/group/google-appengine. > For more options, visit https://groups.google.com/groups/opt_out. > > -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
