Sha256: 3d77c972b558920db9de069ef979433d1fd2774e3a2f48a9d92d5ddcf5ef566b
Contents?: true
Size: 1.53 KB
Versions: 13
Compression:
Stored size: 1.53 KB
Contents
<%== view_title('Cluster informations') %> <div class="container mb-5"> <div class="row mb-3"> <div class="col-sm-12"> <h4 class="mb-4"> Brokers </h4> <hr/> </div> </div> <div class="row"> <div class="col-lg-12"> <table class="processes bg-white table table-hover table-bordered table-striped"> <thead> <tr class="align-middle"> <th>Broker id</th> <th>Name</th> <th>Port</th> </tr> </thead> <tbody> <%== each_partial( @cluster_info.brokers, 'cluster/broker' ) %> </tbody> </table> </div> </div> </div> <div class="container mb-5"> <div class="row mb-3"> <div class="col-sm-12"> <h4 class="mb-4"> Topics and partitions </h4> <hr/> </div> </div> <div class="row"> <div class="col-lg-12"> <table class="processes bg-white table table-hover table-bordered table-striped"> <thead> <tr class="align-middle"> <th>Topic name</th> <th>Partition id</th> <th>Leader</th> <th>Replica count</th> <th>In sync brokers</th> </tr> </thead> <tbody> <%== each_partial( @partitions, 'cluster/partition' ) %> </tbody> </table> </div> </div> </div>
Version data entries
13 entries across 13 versions & 1 rubygems