Add a Connector via the Settings UI
Open Settings
Navigate to Settings in the Devset UI (http://localhost:8082).
Select the Brokers tab
Click the Brokers tab at the top of the Settings page. Any connectors you have already created are listed here.
Fill in the connector form
Click Add Connector, choose your broker type (Kafka or RabbitMQ), then complete the fields for that type. See the field reference below.
Connector Field Reference
- Kafka
- RabbitMQ
Use the
kafka type when connecting to an Apache Kafka cluster.A unique identifier for this connector. Workflow definitions reference this connector by setting
producerName to this value. Use a descriptive slug such as local-kafka or prod-kafka.A comma-separated list of Kafka broker addresses in
host:port format. For a local broker this is typically localhost:9092. For a multi-broker cluster, list all seed brokers, for example broker1:9092,broker2:9092.Reference a Connector in a Workflow
Once you have saved a connector, reference it in any workflow step by settingproducerName to the connector’s name value. For example, if you created a Kafka connector named local-kafka, your workflow step looks like this:
Delete a Connector via the UI
Open Settings → Brokers, locate the connector you want to remove, and click the Delete icon next to it. Deleting a connector does not modify any workflow definitions that reference it by name, so make sure no active workflows depend on the connector before removing it.API Reference
You can manage broker connectors programmatically using the Devset REST API.Create a Connector
List All Connectors
Delete a Connector
Replace{type} with kafka or rabbit, and {name} with the connector’s name.