![JAR search and dependency download from the Maven repository](/logo.png)
ui.management.topicConfigChanges.ftl Maven / Gradle / Ivy
The newest version!
<#-- @ftlvariable name="clusterIdentifier" type="java.lang.String" -->
<#-- @ftlvariable name="topicName" type="java.lang.String" -->
<#-- @ftlvariable name="configChanges" type="java.util.List" -->
<#-- @ftlvariable name="bulkIterateBy" type="java.lang.String" -->
<#import "../common/util.ftl" as ccUtil>
<#switch bulkIterateBy!''>
<#case "TOPIC">
Topic: ${topicName}
<#break>
<#case "CLUSTER">
Cluster: ${clusterIdentifier}
<#break>
<#default>
${topicName} @ ${clusterIdentifier}
#switch>
Key
Current value
New value
<#list configChanges as configChange>
${configChange.key}
<#if configChange.oldValue??>
<#if configChange.oldValue == "">
(empty)
<#else>
${configChange.oldValue}
#if>
<#else>
null
#if>
<#if configChange.newValue??>
<#if configChange.newValue == "">
(empty)
<#else>
${configChange.newValue}
#if>
<#else>
null
#if>
<#if configChange.newToDefault>
(cluster's default)
#if>
#list>
<#if configChanges?size == 0>
(nothing)
#if>
<#if bulkIterateBy??>
<#switch bulkIterateBy>
<#case "TOPIC">
<#assign statusId = "op-status-"+topicName>
<#break>
<#case "CLUSTER">
<#assign statusId = "op-status-"+clusterIdentifier>
<#break>
#switch>
<#include "../common/serverOpStatus.ftl">
#if>
© 2015 - 2025 Weber Informatics LLC | Privacy Policy