kafka-connect-ui icon indicating copy to clipboard operation
kafka-connect-ui copied to clipboard

Dashboard Error - Source connector appears as sink connector

Open cashol opened this issue 5 years ago • 2 comments

image

The picture above displays the ActiveMQSourceConnector as a sink connector. (Maybe, this is an ActiveMQSourceConnector issue?!)

cashol avatar Jun 25 '19 11:06 cashol

@cashol Can you add a PR to include the full class name & the relevant definitions into https://github.com/Landoop/kafka-connect-ui/blob/master/src/supported-connectors.js

Antwnis avatar Jun 27 '19 13:06 Antwnis

I am using a 'Kafka Connect ActiveMQ Source Connector' from Confluent, see https://docs.confluent.io/current/connect/kafka-connect-activemq/index.html#activemq-source-connector. Full class name: io.confluent.connect.jms.ActiveMQSourceConnector.

Incomplete entry for supported-connectors.js: { name: "ActiveMQSourceConnector", icon: "????", description: "The ActiveMQ Source Connector is used to read messages from an ActiveMQ cluster and write them to a Apache Kafka® topic.", type: "Source", uiEnabled: true, color: "#??????", class: "io.confluent.connect.jms.ActiveMQSourceConnector", docs: "https://docs.confluent.io/current/connect/kafka-connect-activemq/index.html#activemq-source-connector", author: 'Confluent - Connectors to Kafka' }

Btw, the sink connector (see picture above) is also provided by Confluent, see https://docs.confluent.io/current/connect/kafka-connect-activemq/sink/index.html. Full class name: io.confluent.connect.jms.ActiveMqSinkConnector.

Incomplete entry for supported-connectors.js: { name: "ActiveMQSinkConnector", icon: "????", description: "The ActiveMQ Sink Connector is used to move messages from Kafka to an ActiveMQ cluster.", type: "Sink", uiEnabled: true, color: "#??????", class: "io.confluent.connect.jms.ActiveMqSinkConnector", docs: "https://docs.confluent.io/current/connect/kafka-connect-activemq/sink/index.html", author: 'Confluent - Connectors to Kafka' }

cashol avatar Jun 28 '19 07:06 cashol