Skip to content

Commit 710a5ed

Browse files
authored
Add option to ignore garbage collection frames with flamegraphs (#599)
* Add flamegraph_ignore_gc config * Add flamegraph_ignore_gc to query params
1 parent f239b6e commit 710a5ed

File tree

5 files changed

+15
-2
lines changed

5 files changed

+15
-2
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -431,6 +431,7 @@ start_hidden | `false`
431431
backtrace_threshold_ms | `0` | Minimum SQL query elapsed time before a backtrace is recorded.
432432
flamegraph_sample_rate | `0.5` | How often to capture stack traces for flamegraphs in milliseconds.
433433
flamegraph_mode | `:wall` | The [StackProf mode](https://github.com/tmm1/stackprof#all-options) to pass to `StackProf.run`.
434+
flamegraph_ignore_gc | `false` | Whether to ignore garbage collection frames in flamegraphs.
434435
base_url_path | `'/mini-profiler-resources/'` | Path for assets; added as a prefix when naming assets and sought when responding to requests.
435436
cookie_path | `'/'` | Set-Cookie header path for profile cookie
436437
collapse_results | `true` | If multiple timing results exist in a single page, collapse them till clicked.

lib/mini_profiler.rb

+10-1
Original file line numberDiff line numberDiff line change
@@ -302,11 +302,20 @@ def call(env)
302302
mode = config.flamegraph_mode
303303
end
304304

305+
ignore_gc_match_data = action_parameters(env)['flamegraph_ignore_gc']
306+
307+
if ignore_gc_match_data
308+
ignore_gc = ignore_gc_match_data == 'true'
309+
else
310+
ignore_gc = config.flamegraph_ignore_gc
311+
end
312+
305313
flamegraph = StackProf.run(
306314
mode: mode,
307315
raw: true,
308316
aggregate: false,
309-
interval: (sample_rate * 1000).to_i
317+
interval: (sample_rate * 1000).to_i,
318+
ignore_gc: ignore_gc
310319
) do
311320
status, headers, body = @app.call(env)
312321
end

lib/mini_profiler/config.rb

+2-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ def self.default
3030
@backtrace_threshold_ms = 0
3131
@flamegraph_sample_rate = 0.5
3232
@flamegraph_mode = :wall
33+
@flamegraph_ignore_gc = false
3334
@storage_failure = Proc.new do |exception|
3435
if @logger
3536
@logger.warn("MiniProfiler storage failure: #{exception.message}")
@@ -76,7 +77,7 @@ def self.default
7677
:storage_options, :user_provider, :enable_advanced_debugging_tools,
7778
:skip_sql_param_names, :suppress_encoding, :max_sql_param_length,
7879
:content_security_policy_nonce, :enable_hotwire_turbo_drive_support,
79-
:flamegraph_mode, :profile_parameter
80+
:flamegraph_mode, :flamegraph_ignore_gc, :profile_parameter
8081

8182
# ui accessors
8283
attr_accessor :collapse_results, :max_traces_to_show, :position,

lib/mini_profiler/views.rb

+1
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,7 @@ def help(client_settings, env)
161161
#{make_link "async-flamegraph", env} : store flamegraph data for this page and all its AJAX requests. Flamegraph links will be available in the mini-profiler UI (requires the stackprof gem).
162162
#{make_link "flamegraph&flamegraph_sample_rate=1", env}: creates a flamegraph with the specified sample rate (in ms). Overrides value set in config
163163
#{make_link "flamegraph&flamegraph_mode=cpu", env}: creates a flamegraph with the specified mode (one of cpu, wall, object, or custom). Overrides value set in config
164+
#{make_link "flamegraph&flamegraph_ignore_gc=true", env}: ignore garbage collection frames in flamegraphs. Overrides value set in config
164165
#{make_link "flamegraph_embed", env} : a graph representing sampled activity (requires the stackprof gem), embedded resources for use on an intranet.
165166
#{make_link "trace-exceptions", env} : will return all the spots where your application raises exceptions
166167
#{make_link "analyze-memory", env} : will perform basic memory analysis of heap

spec/integration/middleware_spec.rb

+1
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ def app
5656
expect(last_response.body).to include("async-flamegraph")
5757
expect(last_response.body).to include("flamegraph&flamegraph_sample_rate=1")
5858
expect(last_response.body).to include("flamegraph&flamegraph_mode=cpu")
59+
expect(last_response.body).to include("flamegraph&flamegraph_ignore_gc=true")
5960
expect(last_response.body).to include("flamegraph_embed")
6061
expect(last_response.body).to include("trace-exceptions")
6162
expect(last_response.body).to include("analyze-memory")

0 commit comments

Comments
 (0)