Files
backstage/plugins/kafka-backend
Ben Lambert 123da1072a Merge pull request #4182 from nirga/multi-cluster
Kafka Plugin: Multi-cluster and multi-consumer per component
2021-01-26 10:39:17 +01:00
..
2021-01-09 21:18:41 +02:00
2021-01-21 13:13:05 +00:00
2021-01-21 13:13:05 +00:00

Kafka Backend

This is the backend part of the Kafka plugin. It responds to Kafka requests from the frontend.

Configuration

This configures how to connect to the brokers in your Kafka cluster.

clientId

The name of the client to use when connecting to the cluster.

brokers

A list of the brokers' host names and ports to connect to.

SSL (optional)

Configure TLS connection to the Kafka cluster. The options are passed directly to [tls.connect] and used to create the TLS secure context. Normally these would include key and cert.

Example:

kafka:
  clientId: backstage
  clusters:
    name: prod
    brokers:
      - localhost:9092