Sha256: b3bd80923826324066eac947b9d1f8ed35d79e24276897abaeb526a859abc846
Contents?: true
Size: 1.16 KB
Versions: 12
Compression:
Stored size: 1.16 KB
Contents
<% @subtabs = %w( resque redis keys ) %> <% if params[:key] %> <%= partial :key %> <% elsif params[:id] == "resque" %> <h1><%= resque %></h1> <table class='stats'> <% for key, value in resque.info.to_a.sort_by { |i| i[0].to_s } %> <tr> <th> <%= key %> </th> <td> <%= value %> </td> </tr> <% end %> </table> <% elsif params[:id] == 'redis' %> <h1><%= resque.redis.server %></h1> <table class='stats'> <% for key, value in resque.redis.info.to_a.sort_by { |i| i[0].to_s } %> <tr> <th> <%= key %> </th> <td> <%= value %> </td> </tr> <% end %> </table> <% elsif params[:id] == 'keys' %> <h1>Keys owned by <%= resque %></h1> <p class='sub'>(All keys are actually prefixed with "resque:")</p> <table class='stats'> <tr> <th>key</th> <th>type</th> <th>size</th> </tr> <% for key in resque.keys.sort %> <tr> <th> <a href="<%=u "/stats/keys/#{key}" %>"><%= key %></a> </th> <td><%= resque.redis.type key %></td> <td><%= redis_get_size key %></td> </tr> <% end %> </table> <% else %> <% end %>
Version data entries
12 entries across 12 versions & 4 rubygems