Sha256: 43b3adf15d000a17299085cedcaadd183e779400b97dd207c20205657a4ba651

Contents?: true

Size: 1.54 KB

Versions: 13

Compression:

Stored size: 1.54 KB

Contents

script type="text/javascript" src="#{{root_path}}javascripts/dashboard.js"

h3
  = t('Dashboard')
  span.beacon
    .ring
    .dot

h5 = t('Realtime')
#realtime

h5
  span.history-heading = t('History')
  a href="#{{root_path}}?days=7" class="history-graph #{{"active" if params[:days] == "7"}}" = t('OneWeek')
  a href="#{{root_path}}" class="history-graph #{{"active" if params[:days].nil? || params[:days] == "30"}}" = t('OneMonth')
  a href="#{{root_path}}?days=90" class="history-graph #{{"active" if params[:days] == "90"}}" = t('ThreeMonths')
  a href="#{{root_path}}?days=180" class="history-graph #{{"active" if params[:days] == "180"}}" = t('SixMonths')
#history data-processed="#{Sidekiq.dump_json(@processed_history)}" data-failed="#{Sidekiq.dump_json(@failed_history)}" data-update-url="#{{root_path}}dashboard/stats"

br
h5 Redis

- if @redis_info.fetch("redis_version", nil)
  .stat
    h3.redis_version= @redis_info.fetch("redis_version")
    p = t('Version')

- if @redis_info.fetch("uptime_in_days", nil)
  .stat
    h3.uptime_in_days= @redis_info.fetch("uptime_in_days")
    p = t('Uptime')

- if @redis_info.fetch("connected_clients", nil)
  .stat
    h3.connected_clients= @redis_info.fetch("connected_clients")
    p = t('Connections')

- if @redis_info.fetch("used_memory_human", nil)
  .stat
    h3.used_memory_human= @redis_info.fetch("used_memory_human")
    p = t('MemoryUsage')

- if @redis_info.fetch("used_memory_peak_human", nil)
  .stat
    h3.used_memory_peak_human= @redis_info.fetch("used_memory_peak_human")
    p = t('PeakMemoryUsage')

Version data entries

13 entries across 13 versions & 2 rubygems

Version Path
sidekiq-2.13.1 web/views/dashboard.slim
sidekiq-2.13.0 web/views/dashboard.slim
sidekiq-2.12.4 web/views/dashboard.slim
sidekiq-2.12.3 web/views/dashboard.slim
sidekiq-2.12.1 web/views/dashboard.slim
sidekiq-2.12.0 web/views/dashboard.slim
sidekiq-statsd-0.1.1 vendor/ruby/1.9.1/gems/sidekiq-2.11.2/web/views/dashboard.slim
sidekiq-statsd-0.1.0 vendor/ruby/1.9.1/gems/sidekiq-2.11.2/web/views/dashboard.slim
sidekiq-2.11.2 web/views/dashboard.slim
sidekiq-2.11.1 web/views/dashboard.slim
sidekiq-2.11.0 web/views/dashboard.slim
sidekiq-2.10.1 web/views/dashboard.slim
sidekiq-2.10.0 web/views/dashboard.slim