Vinay Joseph
Vinay Joseph

Reputation: 5655

App Engine Server Side error notification

I would like to know how I can get Google App Engine to notify me via email the moment a 500 is registered on the server.

My app is running Flask, Python on Google App Engine.

Any ideas ?

Upvotes: 1

Views: 144

Answers (1)

Dmytro Sadovnychyi
Dmytro Sadovnychyi

Reputation: 6201

Take a look on ereporter. It's allows you to configure a cron job wich will send you an email with latest registered exceptions.

UPDATE: For WSGI in app.yaml you should use:

- url: /_ereporter.*
  script: google.appengine.ext.ereporter.report_generator.application
  login: admin

Upvotes: 1

Related Questions