File tree Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Expand file tree Collapse file tree 3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -87,7 +87,7 @@ let param =
87
87
no_arg
88
88
~doc:
89
89
" Use stacktrace sampling instead of Intel PT. If Intel PT is not available, \
90
- magic-trace will default to this."
90
+ magic-trace will default to this. For more info: https://magic.trace.org/w/b "
91
91
in
92
92
select_collection_mode ~extra_events ~use_sampling
93
93
;;
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ let param =
26
26
" When magic-trace is running with sampling collection mode, this sets how it \
27
27
should reconstruct callstacks. The options are [lbr]/[lbr-no-stitch]/[dwarf]/[fp] \
28
28
or a sexp. Will default to [lbr] is available and [dwarf] otherwise. For more \
29
- info: https://magic-trace.org/w/c "
29
+ info: https://magic-trace.org/w/b "
30
30
;;
31
31
32
32
let to_perf_record_args = function
Original file line number Diff line number Diff line change @@ -295,13 +295,13 @@ module Recording = struct
295
295
| None , false ->
296
296
Core. eprintf
297
297
" Warning: [-callgraph-mode] is defaulting to [Dwarf] which may have high \
298
- overhead and decoding time. For more info: https://magic-trace.org/w/c \n " ;
298
+ overhead and decoding time. For more info: https://magic-trace.org/w/b \n " ;
299
299
return (Some Callgraph_mode. Dwarf )
300
300
| None , true ->
301
301
Core. eprintf
302
302
" Warning: [-callgraph-mode] is defaulting to [Last_branch_record] which may \
303
303
lose data and has limited callstack depth. For more info: \
304
- https://magic-trace.org/w/c \n " ;
304
+ https://magic-trace.org/w/b \n " ;
305
305
return (Some (Callgraph_mode. Last_branch_record { stitched = true }))
306
306
| Some (Last_branch_record _ ), false ->
307
307
Deferred.Or_error. error_string
You can’t perform that action at this time.
0 commit comments