clogger.git  about / heads / tags
configurable request logging for Rack
blob 6a63ce6a1cc23fe802fc4da04c247ab234f14e44 805 bytes (raw)
$ git show HEAD:lib/clogger/format.rb	# shows this blob on the CLI

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
 
# -*- encoding: binary -*-

class Clogger

  # predefined log formats in wide use
  module Format
    # common log format used by Apache:
    # https://httpd.apache.org/docs/2.4/logs.html
    Common = "$remote_addr - $remote_user [$time_local] " \
             '"$request" $status $response_length'

    # combined log format used by Apache:
    # https://httpd.apache.org/docs/2.4/logs.html
    Combined = %Q|#{Common} "$http_referer" "$http_user_agent"|

    # combined log format used by nginx:
    # http://wiki.nginx.org/NginxHttpLogModule
    NginxCombined = Combined.gsub(/response_length/, 'body_bytes_sent')

    # log format used by Rack 1.0
    Rack_1_0 = "$ip - $remote_user [$time_local{%d/%b/%Y %H:%M:%S}] " \
               '"$request" $status $response_length $request_time{4}'
  end

end

git clone https://yhbt.net/clogger.git