Sha256: c3dd9ebe765f2ae75e1e745d321ca5878de21d266a8422ce59970bd5b10e4282

Contents?: true

Size: 861 Bytes

Versions: 21

Compression:

Stored size: 861 Bytes

Contents

-# coding: utf-8
- variables = RestFtpDaemon::WorkerPool.instance.worker_variables

%h2 Worker status

%table.table.table-striped.table-hover.table-condensed

  %thead
    %tr
      %th worker
      %th pool
      %th status
      %th job
      %th.text-right seen

  %tbody
    - variables.each do |wid, vars|
      - status = vars[:status]
      - alive = RestFtpDaemon::WorkerPool.instance.worker_alive? wid
      - trclass = WORKER_STYLES[status]

      - unless alive
        - trclass = "danger"
        - status = "DOWN"

      %tr{class: trclass.to_s}
        %td= wid
        %td= vars[:pool]
        %td= status
        %td= vars[:jid]
        %td.text-right

          - if vars[:updated_at].is_a? Time
            - no_news_for = (Time.now - vars[:updated_at]).round(0)
            = formatted_duration no_news_for
          - else
            = "?"

Version data entries

21 entries across 21 versions & 1 rubygems

Version Path
rest-ftp-daemon-1.1.1 lib/rest-ftp-daemon/views/dashboard_workers.haml
rest-ftp-daemon-1.1.0 lib/rest-ftp-daemon/views/dashboard_workers.haml
rest-ftp-daemon-1.0.15 lib/rest-ftp-daemon/views/dashboard_workers.haml
rest-ftp-daemon-1.0.14 lib/rest-ftp-daemon/views/dashboard_workers.haml
rest-ftp-daemon-1.0.13 lib/rest-ftp-daemon/views/dashboard_workers.haml
rest-ftp-daemon-1.0.12 lib/rest-ftp-daemon/views/dashboard_workers.haml
rest-ftp-daemon-1.0.11 lib/rest-ftp-daemon/views/dashboard_workers.haml
rest-ftp-daemon-1.0.10 lib/rest-ftp-daemon/views/dashboard_workers.haml
rest-ftp-daemon-1.0.9 lib/rest-ftp-daemon/views/dashboard_workers.haml
rest-ftp-daemon-1.0.8 lib/rest-ftp-daemon/views/dashboard_workers.haml
rest-ftp-daemon-1.0.7 lib/rest-ftp-daemon/views/dashboard_workers.haml
rest-ftp-daemon-1.0.6 lib/rest-ftp-daemon/views/dashboard_workers.haml
rest-ftp-daemon-1.0.5 lib/rest-ftp-daemon/views/dashboard_workers.haml
rest-ftp-daemon-1.0.4 lib/rest-ftp-daemon/views/dashboard_workers.haml
rest-ftp-daemon-1.0.3 lib/rest-ftp-daemon/views/dashboard_workers.haml
rest-ftp-daemon-1.0.2 lib/rest-ftp-daemon/views/dashboard_workers.haml
rest-ftp-daemon-1.0.1 lib/rest-ftp-daemon/views/dashboard_workers.haml
rest-ftp-daemon-0.502.2 lib/rest-ftp-daemon/views/dashboard_workers.haml
rest-ftp-daemon-0.502.1 lib/rest-ftp-daemon/views/dashboard_workers.haml
rest-ftp-daemon-0.502.0 lib/rest-ftp-daemon/views/dashboard_workers.haml