Skip to content

Commit

Permalink
src: webpage: src: Add missing Avg Messages/s stats
Browse files Browse the repository at this point in the history
  • Loading branch information
joaoantoniocardoso committed Nov 12, 2024
1 parent e927b82 commit 68587a7
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/webpage/src/app.rs
Original file line number Diff line number Diff line change
Expand Up @@ -686,6 +686,11 @@ fn add_label_and_plot_all_stats(
&message_stats.messages.messages_per_second,
"Messages/s",
);
add_row_with_graph(
body,
&message_stats.messages.average_messages_per_second,
"Avg Messages/s",
);

// Bytes stats
add_row_with_graph(body, &message_stats.bytes.total_bytes, "Bytes");
Expand Down

0 comments on commit 68587a7

Please sign in to comment.