Overview
The simplest way to send GKE pod logs to Bronto is an OpenTelemetry Collector DaemonSet that reads logs directly from each node. If you already export to Cloud Logging, you can instead bridge through Pub/Sub.Prerequisites
- A Bronto account and API key (how to create one)
- A GKE cluster with
kubectland Helm access
Primary: OTel Collector DaemonSet
Deploy the Collector as a DaemonSet with the OpenTelemetry Helm chart. Its presets collect pod logs and add Kubernetes metadata:values.yaml
<REGION> to eu or us. This reads pod logs from the node and bypasses Cloud Logging. For more Collector detail, see Connect OpenTelemetry Collector to Bronto.
Alternative: Cloud Logging via Pub/Sub
If you already route logs through Cloud Logging, create a Log Router sink to a Pub/Sub topic and read it with thegooglecloudpubsub receiver:
/etc/otel/config.yaml
Don’t push Pub/Sub directly to Bronto — its message envelope isn’t parseable. The Collector unwraps it.
What you will see in Bronto
Open Search and filter by your collection. Records carry each container’s stdout/stderr plus Kubernetes attributes (pod, namespace, node, container, labels).Troubleshooting
- No logs (DaemonSet)? Confirm the DaemonSet runs on every node and the
kubernetesAttributespreset’s RBAC is in place. - No logs (Pub/Sub)? Verify the sink is active and the Collector’s service account has
roles/pubsub.subscriber. - For general issues, see OTel Collector troubleshooting.

