Sha256: 9b632678d4a1be6bfbab109c837d18a8fd16ff524a91dadeaf3a66d0613cae62
Contents?: true
Size: 1.22 KB
Versions: 6
Compression:
Stored size: 1.22 KB
Contents
<% @subtabs = %w( resque redis keys ) %> <% if params[:key] %> <%= partial resque.redis.type(params[:key]).eql?("string") ? :key_string : :key_sets %> <% 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_id %></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
6 entries across 6 versions & 1 rubygems