rack-request-tracer 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.gitignore +17 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +82 -0
- data/Rakefile +9 -0
- data/lib/rack/request_tracer.rb +32 -0
- data/lib/rack/request_tracer/log.rb +39 -0
- data/lib/rack/request_tracer/version.rb +5 -0
- data/rack-request-tracer.gemspec +26 -0
- data/spec/request_tracer_spec.rb +51 -0
- data/spec/spec_helper.rb +2 -0
- metadata +113 -0
checksums.yaml
ADDED
@@ -0,0 +1,7 @@
|
|
1
|
+
---
|
2
|
+
SHA1:
|
3
|
+
metadata.gz: 981c3dab180bcdf4d70577db4a1b107f4b8607ee
|
4
|
+
data.tar.gz: dc683703815bfaf58f040abdf1eb4aab9395f672
|
5
|
+
SHA512:
|
6
|
+
metadata.gz: e2549e6a0021f4848cf5731a4cac58408f400e44cf0a1163fccfc832c4eb666c233fe173c72b11b44ec32ec153a3760e1da5a452dfd9ce55bdbb3ba1607efd72
|
7
|
+
data.tar.gz: 9b421cedcd0a4dd2274467d198411b237373da2ab2c49408f28c4584152a14d5e242e61fd05f755fadba9afd1d0a0f41e99537bb0ca4e8bfa607eddb79ceac99
|
data/.gitignore
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2014 Nitin Misra
|
2
|
+
|
3
|
+
MIT License
|
4
|
+
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining
|
6
|
+
a copy of this software and associated documentation files (the
|
7
|
+
"Software"), to deal in the Software without restriction, including
|
8
|
+
without limitation the rights to use, copy, modify, merge, publish,
|
9
|
+
distribute, sublicense, and/or sell copies of the Software, and to
|
10
|
+
permit persons to whom the Software is furnished to do so, subject to
|
11
|
+
the following conditions:
|
12
|
+
|
13
|
+
The above copyright notice and this permission notice shall be
|
14
|
+
included in all copies or substantial portions of the Software.
|
15
|
+
|
16
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
17
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
18
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
19
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
20
|
+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
21
|
+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
22
|
+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
data/README.md
ADDED
@@ -0,0 +1,82 @@
|
|
1
|
+
# Rack::Request::Tracer
|
2
|
+
|
3
|
+
A Rack Middleware to log request's info to any rack app.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
`gem 'rack-request-tracer'`
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
`$ bundle`
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
`$ gem install rack-request-tracer`
|
18
|
+
|
19
|
+
## Configuration
|
20
|
+
|
21
|
+
### Rails 3.x/4.x
|
22
|
+
|
23
|
+
Create an initializer `config/initializers/request_tracer.rb` and these lines:
|
24
|
+
|
25
|
+
```ruby
|
26
|
+
require 'rack/request_tracer'
|
27
|
+
|
28
|
+
Rack::RequestTracer.enabled = true if Rails.env.production? # enable for production environment,
|
29
|
+
# disabled for other environments
|
30
|
+
|
31
|
+
# Build the Log singleton.
|
32
|
+
Rack::RequestTracer::Log.instance(
|
33
|
+
file: '/path/to/log_file.log', # example - /var/log/request_tracer.log
|
34
|
+
level: 'info', # set the log severity
|
35
|
+
rotation: 'weekly' # log rotation period
|
36
|
+
)
|
37
|
+
|
38
|
+
Rails.application.config.middleware.use Rack::RequestTracer
|
39
|
+
```
|
40
|
+
|
41
|
+
|
42
|
+
### Rack Apps
|
43
|
+
|
44
|
+
In your `config.ru` file add the following lines:
|
45
|
+
|
46
|
+
```ruby
|
47
|
+
require 'rack/request_tracer'
|
48
|
+
|
49
|
+
Rack::RequestTracer.enabled = true
|
50
|
+
|
51
|
+
# Build the Log singleton.
|
52
|
+
Rack::RequestTracer::Log.instance(
|
53
|
+
file: '/path/to/log_file.log', # example - /var/log/request_tracer.log
|
54
|
+
level: 'info', # set the log severity
|
55
|
+
rotation: 'weekly' # log rotation period
|
56
|
+
)
|
57
|
+
|
58
|
+
use Rack::RequestTracer
|
59
|
+
```
|
60
|
+
|
61
|
+
## Download
|
62
|
+
|
63
|
+
You can also clone the project with Git by running:
|
64
|
+
|
65
|
+
`$ git clone git://github.com/nitinstp23/rack-request-tracer`
|
66
|
+
|
67
|
+
|
68
|
+
## Roadmap
|
69
|
+
* Make request's info to be logged, configurable.
|
70
|
+
|
71
|
+
|
72
|
+
## Authors
|
73
|
+
* Nitin Misra: https://github.com/nitinstp23
|
74
|
+
|
75
|
+
|
76
|
+
## Contributing
|
77
|
+
|
78
|
+
1. Fork it
|
79
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
80
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
81
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
82
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1,32 @@
|
|
1
|
+
require 'request_tracer/log'
|
2
|
+
|
3
|
+
module Rack
|
4
|
+
class RequestTracer
|
5
|
+
|
6
|
+
@@enabled = false
|
7
|
+
|
8
|
+
def self.enabled=(value)
|
9
|
+
@@enabled = value
|
10
|
+
end
|
11
|
+
|
12
|
+
def initialize(app)
|
13
|
+
@app = app
|
14
|
+
end
|
15
|
+
|
16
|
+
def call(env)
|
17
|
+
trace(env) if @@enabled
|
18
|
+
@app.call(env)
|
19
|
+
end
|
20
|
+
|
21
|
+
private
|
22
|
+
|
23
|
+
def log
|
24
|
+
Log.instance
|
25
|
+
end
|
26
|
+
|
27
|
+
def trace(env)
|
28
|
+
log.trace Rack::Request.new(env)
|
29
|
+
end
|
30
|
+
|
31
|
+
end
|
32
|
+
end
|
@@ -0,0 +1,39 @@
|
|
1
|
+
require 'logger'
|
2
|
+
|
3
|
+
module Rack
|
4
|
+
class RequestTracer
|
5
|
+
class Log < ::Logger
|
6
|
+
|
7
|
+
# class variables
|
8
|
+
@@instance = nil
|
9
|
+
|
10
|
+
private_class_method :new
|
11
|
+
private_class_method :allocate
|
12
|
+
|
13
|
+
# instance accessor
|
14
|
+
def self.instance(file: nil, level: 'debug', rotation: 'daily')
|
15
|
+
return @@instance if @@instance
|
16
|
+
raise ArgumentError, 'Missing :file argument' if file.nil?
|
17
|
+
@@instance = new(file, level, rotation)
|
18
|
+
end
|
19
|
+
|
20
|
+
def initialize(file, level, rotation)
|
21
|
+
super(file, rotation)
|
22
|
+
self.level = extract_level!(level)
|
23
|
+
end
|
24
|
+
|
25
|
+
def trace(request)
|
26
|
+
info "| #{request.ip} | #{request.request_method} | #{request.url} | #{request.params}"
|
27
|
+
end
|
28
|
+
|
29
|
+
private
|
30
|
+
|
31
|
+
def extract_level!(level)
|
32
|
+
level = level.to_s.upcase
|
33
|
+
raise StandardError, 'Unkown LOG LEVEL' unless self.class.const_defined?(level)
|
34
|
+
self.class.const_get(level)
|
35
|
+
end
|
36
|
+
|
37
|
+
end
|
38
|
+
end
|
39
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
$:.push File.expand_path('../lib/rack', __FILE__)
|
2
|
+
|
3
|
+
# Maintain your gem's version:
|
4
|
+
require 'request_tracer/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = 'rack-request-tracer'
|
8
|
+
spec.version = Rack::RequestTracer::VERSION
|
9
|
+
spec.authors = ['Nitin Misra']
|
10
|
+
spec.email = ['nitin.misra23@gmail.com']
|
11
|
+
spec.description = %q{A Rack Middleware to log request's info to any rack app}
|
12
|
+
spec.summary = spec.description
|
13
|
+
spec.homepage = 'https://github.com/nitinstp23/rack-request-tracer'
|
14
|
+
spec.license = 'MIT'
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(spec)/})
|
19
|
+
spec.require_paths = ['lib']
|
20
|
+
|
21
|
+
spec.add_dependency 'rack', '~> 1.5'
|
22
|
+
|
23
|
+
spec.add_development_dependency 'bundler', '~> 1.3'
|
24
|
+
spec.add_development_dependency 'rake', '~> 10.1'
|
25
|
+
spec.add_development_dependency 'rspec', '~> 2.14'
|
26
|
+
end
|
@@ -0,0 +1,51 @@
|
|
1
|
+
require 'spec_helper.rb'
|
2
|
+
|
3
|
+
describe Rack::RequestTracer do
|
4
|
+
|
5
|
+
subject { Rack::RequestTracer }
|
6
|
+
|
7
|
+
before do
|
8
|
+
app = ->(env) do
|
9
|
+
[200, {'Content-Type' => 'text/html'}, ['It Works!']]
|
10
|
+
end
|
11
|
+
|
12
|
+
# Build Log singleton
|
13
|
+
@log = Rack::RequestTracer::Log.instance(
|
14
|
+
file: '/tmp/request_tracer.log',
|
15
|
+
level: 'info',
|
16
|
+
rotation: 'weekly'
|
17
|
+
)
|
18
|
+
|
19
|
+
@request_mock = Rack::MockRequest.new(subject.new(app))
|
20
|
+
end
|
21
|
+
|
22
|
+
describe '#call' do
|
23
|
+
describe 'Rack::RequestTracer.enabled = true' do
|
24
|
+
it 'log request info' do
|
25
|
+
subject.enabled = true
|
26
|
+
|
27
|
+
@log.stub(:trace) { true }
|
28
|
+
|
29
|
+
@request = @request_mock.get('/dummy_uri', {'HTTP_ACCEPT' => 'text/html'})
|
30
|
+
|
31
|
+
@request.status.should == 200
|
32
|
+
@request.body.should == 'It Works!'
|
33
|
+
end
|
34
|
+
end
|
35
|
+
|
36
|
+
describe 'Rack::RequestTracer.enabled = false' do
|
37
|
+
it 'does not log request info' do
|
38
|
+
subject.enabled = false
|
39
|
+
|
40
|
+
# Stubbed to raise exception,
|
41
|
+
# but this won't be executed as enabled is false.
|
42
|
+
@log.stub(:trace) { raise StandardError, 'This should not happen!' }
|
43
|
+
|
44
|
+
@request = @request_mock.get('/dummy_uri', {'HTTP_ACCEPT' => 'text/html'})
|
45
|
+
@request.status.should == 200
|
46
|
+
@request.body.should == 'It Works!'
|
47
|
+
end
|
48
|
+
end
|
49
|
+
end
|
50
|
+
|
51
|
+
end
|
data/spec/spec_helper.rb
ADDED
metadata
ADDED
@@ -0,0 +1,113 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: rack-request-tracer
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
platform: ruby
|
6
|
+
authors:
|
7
|
+
- Nitin Misra
|
8
|
+
autorequire:
|
9
|
+
bindir: bin
|
10
|
+
cert_chain: []
|
11
|
+
date: 2014-02-02 00:00:00.000000000 Z
|
12
|
+
dependencies:
|
13
|
+
- !ruby/object:Gem::Dependency
|
14
|
+
name: rack
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
16
|
+
requirements:
|
17
|
+
- - ~>
|
18
|
+
- !ruby/object:Gem::Version
|
19
|
+
version: '1.5'
|
20
|
+
type: :runtime
|
21
|
+
prerelease: false
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
23
|
+
requirements:
|
24
|
+
- - ~>
|
25
|
+
- !ruby/object:Gem::Version
|
26
|
+
version: '1.5'
|
27
|
+
- !ruby/object:Gem::Dependency
|
28
|
+
name: bundler
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
30
|
+
requirements:
|
31
|
+
- - ~>
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '1.3'
|
34
|
+
type: :development
|
35
|
+
prerelease: false
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
37
|
+
requirements:
|
38
|
+
- - ~>
|
39
|
+
- !ruby/object:Gem::Version
|
40
|
+
version: '1.3'
|
41
|
+
- !ruby/object:Gem::Dependency
|
42
|
+
name: rake
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
44
|
+
requirements:
|
45
|
+
- - ~>
|
46
|
+
- !ruby/object:Gem::Version
|
47
|
+
version: '10.1'
|
48
|
+
type: :development
|
49
|
+
prerelease: false
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
51
|
+
requirements:
|
52
|
+
- - ~>
|
53
|
+
- !ruby/object:Gem::Version
|
54
|
+
version: '10.1'
|
55
|
+
- !ruby/object:Gem::Dependency
|
56
|
+
name: rspec
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
58
|
+
requirements:
|
59
|
+
- - ~>
|
60
|
+
- !ruby/object:Gem::Version
|
61
|
+
version: '2.14'
|
62
|
+
type: :development
|
63
|
+
prerelease: false
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
65
|
+
requirements:
|
66
|
+
- - ~>
|
67
|
+
- !ruby/object:Gem::Version
|
68
|
+
version: '2.14'
|
69
|
+
description: A Rack Middleware to log request's info to any rack app
|
70
|
+
email:
|
71
|
+
- nitin.misra23@gmail.com
|
72
|
+
executables: []
|
73
|
+
extensions: []
|
74
|
+
extra_rdoc_files: []
|
75
|
+
files:
|
76
|
+
- .gitignore
|
77
|
+
- Gemfile
|
78
|
+
- LICENSE.txt
|
79
|
+
- README.md
|
80
|
+
- Rakefile
|
81
|
+
- lib/rack/request_tracer.rb
|
82
|
+
- lib/rack/request_tracer/log.rb
|
83
|
+
- lib/rack/request_tracer/version.rb
|
84
|
+
- rack-request-tracer.gemspec
|
85
|
+
- spec/request_tracer_spec.rb
|
86
|
+
- spec/spec_helper.rb
|
87
|
+
homepage: https://github.com/nitinstp23/rack-request-tracer
|
88
|
+
licenses:
|
89
|
+
- MIT
|
90
|
+
metadata: {}
|
91
|
+
post_install_message:
|
92
|
+
rdoc_options: []
|
93
|
+
require_paths:
|
94
|
+
- lib
|
95
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
96
|
+
requirements:
|
97
|
+
- - '>='
|
98
|
+
- !ruby/object:Gem::Version
|
99
|
+
version: '0'
|
100
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
101
|
+
requirements:
|
102
|
+
- - '>='
|
103
|
+
- !ruby/object:Gem::Version
|
104
|
+
version: '0'
|
105
|
+
requirements: []
|
106
|
+
rubyforge_project:
|
107
|
+
rubygems_version: 2.2.1
|
108
|
+
signing_key:
|
109
|
+
specification_version: 4
|
110
|
+
summary: A Rack Middleware to log request's info to any rack app
|
111
|
+
test_files:
|
112
|
+
- spec/request_tracer_spec.rb
|
113
|
+
- spec/spec_helper.rb
|