peek-gc 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/CHANGELOG.md +3 -0
- data/Gemfile +4 -0
- data/LICENSE.txt +22 -0
- data/README.md +33 -0
- data/Rakefile +1 -0
- data/app/views/peek/views/_gc.html.erb +1 -0
- data/lib/peek-gc.rb +3 -0
- data/lib/peek-gc/railtie.rb +6 -0
- data/lib/peek-gc/version.rb +5 -0
- data/lib/peek/views/gc.rb +66 -0
- data/peek-gc.gemspec +21 -0
- metadata +73 -0
data/.gitignore
ADDED
data/CHANGELOG.md
ADDED
data/Gemfile
ADDED
data/LICENSE.txt
ADDED
@@ -0,0 +1,22 @@
|
|
1
|
+
Copyright (c) 2013 Garrett Bjerkhoel
|
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,33 @@
|
|
1
|
+
# Peek::GC
|
2
|
+
|
3
|
+
Take a peek into the GC info of your Rails application.
|
4
|
+
|
5
|
+
## Installation
|
6
|
+
|
7
|
+
Add this line to your application's Gemfile:
|
8
|
+
|
9
|
+
gem 'peek-gc'
|
10
|
+
|
11
|
+
And then execute:
|
12
|
+
|
13
|
+
$ bundle
|
14
|
+
|
15
|
+
Or install it yourself as:
|
16
|
+
|
17
|
+
$ gem install peek-gc
|
18
|
+
|
19
|
+
## Usage
|
20
|
+
|
21
|
+
Add the following to your `config/initializers/peek.rb`:
|
22
|
+
|
23
|
+
```ruby
|
24
|
+
Peek.into Peek::Views::GC
|
25
|
+
```
|
26
|
+
|
27
|
+
## Contributing
|
28
|
+
|
29
|
+
1. Fork it
|
30
|
+
2. Create your feature branch (`git checkout -b my-new-feature`)
|
31
|
+
3. Commit your changes (`git commit -am 'Add some feature'`)
|
32
|
+
4. Push to the branch (`git push origin my-new-feature`)
|
33
|
+
5. Create new Pull Request
|
data/Rakefile
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
require "bundler/gem_tasks"
|
@@ -0,0 +1 @@
|
|
1
|
+
<strong><span title="Invoke Time" data-defer-to="<%= view.defer_key %>-invokes">...</span> / <span title="Invoke Count" data-defer-to="<%= view.defer_key %>-gc_time">...</span>ms</strong> gc
|
data/lib/peek-gc.rb
ADDED
@@ -0,0 +1,66 @@
|
|
1
|
+
module Peek
|
2
|
+
module Views
|
3
|
+
class GC < View
|
4
|
+
attr_reader :invokes
|
5
|
+
attr_reader :invoke_time
|
6
|
+
attr_reader :use_size
|
7
|
+
attr_reader :total_size
|
8
|
+
attr_reader :total_object
|
9
|
+
attr_reader :gc_time
|
10
|
+
|
11
|
+
def results
|
12
|
+
parse_result
|
13
|
+
|
14
|
+
{
|
15
|
+
:invokes => invokes,
|
16
|
+
:invoke_time => "%.2f" % invoke_time,
|
17
|
+
:use_size => use_size,
|
18
|
+
:total_size => total_size,
|
19
|
+
:total_object => total_object,
|
20
|
+
:gc_time => "%.2f" % gc_time
|
21
|
+
}
|
22
|
+
end
|
23
|
+
|
24
|
+
def parse_result
|
25
|
+
results = ::GC::Profiler.result.split("\n")
|
26
|
+
|
27
|
+
@invokes = 0
|
28
|
+
@invoke_time = 0.0
|
29
|
+
@use_size = 0
|
30
|
+
@total_size = 0
|
31
|
+
@total_object = 0
|
32
|
+
@gc_time = 0.0
|
33
|
+
|
34
|
+
return if results.empty?
|
35
|
+
|
36
|
+
@invokes = results.first.scan(/\s+\d+(?:\.\d+)?/).first.strip
|
37
|
+
|
38
|
+
results[2..-1].each do |line|
|
39
|
+
_, invoke_time, use_size, total_size, total_object, gc_time = line.scan(/\s+\-?\d+(?:\.\d+)?/).collect(&:strip)
|
40
|
+
|
41
|
+
@invoke_time += invoke_time.to_f
|
42
|
+
@use_size += use_size.to_i
|
43
|
+
@total_size += total_size.to_i
|
44
|
+
@total_object += total_object.to_i
|
45
|
+
@gc_time += gc_time.to_f
|
46
|
+
end
|
47
|
+
end
|
48
|
+
|
49
|
+
private
|
50
|
+
|
51
|
+
def setup_subscribers
|
52
|
+
# Reset each counter when a new request starts
|
53
|
+
before_request do |name, start, finish, id, payload|
|
54
|
+
::GC::Profiler.enable
|
55
|
+
::GC::Profiler.clear
|
56
|
+
end
|
57
|
+
|
58
|
+
# Once the action is finished
|
59
|
+
subscribe 'process_action.action_controller' do |name, start, finish, id, payload|
|
60
|
+
::GC::Profiler.disable
|
61
|
+
::GC::Profiler.clear
|
62
|
+
end
|
63
|
+
end
|
64
|
+
end
|
65
|
+
end
|
66
|
+
end
|
data/peek-gc.gemspec
ADDED
@@ -0,0 +1,21 @@
|
|
1
|
+
# -*- encoding: utf-8 -*-
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'peek-gc/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |gem|
|
7
|
+
gem.name = 'peek-gc'
|
8
|
+
gem.version = Peek::GC::VERSION
|
9
|
+
gem.authors = ['Garrett Bjerkhoel']
|
10
|
+
gem.email = ['me@garrettbjerkhoel.com']
|
11
|
+
gem.description = %q{Take a peek into the GC info of your Rails application.}
|
12
|
+
gem.summary = %q{Take a peek into the GC info of your Rails application.}
|
13
|
+
gem.homepage = 'https://github.com/peek/peek-gc'
|
14
|
+
|
15
|
+
gem.files = `git ls-files`.split($/)
|
16
|
+
gem.executables = gem.files.grep(%r{^bin/}).map{ |f| File.basename(f) }
|
17
|
+
gem.test_files = gem.files.grep(%r{^(test|spec|features)/})
|
18
|
+
gem.require_paths = ['lib']
|
19
|
+
|
20
|
+
gem.add_dependency 'peek'
|
21
|
+
end
|
metadata
ADDED
@@ -0,0 +1,73 @@
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
2
|
+
name: peek-gc
|
3
|
+
version: !ruby/object:Gem::Version
|
4
|
+
version: 0.0.1
|
5
|
+
prerelease:
|
6
|
+
platform: ruby
|
7
|
+
authors:
|
8
|
+
- Garrett Bjerkhoel
|
9
|
+
autorequire:
|
10
|
+
bindir: bin
|
11
|
+
cert_chain: []
|
12
|
+
date: 2013-06-14 00:00:00.000000000 Z
|
13
|
+
dependencies:
|
14
|
+
- !ruby/object:Gem::Dependency
|
15
|
+
name: peek
|
16
|
+
requirement: !ruby/object:Gem::Requirement
|
17
|
+
none: false
|
18
|
+
requirements:
|
19
|
+
- - ! '>='
|
20
|
+
- !ruby/object:Gem::Version
|
21
|
+
version: '0'
|
22
|
+
type: :runtime
|
23
|
+
prerelease: false
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
25
|
+
none: false
|
26
|
+
requirements:
|
27
|
+
- - ! '>='
|
28
|
+
- !ruby/object:Gem::Version
|
29
|
+
version: '0'
|
30
|
+
description: Take a peek into the GC info of your Rails application.
|
31
|
+
email:
|
32
|
+
- me@garrettbjerkhoel.com
|
33
|
+
executables: []
|
34
|
+
extensions: []
|
35
|
+
extra_rdoc_files: []
|
36
|
+
files:
|
37
|
+
- .gitignore
|
38
|
+
- CHANGELOG.md
|
39
|
+
- Gemfile
|
40
|
+
- LICENSE.txt
|
41
|
+
- README.md
|
42
|
+
- Rakefile
|
43
|
+
- app/views/peek/views/_gc.html.erb
|
44
|
+
- lib/peek-gc.rb
|
45
|
+
- lib/peek-gc/railtie.rb
|
46
|
+
- lib/peek-gc/version.rb
|
47
|
+
- lib/peek/views/gc.rb
|
48
|
+
- peek-gc.gemspec
|
49
|
+
homepage: https://github.com/peek/peek-gc
|
50
|
+
licenses: []
|
51
|
+
post_install_message:
|
52
|
+
rdoc_options: []
|
53
|
+
require_paths:
|
54
|
+
- lib
|
55
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
56
|
+
none: false
|
57
|
+
requirements:
|
58
|
+
- - ! '>='
|
59
|
+
- !ruby/object:Gem::Version
|
60
|
+
version: '0'
|
61
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
62
|
+
none: false
|
63
|
+
requirements:
|
64
|
+
- - ! '>='
|
65
|
+
- !ruby/object:Gem::Version
|
66
|
+
version: '0'
|
67
|
+
requirements: []
|
68
|
+
rubyforge_project:
|
69
|
+
rubygems_version: 1.8.23
|
70
|
+
signing_key:
|
71
|
+
specification_version: 3
|
72
|
+
summary: Take a peek into the GC info of your Rails application.
|
73
|
+
test_files: []
|