Skip to content

Commit 457b9b4

Browse files
committed
KAFKA_REST removed, Explanation for KAFKA_TOPICS_UI added at readme.md
1 parent 2872dbd commit 457b9b4

File tree

4 files changed

+3
-4
lines changed

4 files changed

+3
-4
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ var clusters = [
4242
{
4343
NAME:"prod", //unique name is required
4444
KAFKA_CONNECT: "http://kafka-connect.prod.url", //required
45-
KAFKA_REST: "http://kafka-rest.url", //optional
4645
KAFKA_TOPICS_UI: "http://kafka-topics-ui.url", //optional
4746
KAFKA_TOPICS_UI_ENABLED: true //optional
4847
},
@@ -58,6 +57,8 @@ var clusters = [
5857
]
5958
6059
```
60+
With the use of KAFKA_TOPICS_UI you will be able to navigate to your selected connector topics.
61+
6162
### Supported Connectors
6263
For our [DM connectors](http://www.landoop.com/capabilities/kafka-connectors/) we have a template of metadata within the `supported-connectors.js`. In any case you will be shown all the existing connectors in your classpath with all the required fields to set them up.
6364

env.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ var clusters = [
33
{
44
NAME:"prod",
55
KAFKA_CONNECT: "http://kafka-connect.prod.url",
6-
KAFKA_REST: "http://kafka-rest.url",
76
KAFKA_TOPICS_UI: "http://kafka-topics-ui.url",
87
KAFKA_TOPICS_UI_ENABLED: true
98
},

index.html

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,6 @@ <h3 style="font-weight:300; color:red"><i class="fa fa-exclamation-triangle" ari
5252
{
5353
NAME:"prod", //Required
5454
KAFKA_CONNECT: "http://kafka-connect.url", //Required
55-
KAFKA_REST: "http://kafka-rest.url", //Optional
5655
KAFKA_TOPICS_UI: "http://kafka-topics-ui.url", //Optional
5756
KAFKA_TOPICS_UI_ENABLED: true //Optional
5857
},

src/kafka-connect/view/view.controller.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ angularAPP.controller('ConnectorDetailCtrl', function ($rootScope, $scope, $rout
44
var runningConnector = $routeParams.runningConnector;
55
var selectedConnector = $routeParams.runningConnector;
66
$scope.invalidSyntaxMessage = constants.VIEW_EDITOR_INVALID_SYNTAX;
7-
$scope.kafkaTopicsUI = env.KAFKA_TOPICS_UI;
7+
$scope.kafkaTopicsUI = env.KAFKA_TOPICS_UI();
88
$scope.kafkaTopicsUIEnabled = env.KAFKA_TOPICS_UI_ENABLED();
99
$scope.aceReady = false;
1010
$scope.connectorConfigurationEditable = true;

0 commit comments

Comments
 (0)