All Downloads are FREE. Search and download functionalities are using the official Maven repository.

ui.management.expectedTopicInfo.ftl Maven / Gradle / Ivy

There is a newer version: 0.8.0
Show newest version
<#-- @ftlvariable name="appUrl" type="com.infobip.kafkistry.webapp.url.AppUrl" -->

<#-- @ftlvariable name="clusterIdentifier" type="java.lang.String" -->
<#-- @ftlvariable name="expectedTopicInfo" type="com.infobip.kafkistry.service.topic.ExpectedTopicInfo" -->
<#-- @ftlvariable name="bulkIterateBy" type="java.lang.String" -->

<#import "../common/util.ftl" as etUtil>


    
        <#switch bulkIterateBy!''>
            <#case "TOPIC">
                Topic: ${expectedTopicInfo.name}
                <#break>
            <#case "CLUSTER">
                Cluster: ${clusterIdentifier}
                <#break>
            <#default>
                ${expectedTopicInfo.name} @ ${clusterIdentifier}
        
    


    Number partitions
    ${expectedTopicInfo.properties.partitionCount}


    Replication factor
    ${expectedTopicInfo.properties.replicationFactor}

<#list expectedTopicInfo.config as key, value>
    
        ${key}
        ${value}
    

<#if expectedTopicInfo.config?size == 0>
    
        
            (no config overrides of defaults)
        
    

<#if bulkIterateBy??>
    
        
            <#switch bulkIterateBy>
                <#case "TOPIC">
                    <#assign statusId = "op-status-"+expectedTopicInfo.name>
                    <#break>
                <#case "CLUSTER">
                    <#assign statusId = "op-status-"+clusterIdentifier>
                    <#break>
            
            <#include "../common/serverOpStatus.ftl">
        
    






© 2015 - 2024 Weber Informatics LLC | Privacy Policy