What would be the best way to handle logs on Google Container Engine? By looking at the running pods I can see that every node is automatically running a fluentd
service. Can we tap into that to get our logs into Developer Console?
The fluentd container running on each node automatically collects the stdout and stderr of your pods and sends them to the Google Cloud Logging API. The only wrinkle is that the logs won't actually be saved by the logging API unless you've enabled the API for your project, which you can do here.
Once you've done that, the logs should show up in their normal place in the Developer Console.