vernier 1.1.2 → 1.2.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/exe/vernier +121 -32
- data/ext/vernier/vernier.cc +5 -1
- data/lib/vernier/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 89d2c876f873a04f937175301ba227c5dd3e883f0e2fefbaf6927f409c88d511
|
4
|
+
data.tar.gz: 469d58efbd5ea8ef87288d0d7c07e74a4ede94aa60743afce80ed57904f4e40e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 41bd857e2a36ddf757ffd5139d3b897202039ac8fb21020856c7f44b979b34488d154d2f88fa3a397124a131109be9c047a765d249d9b190a7f320d66c33c0c5
|
7
|
+
data.tar.gz: fc6141244154307323bb0460ff7142c20cf7d57e7b6f03caf33b9febe9a975b82c1bdbb435174645523287edc4675ea551d37c00baf5a02137f1bc56ddd4a6ef
|
data/exe/vernier
CHANGED
@@ -3,45 +3,134 @@
|
|
3
3
|
require "optparse"
|
4
4
|
require "vernier/version"
|
5
5
|
|
6
|
-
|
6
|
+
module Vernier
|
7
|
+
module CLI
|
8
|
+
def self.run(options)
|
9
|
+
banner = <<-END
|
7
10
|
Usage: vernier run [FLAGS] -- COMMAND
|
8
11
|
|
9
12
|
FLAGS:
|
10
|
-
END
|
13
|
+
END
|
11
14
|
|
12
|
-
|
13
|
-
|
14
|
-
o.version = Vernier::VERSION
|
15
|
+
OptionParser.new(banner) do |o|
|
16
|
+
o.version = Vernier::VERSION
|
15
17
|
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
18
|
+
o.on('--output [FILENAME]', String, "output filename") do |s|
|
19
|
+
options[:output] = s
|
20
|
+
end
|
21
|
+
o.on('--interval [MICROSECONDS]', Integer, "sampling interval (default 500)") do |i|
|
22
|
+
options[:interval] = i
|
23
|
+
end
|
24
|
+
o.on('--allocation_sample_rate [ALLOCATIONS]', Integer, "allocation sampling interval (default 0 disabled)") do |i|
|
25
|
+
options[:allocation_sample_rate] = i
|
26
|
+
end
|
27
|
+
o.on('--signal [NAME]', String, "specify a signal to start and stop the profiler") do |s|
|
28
|
+
options[:signal] = s
|
29
|
+
end
|
30
|
+
o.on('--start-paused', "don't automatically start the profiler") do
|
31
|
+
options[:start_paused] = true
|
32
|
+
end
|
33
|
+
o.on('--hooks [HOOKS]', String, "Enable instrumentation hooks. Currently supported: rails") do |s|
|
34
|
+
options[:hooks] = s
|
35
|
+
end
|
36
|
+
end
|
37
|
+
end
|
38
|
+
|
39
|
+
def self.view(options)
|
40
|
+
banner = <<-END
|
41
|
+
Usage: vernier view [FLAGS] FILENAME
|
42
|
+
|
43
|
+
FLAGS:
|
44
|
+
END
|
45
|
+
|
46
|
+
OptionParser.new(banner) do |o|
|
47
|
+
o.on('--top [COUNT]', Integer, "number of frames to show (default 20)") do |i|
|
48
|
+
options[:top] = i
|
49
|
+
end
|
50
|
+
end
|
51
|
+
end
|
52
|
+
|
53
|
+
def self.inverted_tree(top, file)
|
54
|
+
# Print the inverted tree from a Vernier profile
|
55
|
+
require "json"
|
56
|
+
|
57
|
+
is_gzip = File.binread(file, 2) == "\x1F\x8B".b # check for gzip header
|
58
|
+
|
59
|
+
json = if is_gzip
|
60
|
+
require "zlib"
|
61
|
+
Zlib::GzipReader.open(file) { |gz| gz.read }
|
62
|
+
else
|
63
|
+
File.read file
|
64
|
+
end
|
65
|
+
|
66
|
+
info = JSON.load json
|
67
|
+
|
68
|
+
main = info["threads"].find { |thread| thread["isMainThread"] }
|
69
|
+
|
70
|
+
weight_by_frame = Hash.new(0)
|
71
|
+
|
72
|
+
stack_frames = main["stackTable"]["frame"]
|
73
|
+
frame_table = main["frameTable"]["func"]
|
74
|
+
func_table = main["funcTable"]["name"]
|
75
|
+
string_array = main["stringArray"]
|
76
|
+
|
77
|
+
main["samples"]["stack"].zip(main["samples"]["weight"]).each do |stack, weight|
|
78
|
+
top_frame_index = stack_frames[stack]
|
79
|
+
func_index = frame_table[top_frame_index]
|
80
|
+
string_index = func_table[func_index]
|
81
|
+
str = string_array[string_index]
|
82
|
+
weight_by_frame[str] += weight
|
83
|
+
end
|
84
|
+
|
85
|
+
total = weight_by_frame.values.inject :+
|
86
|
+
|
87
|
+
header = ["Samples", "%", ""]
|
88
|
+
widths = header.map(&:bytesize)
|
89
|
+
|
90
|
+
columns = weight_by_frame.sort_by { |k,v| v }.reverse.first(top).map { |k,v|
|
91
|
+
entry = [v.to_s, ((v / total.to_f) * 100).round(1).to_s, k]
|
92
|
+
entry.each_with_index { |str, i| widths[i] = str.bytesize if widths[i] < str.bytesize }
|
93
|
+
entry
|
94
|
+
}
|
95
|
+
|
96
|
+
print_separator widths
|
97
|
+
print_row header, widths
|
98
|
+
print_separator widths
|
99
|
+
columns.each { print_row(_1, widths) }
|
100
|
+
print_separator widths
|
101
|
+
end
|
102
|
+
|
103
|
+
def self.print_row(list, widths)
|
104
|
+
puts("|" + list.map.with_index { |str, i| " " + str.ljust(widths[i] + 1) }.join("|") + "|")
|
105
|
+
end
|
106
|
+
|
107
|
+
def self.print_separator(widths)
|
108
|
+
puts("+" + widths.map { |i| "-" * (i + 2) }.join("+") + "+")
|
109
|
+
end
|
33
110
|
end
|
34
111
|
end
|
35
112
|
|
36
|
-
|
37
|
-
|
38
|
-
|
113
|
+
options = {}
|
114
|
+
run = Vernier::CLI.run(options)
|
115
|
+
view = Vernier::CLI.view(options)
|
39
116
|
|
40
|
-
|
41
|
-
|
42
|
-
|
43
|
-
|
44
|
-
vernier_path = File.expand_path('../lib', __dir__)
|
45
|
-
env['RUBYOPT'] = "-I #{vernier_path} -r vernier/autorun #{ENV['RUBYOPT']}"
|
117
|
+
case ARGV.shift
|
118
|
+
when "run"
|
119
|
+
run.parse!
|
120
|
+
run.abort(run.help) if ARGV.empty?
|
46
121
|
|
47
|
-
|
122
|
+
env = {}
|
123
|
+
options.each do |k, v|
|
124
|
+
env["VERNIER_#{k.to_s.upcase}"] = v.to_s
|
125
|
+
end
|
126
|
+
vernier_path = File.expand_path('../lib', __dir__)
|
127
|
+
env['RUBYOPT'] = "-I #{vernier_path} -r vernier/autorun #{ENV['RUBYOPT']}"
|
128
|
+
|
129
|
+
Kernel.exec(env, *ARGV)
|
130
|
+
when "view"
|
131
|
+
view.parse!
|
132
|
+
view.abort(view.help) if ARGV.empty?
|
133
|
+
Vernier::CLI.inverted_tree(options[:top] || 20, ARGV.shift)
|
134
|
+
else
|
135
|
+
run.abort(run.help + "\n" + view.help)
|
136
|
+
end
|
data/ext/vernier/vernier.cc
CHANGED
@@ -1114,7 +1114,11 @@ class Thread {
|
|
1114
1114
|
sample.sample();
|
1115
1115
|
|
1116
1116
|
int stack_idx = translator.translate(frame_list, sample);
|
1117
|
-
|
1117
|
+
if (stack_idx >= 0) {
|
1118
|
+
allocation_samples.record_sample(stack_idx, TimeStamp::Now(), 1);
|
1119
|
+
} else {
|
1120
|
+
// TODO: should we log an empty frame?
|
1121
|
+
}
|
1118
1122
|
}
|
1119
1123
|
|
1120
1124
|
void set_state(State new_state) {
|
data/lib/vernier/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: vernier
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.1
|
4
|
+
version: 1.2.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- John Hawthorn
|
8
|
-
autorequire:
|
8
|
+
autorequire:
|
9
9
|
bindir: exe
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-
|
11
|
+
date: 2024-09-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: activesupport
|
@@ -102,7 +102,7 @@ metadata:
|
|
102
102
|
homepage_uri: https://github.com/jhawthorn/vernier
|
103
103
|
source_code_uri: https://github.com/jhawthorn/vernier
|
104
104
|
changelog_uri: https://github.com/jhawthorn/vernier
|
105
|
-
post_install_message:
|
105
|
+
post_install_message:
|
106
106
|
rdoc_options: []
|
107
107
|
require_paths:
|
108
108
|
- lib
|
@@ -117,8 +117,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
117
117
|
- !ruby/object:Gem::Version
|
118
118
|
version: '0'
|
119
119
|
requirements: []
|
120
|
-
rubygems_version: 3.5.
|
121
|
-
signing_key:
|
120
|
+
rubygems_version: 3.5.16
|
121
|
+
signing_key:
|
122
122
|
specification_version: 4
|
123
123
|
summary: A next generation CRuby profiler
|
124
124
|
test_files: []
|