Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/views/cluster/addCluster.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
@b3.form(routes.Cluster.handleAddCluster) {
<fieldset>
@b3.text(form("name"), '_label -> "Cluster Name", 'placeholder -> "", 'autofocus -> true )
@b3.text(form("zkHosts"), '_label -> "Cluster Zookeeper Hosts", 'placeholder -> "zk1:2181,zk2:2181,zk3:2181")
@b3.text(form("zkHosts"), '_label -> "Cluster Zookeeper Hosts", 'placeholder -> "zk1:2181,zk2:2181,zk3:2181/NAMESPACE")
@b3.select( form("kafkaVersion"), options = kafka.manager.KafkaVersion.formSelectList, '_label -> "Kafka Version" )
@b3.checkbox(form("jmxEnabled"), '_text -> "Enable JMX Polling")
@b3.checkbox(form("jmxEnabled"), '_text -> "Enable JMX Polling (Set JMX_PORT env variable before starting kafka server)")
@b3.checkbox(form("logkafkaEnabled"), '_text -> "Enable Logkafka")
@b3.checkbox(form("filterConsumers"), '_text -> "Filter out inactive consumers")
@b3.checkbox(form("activeOffsetCacheEnabled"), '_text -> "Enable Active OffsetCache (Not recommended for large # of consumers)")
Expand Down
4 changes: 2 additions & 2 deletions app/views/cluster/updateCluster.scala.html
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@
<fieldset>
<input type="hidden" name="operation" value="Update">
<input type="hidden" name="name" value="@clusterName">
@b3.text(form("zkHosts"), '_label -> "Cluster Zookeeper Hosts", 'placeholder -> "zk1:2181,zk2:2181,zk3:2181", 'autoFocus -> true)
@b3.text(form("zkHosts"), '_label -> "Cluster Zookeeper Hosts", 'placeholder -> "zk1:2181,zk2:2181,zk3:2181/NAMESPACE", 'autoFocus -> true)
@b3.select( form("kafkaVersion"), options = kafka.manager.KafkaVersion.formSelectList, '_label -> "Kafka Version" )
@b3.checkbox(form("jmxEnabled"), '_text -> "Enable JMX Polling")
@b3.checkbox(form("jmxEnabled"), '_text -> "Enable JMX Polling (Set JMX_PORT env variable before starting kafka server)")
@b3.checkbox(form("filterConsumers"), '_text -> "Filter out inactive consumers")
@b3.checkbox(form("logkafkaEnabled"), '_text -> "Enable Logkafka")
@b3.checkbox(form("activeOffsetCacheEnabled"), '_text -> "Enable Active OffsetCache (Not recommended for large # of consumers)")
Expand Down