The monitoring is needed whenever you push new code. If you are updating the code "a lot" for a site with many users, or a site that part of your critical enterprise processes, then you have a bigger problem than dashboards. That's like adjusting the timing on your car while you drive down the freeway at 65mph.
On Aug 7, 2013, at 10:26 AM, stephanos <[email protected]> wrote: > May I just ask, are those sites being updated a lot? > > I could imagine if you push a new version - maybe every day - things could > change - sometimes drastically - again. > > > > On Wednesday, August 7, 2013 4:21:41 PM UTC+2, Joshua Smith wrote: > My experience is with enterprise process apps, customer facing apps with a > few thousand occasional users, and one consumer app with hundreds of daily > users. > > In each of those case, I've found that I need to continuously monitor the app > for the first week or two to get everything humming (billing status reports > are the most useful diagnostic, actually). After that, random spot checks > seem to be just fine. > > That's sort of the whole point of using GAE. If I wanted to obsessively tune > and monitor apps, I'd use AWS. > > On Aug 7, 2013, at 9:05 AM, stephanos <[email protected]> wrote: > >> Interesting. But how about requests/seconds, task backlog, consumed quota, >> cache hits etc.? >> >> >> On Wednesday, August 7, 2013 3:01:58 PM UTC+2, Joshua Smith wrote: >> 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. >> >> > > > -- > 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.
