Confluent Cloud

Deliver event data to Confluent Cloud for fully managed Apache Kafka streaming.

Configuration

FieldTypeRequiredDescription
bootstrap_serversstringYesThe Confluent Cloud bootstrap server address.
topicstringYesThe Kafka topic to produce messages to.
api_keysecretYesThe Confluent Cloud API key for authentication.
api_secretsecretYesThe Confluent Cloud API secret for authentication.

Quick Setup

  1. Navigate to Integrations in the sidebar.
  2. Open the Integration Library tab.
  3. Find Confluent Cloud or filter by Cloud Storage.
  4. Click Install, select a variant if available, and fill in the required fields.
  5. Click Install Integration to create the integration with a ready-to-use default configuration.

API Setup

curl -X POST http://localhost:8084/v1/admin/integration-catalog/confluent_cloud/install \
  -H "Authorization: Bearer YOUR_TOKEN" \
  -H "Content-Type: application/json" \
  -d '{
    "name": "Confluent Cloud",
    "variant": "default",
    "config": {
      "bootstrap_servers": "pkc-xxxxx.region.provider.confluent.cloud:9092",
      "topic": "events"
    },
    "delivery_mode": "server_side"
  }'

Delivery

Events are delivered server-side from your Datafly Signal infrastructure directly to Confluent Cloud. No client-side scripts are loaded for this integration.

Visit Confluent Cloud documentation for full API documentation and credential setup instructions.