Skip to content

Commit 574bdaf

Browse files
committed
added supported connectors
1 parent 66db7f8 commit 574bdaf

File tree

3 files changed

+42
-2
lines changed

3 files changed

+42
-2
lines changed

src/assets/icons/coap.png

1.57 KB
Loading

src/assets/icons/mongodb.png

4.82 KB
Loading

src/supported-connectors.js

Lines changed: 42 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1056,7 +1056,7 @@ var supportedConnectorsTemplates = [{
10561056
name: "elastic", //TODO rename elasticsearch
10571057
color: "#5CB85C",
10581058
icon: "elastic.png",
1059-
description: "A Connector and Sink to write events from Kafka to Elastic Search using Elastic4s client.",
1059+
description: "A Connector to sink data from Kafka into Elastic Search.",
10601060
type: "Sink",
10611061
uiEnabled: true,
10621062
class: "com.datamountaineer.streamreactor.connect.elastic.ElasticSinkConnector",
@@ -2014,7 +2014,7 @@ var supportedConnectorsTemplates = [{
20142014
errorMessage: "Max 5 tasks"
20152015
}, {
20162016
key: 'connector.class',
2017-
value: 'com.datamountaineer.streamreactor.connect.rethink.sink.ReThinkSinkConnector',
2017+
value: 'com.datamountaineer.streamreactor.connect.voltdb.VoltSinkConnector',
20182018
type: 'hidden',
20192019
required: true,
20202020
flex: "100"
@@ -2546,6 +2546,46 @@ var supportedConnectorsTemplates = [{
25462546

25472547
] //end of sections
25482548
}]
2549+
},
2550+
{
2551+
name: "rethink",
2552+
type: "Source",
2553+
icon: "rethink.png",
2554+
class: "com.datamountaineer.streamreactor.connect.rethink.source.ReThinkSourceConnector",
2555+
description: "A Connector to source records from RethinkDb into kafka.",
2556+
uiEnabled: true
2557+
},
2558+
{
2559+
name: "coap",
2560+
type: "Source",
2561+
icon: "coap.png",
2562+
class: "com.datamountaineer.streamreactor.connect.coap.source.CoapSourceConnector",
2563+
description: "A Connector to source records from Constrained Application Protocol services into Kafka.",
2564+
uiEnabled: true
2565+
},
2566+
{
2567+
name: "blockchain",
2568+
type: "Source",
2569+
icon: "blockchain-logo.jpg",
2570+
class: "com.datamountaineer.streamreactor.connect.blockchain.source.BlockchainSourceConnector",
2571+
description: "A Connector to source data from Blockchain into Kafka.",
2572+
uiEnabled: true
2573+
},
2574+
{
2575+
name: "Coap",
2576+
type: "Sink",
2577+
icon: "coap.png",
2578+
class: "com.datamountaineer.streamreactor.connect.coap.sink.CoapSinkConnector",
2579+
description: "A Connector to sink data from Kafka into Constrained Application Protocol services.",
2580+
uiEnabled: true
2581+
},
2582+
{
2583+
name: "mongo",
2584+
type: "Source",
2585+
icon: "mongodb.png",
2586+
class: "com.datamountaineer.streamreactor.connect.mongodb.sink.MongoSinkConnector",
2587+
description: "A Connector to sink data from Kafka into MongoDB",
2588+
uiEnabled: true
25492589
}
25502590
];
25512591

0 commit comments

Comments
 (0)