Sha256: ceace8bba812620f57b24e478708d4a3c254dc29e33be6558a03be52a07900a0

Contents?: true

Size: 1.15 KB

Versions: 11

Compression:

Stored size: 1.15 KB

Contents

require 'erb'

module Thin
  module Stats
    # Rack adapter to log stats about a Rack application.
    class Adapter
      include ERB::Util
      
      def initialize(app, path='/stats')
        @app  = app
        @path = path

        @template = ERB.new(File.read(File.dirname(__FILE__) + '/stats.html.erb'))
        
        @requests          = 0
        @requests_finished = 0
        @start_time        = Time.now
      end
      
      def call(env)
        if env['PATH_INFO'].index(@path) == 0
          serve(env)
        else
          log(env) { @app.call(env) }
        end
      end
      
      def log(env)
        @requests += 1
        @last_request = Rack::Request.new(env)
        request_started_at = Time.now
        
        response = yield
        
        @requests_finished += 1
        @last_request_time = Time.now - request_started_at
        
        response
      end
      
      def serve(env)
        body = @template.result(binding)
        
        [
          200,
          {
            'Content-Type' => 'text/html',
            'Content-Length' => body.size.to_s
          },
          [body]
        ]
      end
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
thin-0.6.4-x86-mswin32-60 lib/thin/stats.rb
thin-0.6.4 lib/thin/stats.rb
thin-0.7.0-x86-mswin32-60 lib/thin/stats.rb
thin-0.6.3 lib/thin/stats.rb
thin-0.6.3-x86-mswin32-60 lib/thin/stats.rb
thin-0.8.1 lib/thin/stats.rb
thin-0.8.2 lib/thin/stats.rb
thin-0.7.1 lib/thin/stats.rb
thin-0.7.1-x86-mswin32-60 lib/thin/stats.rb
thin-0.7.0 lib/thin/stats.rb
thin-0.8.0 lib/thin/stats.rb