Our app is configured with the fluent logger client to send json entries to the fluent daemon. In development mode, we run local fluent daemons that simply log to files. In the google container world, there already seems to be a fluent daemon available on every node. What's the correct way to send these logs from our app:
1. configure our containers with FLUENTD_HOST (or use the service name) that sends the logs directly from our app to the google fluent daemon
2. run a separate service that runs fluentd and fluent-plugin-google-cloud that will forward data to the google fluent daemon
3. some other way