Skip to content

Google Cloud PubSub

Publishes each event as a json-encoded message to a Google Cloud Pub/Sub topic. A good fit when your services on GCP consume events through Pub/Sub subscriptions.

Authentication uses the standard Google Cloud credential chain — no credentials go in the config. See Google Cloud credentials.

Configuration

daemon.toml
[sink]
type = "GcpPubSub"
topic = "test"
  • type (required): the literal value GcpPubSub.
  • topic (required): the short name of the topic to publish to.