I am constantly monitoring the logs of my google app engine web app.
2012-03-27 14:37:27.842 /xyz.html 200 28ms 0kb
2012-03-27 14:34:42.581 /favicon.ico 200 50ms 0kb
2012-03-27 14:15:52.465 /img/ok-icon.png 200 102ms 0kb
2012-03-27 14:15:43.324 /favicon.ico 200 312ms 0kb
2012-03-27 14:13:51.777 /index.php?option=123 404 60ms 0kb
2012-03-27 13:55:23.178 /favicon.ico 200 1ms 0kb
2012-03-27 13:55:22.533 /img/testbkg.jpg 200 1ms 0kb
My question is:
let's suppose that only rarely the url /index.php?option=123 is hit.
and when that happens I want to know.
I'd love to be able to configure google app engine to send me an email when that happens. It'd be sufficient if it just says: "hey go and check your logs"
Because I don't know how to do it what I end up doing is going to the google app engine dashboard and search my log (with the reg expression)
Is there a way of achieving this without writing a servlet to send an email ?