Sha256: ebcb9dde08fb591ef78bcc882a70d33396a06cd42fae772627ced488657c369b

Contents?: true

Size: 1.76 KB

Versions: 30

Compression:

Stored size: 1.76 KB

Contents

.section
  .full
    .box
      .title
        %h2 Cobweb Statistics
        %span.hide
      .content
        .caption Totals for the last 30 mins
        %table.statics{:style => "width : 100%;"}
          %thead
            %tr
              %th
              - counter = 0
              - @crawls.each do |crawl|
                %th{:style => "color : #{@colors[counter]};"}= crawl[:crawl_details][:base_url]
                - counter = counter += 1
                - counter = 0 if counter > (@colors.length-1)

          %tbody
            - (1..30).each do |minutes|
              - date = (DateTime.now - (minutes/1440.0)).strftime("%Y-%m-%d %H:%M").to_sym
              %tr
                %th= minutes
                - @crawls.each do |crawl|
                  - if crawl[:minute_totals][date].nil?
                    %td
                  - else
                    %td= crawl[:minute_totals][date]
.section
  .full
    .box
      .title
        %h2 Running Crawls
        %span.hide
      .content
        - if @crawls.empty?
          No crawls running just now
        - else
          %table.all{:border => "0", :cellpadding => "0", :cellspacing => "0"}
            %thead
              %tr
                %th Base URL
                %th Cobweb Version
                %th Total Pages
                %th Total Assets
                %th Queued Objects
            %tbody
              - @crawls.each do |crawl|
                %tr
                  %td
                    %a{:href => "/statistics/#{crawl[:crawl_details][:crawl_id]}"}= crawl[:crawl_details][:base_url]
                  %td= crawl[:cobweb_version]
                  %td= crawl[:statistics][:page_count]
                  %td= crawl[:statistics][:asset_count]
                  %td= crawl[:statistics][:queue_counter]

Version data entries

30 entries across 30 versions & 1 rubygems

Version Path
cobweb-1.2.1 views/home.haml
cobweb-1.2.0 views/home.haml
cobweb-1.1.0 views/home.haml
cobweb-1.0.29 views/home.haml
cobweb-1.0.28 views/home.haml
cobweb-1.0.27 views/home.haml
cobweb-1.0.26 views/home.haml
cobweb-1.0.25 views/home.haml
cobweb-1.0.24 views/home.haml
cobweb-1.0.23 views/home.haml
cobweb-1.0.22 views/home.haml
cobweb-1.0.21 views/home.haml
cobweb-1.0.20 views/home.haml
cobweb-1.0.19 views/home.haml
cobweb-1.0.18 views/home.haml
cobweb-1.0.17 views/home.haml
cobweb-1.0.16 views/home.haml
cobweb-1.0.15 views/home.haml
cobweb-1.0.12 views/home.haml
cobweb-1.0.11 views/home.haml