16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
|
# File 'lib/ruby-prof/profile/exclude_common_methods.rb', line 16
def apply!
exclude_methods Kernel, [
:dup,
:initialize_dup,
:tap,
:send,
:public_send,
]
exclude_methods BasicObject, :"!="
exclude_methods Method, :"[]"
exclude_methods Module, :new
exclude_methods Class, :new
exclude_methods Proc, :call, :yield
exclude_methods Range, :each
exclude_methods Integer, :times
exclude_methods String, [
:sub,
:sub!,
:gsub,
:gsub!,
]
exclude_enumerable Enumerable
exclude_enumerable Enumerator
exclude_enumerable Array, [
:each_index,
:map!,
:select!,
:reject!,
:collect!,
:sort!,
:sort_by!,
:index,
:delete_if,
:keep_if,
:drop_while,
:uniq,
:uniq!,
:"==",
:eql?,
:hash,
:to_json,
:as_json,
:encode_json,
]
exclude_enumerable Hash, [
:dup,
:initialize_dup,
:fetch,
:"[]",
:"[]=",
:each_key,
:each_value,
:each_pair,
:map!,
:select!,
:reject!,
:collect!,
:delete_if,
:keep_if,
:slice,
:slice!,
:except,
:except!,
:"==",
:eql?,
:hash,
:to_json,
:as_json,
:encode_json,
]
exclude_enumerable Set, [
:map!,
:select!,
:reject!,
:collect!,
:classify,
:delete_if,
:keep_if,
:divide,
:"==",
:eql?,
:hash,
:to_json,
:as_json,
:encode_json,
]
exclude_singleton_methods GC, [
:start
]
if defined?(Unicorn)
exclude_methods Unicorn::HttpServer, :process_client
end
if defined?(Unicorn::OobGC)
exclude_methods Unicorn::OobGC, :process_client
end
if defined?(NewRelic)
exclude_methods NewRelic::Agent::Instrumentation::MiddlewareTracing, [
:call
]
exclude_methods NewRelic::Agent::MethodTracerHelpers, [
:trace_execution_scoped,
:log_errors,
]
exclude_singleton_methods NewRelic::Agent::MethodTracerHelpers, [
:trace_execution_scoped,
:log_errors,
]
exclude_methods NewRelic::Agent::MethodTracer, [
:trace_execution_scoped,
:trace_execution_unscoped,
]
end
if defined?(Mustache)
exclude_methods Mustache::Context, [
:fetch
]
end
end
|