I have a python app in the GAE Standard Environment and I log errors using the builtin python logging api:
logging.error('some error')
This error then appears in StackDriver Logging correctly as an error log item.
Is there a setting somewhere which I could set so I get an email notification when a new error log item is added to StackDriver Logging?
Note that I don't mean the StackDriver Error Reporting page. That is something else, the above error does not appear there, because for StackDriver Error Reporting items AFAIK I need to use some specific API call.
I mean the StackDriver Logging viewer where standard python logs appear. Can I set a notification there, so I get an email when StackDriver Logging receives an error log item from my python app?