Sha256: e11b53f033c603ac73fc9721b55ee84429af369b3fb34523dd05b4215837daa1
Contents?: true
Size: 1.07 KB
Versions: 17
Compression:
Stored size: 1.07 KB
Contents
<%== view_title(@process.name) %> <% if @process.status == 'stopped' %> <%== partial 'consumers/consumer/stopped' %> <% end %> <%== partial 'consumers/consumer/metrics' %> <%== partial 'consumers/consumer/tabs' %> <% if @process.jobs.empty? %> <%== partial 'consumers/consumer/no_jobs' %> <% else %> <div class="container"> <div class="row mb-5"> <div class="col-sm-12"> <table class="processes bg-white table table-hover table-bordered table-striped mb-0 align-middle"> <thead> <tr class="align-middle"> <th>Consumer</th> <th>Topic</th> <th>Type</th> <th>First offset</th> <th>Last offset</th> <th>Committed offset</th> <th>Started at</th> </tr> </thead> <tbody> <%== render_each( @process.jobs, 'consumers/consumer/_job', local: :job ) %> </tbody> </table> </div> </div> </div> <% end %>
Version data entries
17 entries across 17 versions & 1 rubygems