Skip to content

Commit

Permalink
Fix units in processors profiling table (bytes_per_sec -> MB_per_sec)
Browse files Browse the repository at this point in the history
  • Loading branch information
azat committed May 26, 2024
1 parent 39a3c3d commit ef3974d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/view/processes_view.rs
Original file line number Diff line number Diff line change
Expand Up @@ -629,7 +629,7 @@ impl ProcessesView {
"sum(output_wait_elapsed_us)/1e6 output_wait_sec",
"sum(input_rows) rows",
"sum(input_bytes) bytes",
"round(bytes/elapsed_sec,2)/1e6 bytes_per_sec",
"round(bytes/elapsed_sec,2)/1e6 MB_per_sec",
];
let sort_by = "elapsed_sec";
let table = "system.processors_profile_log";
Expand Down

0 comments on commit ef3974d

Please sign in to comment.