From: "Steven Rostedt (Google)" <rostedt@xxxxxxxxxxx> When in streaming mode, set the default to half a second instead of 1 millisecond (which should be changed for record as well). Signed-off-by: Steven Rostedt (Google) <rostedt@xxxxxxxxxxx> --- tracecmd/trace-record.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tracecmd/trace-record.c b/tracecmd/trace-record.c index 03f990e3b2d1..9eb10cd8ccdf 100644 --- a/tracecmd/trace-record.c +++ b/tracecmd/trace-record.c @@ -7161,11 +7161,15 @@ void trace_stream(int argc, char **argv) { struct common_record_context ctx; + /* Default sleep time is half a second for streaming */ + sleep_time = 500000; + parse_record_options(argc, argv, CMD_stream, &ctx); record_trace_command(argc, argv, &ctx); exit(0); } + void trace_profile(int argc, char **argv) { struct common_record_context ctx; -- 2.35.1