Hi everyone,
I m looking into helping my self monitor a Google App Engine application (Python Standard). I m using GAE as a service backend for a game that is going to be launched soon and I m trying to setup the most efficient tools I can to keep an eye on the heatlh of the application and have the best possible data to review / understand / fix any error.
I understood (but I might be wrong ^^) that the native python logging has been "linked" to stackdriver under the hood for the logs to be automatically managed and linked to stackdriver's trace, error and monitoring services. I also understood that the log is organised of a "RequestLog" handling an amount of "ApplicationLog"
All what we can do with the "logging" library is to write "ApplicationLogs" so I was wondering if there was a way to access and modify the RequestLog object adding relevant data (more easy to fecth or see at first glance) I got stuck when I figured out that we dont have access to google cloud api library in the standard environment.
Thank you in advance for your answers.