descriptionconfigurable request logging for Rack
homepage URLhttp://clogger.rubyforge.org/
repository URLgit://bogomips.org/clogger.git
ownerclogger@bogomips.org
last changeTue, 6 Nov 2012 02:58:33 +0000
last refreshTue, 21 May 2013 09:38:50 +0200
Content tags:
Add:
readme
= Clogger - configurable request logging for Rack

* http://clogger.rubyforge.org/
* mailto:clogger@librelist.com

== DESCRIPTION

Clogger is Rack middleware for logging HTTP requests.  The log format
is customizable so you can specify exactly which fields to log.

== FEATURES

* highly customizable with easy-to-read nginx-like log format variables.

* pre-defines Apache Common Log Format, Apache Combined Log Format and
  Rack::CommonLogger (as distributed by Rack 1.0) formats.
  See Clogger::Format for the predefined formats.

* Untrusted values are escaped (all HTTP headers, request URI components)
  to make life easier for HTTP log parsers. The following bytes are escaped:

    ' (single quote)
    " (double quote)
    all bytes in the range of \x00-\x1F

== SYNOPSIS

Clogger may be loaded as Rack middleware in your config.ru:

  require "clogger"
  use Clogger,
      :format => Clogger::Format::Combined,
      :logger => File.open("/path/to/log", "ab")
  run YourApplication.new

If you're using Rails 2.3.x or later, in your config/environment.rb
somewhere inside the "Rails::Initializer.run do |config|" block:

  config.middleware.use 'Clogger',
      :format => Clogger::Format::Combined,
      :logger => File.open("/path/to/log", "ab")

== VARIABLES

* $http_* - HTTP request headers (e.g. $http_user_agent)
* $sent_http_* - HTTP response headers (e.g. $sent_http_content_length)
* $content_length - HTTP request body size
  ($http_content_length is not allowed by Rack)
* $content_type - HTTP request content type
  ($http_content_type is not allowed by Rack)
* $cookie_* - HTTP request cookie (e.g. $cookie_session_id)
  Rack::Request#cookies must have been used by the underlying application
  to parse the cookies into a hash.
* $request_method - the HTTP request method (e.g. GET, POST, HEAD, ...)
* $path_info - path component requested (e.g. /index.html)
* $query_string - request query string (not including leading "?")
* $request_uri - the URI requested ($path_info?$query_string)
* $request - the first line of the HTTP request
  ($request_method $request_uri $http_version)
* $request_time, $request_time{PRECISION} - time taken for request
  (including response body iteration).  PRECISION defaults to 3
  (milliseconds) if not specified but may be specified anywhere from
  0(seconds) to 6(microseconds).
* $time_local, $time_local{FORMAT} - current local time, FORMAT defaults to
  "%d/%b/%Y:%H:%M:%S %z" but accepts any strftime(3)-compatible format
* $time_utc, $time_utc{FORMAT} - like $time_local, except with UTC
* $usec - current time in seconds.microseconds since the Epoch
* $msec - current time in seconds.milliseconds since the Epoch
* $body_bytes_sent - bytes in the response body (Apache: %B)
* $response_length - body_bytes_sent, except "-" instead of "0" (Apache: %b)
* $remote_user - HTTP-authenticated user
* $remote_addr - IP of the requesting client socket
* $ip - X-Forwarded-For request header if available, $remote_addr if not
* $pid - process ID of the current process
* $e{Thread.current} - Thread processing the request
* $e{Actor.current} - Actor processing the request (Revactor or Rubinius)

== REQUIREMENTS

* Ruby, Rack

== DEVELOPMENT

The latest development happens in git and is published to the following:

   git://git.bogomips.org/clogger.git
   git://repo.or.cz/clogger.git

You may also browse and download snapshot tarballs:

* http://git.bogomips.org/cgit/clogger.git (cgit)
* http://repo.or.cz/w/clogger.git (gitweb)

The mailing list (see below) is central for coordination and
development.  Patches should always be sent inline
(git format-patch -M + git send-email) so we can reply to them inline.

== CONTACT

All feedback (bug reports, user/development dicussion, patches, pull
requests) go to the mailing list.

* mailto:clogger@librelist.com

Do not send HTML mail or attachments.  Do not top post.

== INSTALL

For all Rubygems users:

  gem install clogger

If you're using MRI 1.8/1.9 and have a build environment, you can also try:

  gem install clogger_ext

If you do not use Rubygems, you may also use setup.rb from tarballs from
the Rubyforge project page:

* http://rubyforge.org/frs/?group_id=8896

== LICENSE

Copyright (C) 2009 Eric Wong <normalperson@yhbt.net> and contributors.

Clogger is free software; you can redistribute it and/or modify it under
the terms of the GNU Lesser General Public License as published by the
Free Software Foundation, version 3.0.

Clogger is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or
FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public
License for more details.

You should have received a copy of the GNU Lesser General Public License
along with Clogger; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301
shortlog
2012-11-06 Eric Wongclogger 1.2.0 - small bug and compatibility fixes master v1.2.0
2012-11-06 Eric Wongext: enable C extension under Ruby 2.0.0
2012-11-06 Eric Wongtest_clogger: fix Ruby 1.8 test compatibility
2012-11-03 Eric Wongavoid calling "<<" on env["rack.errors"]
2012-06-08 Eric WongREADME: update for Ruby 1.9.3 support status
2012-06-08 Eric Wongtest case to simulate Rack::BodyProxy usage pattern
2012-05-08 Eric WongREADME: updated to use concise format syntax
2011-12-06 Eric Wongpkg.mk update
2011-12-06 Eric Wongclogger 1.1.0 - more escaping! v1.1.0
2011-12-06 Eric Wongescape individual cookie values from $cookie_*
2011-12-06 Eric Wongescape bytes in the 0x7F-0xFF range, too
2011-07-22 Eric Wonguse librelist.org for mailing list address
2011-07-20 Eric Wongext: note we rely on GVL for reentrancy detection
2011-06-22 Eric Wongclogger 1.0.1 - portability fixes v1.0.1
2011-06-22 Eric Wongext: fix portability defines for some installs
2011-05-12 Eric Wongtests: add full URL example
...
tags
6 months ago v1.2.0 clogger 1.2.0 - small bug and compa...
17 months ago v1.1.0 clogger 1.1.0 - more escaping!
22 months ago v1.0.1 clogger 1.0.1 - portability fixes
2 years ago v1.0.0 clogger 1.0.0 - \o/
2 years ago v0.9.0 clogger 0.9.0 - configurable loggin...
2 years ago v0.8.0 clogger 0.8.0 - delegating away!
2 years ago v0.7.0 clogger 0.7.0 - portability improve...
2 years ago v0.6.0 clogger 0.6.0 - :path shortcut...
2 years ago v0.5.0 clogger 0.5.0 - body.to_path forwarding
3 years ago v0.4.0 clogger 0.4.0
3 years ago v0.3.2 clogger 0.3.2
3 years ago v0.3.1 clogger 0.3.1
3 years ago v0.3.0 clogger 0.3.0
3 years ago v0.2.0 clogger 0.2.0
3 years ago v0.1.0 clogger 0.1.0
3 years ago v0.0.7 clogger 0.0.7
...
heads
6 months ago master