-
Notifications
You must be signed in to change notification settings - Fork 65
apollo_dashboard: update server-side infra panels #10125
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
apollo_dashboard: update server-side infra panels #10125
Conversation
3cb10ef to
a66685b
Compare
matanl-starkware
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@matanl-starkware reviewed 1 of 3 files at r1, 3 of 3 files at r3, all commit messages.
Reviewable status: all files reviewed, 4 unresolved discussions (waiting on @Itay-Tsabary-Starkware)
crates/apollo_dashboard/src/infra_panels.rs line 81 at r3 (raw file):
let received_msgs_panel = Panel::new( "Local request receiving rate", format!("Increase of received local requests [{INFRA_INCREASE_DURATION}]"),
Consistency with other panels
Suggestion:
({INFRA_INCREASE_DURATION} window)crates/apollo_dashboard/src/infra_panels.rs line 85 at r3 (raw file):
PanelType::TimeSeries, ); let processed_msgs_panel = Panel::new(
Consider using Panel::ratio_time_series for processed/received
Code quote:
Panel::newcrates/apollo_dashboard/src/infra_panels.rs line 112 at r3 (raw file):
PanelType::TimeSeries, ); let valid_received_msgs_panel = Panel::new(
Consider using Panel::ratio_time_series for valid/total
Code quote:
Panel::newcrates/apollo_dashboard/src/infra_panels.rs line 118 at r3 (raw file):
PanelType::TimeSeries, ); let processed_msgs_panel = Panel::new(
Consider using Panel::ratio_time_series for processed/valid
Code quote:
Panel::newa66685b to
ee097e3
Compare
Itay-Tsabary-Starkware
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Reviewable status: all files reviewed, 4 unresolved discussions (waiting on @matanl-starkware)
crates/apollo_dashboard/src/infra_panels.rs line 81 at r3 (raw file):
Previously, matanl-starkware (Matan Lior) wrote…
Consistency with other panels
Done.
crates/apollo_dashboard/src/infra_panels.rs line 85 at r3 (raw file):
Previously, matanl-starkware (Matan Lior) wrote…
Consider using Panel::ratio_time_series for processed/received
What ratio do you suggest displaying here? I want to show the processing rate.
crates/apollo_dashboard/src/infra_panels.rs line 112 at r3 (raw file):
Previously, matanl-starkware (Matan Lior) wrote…
Consider using Panel::ratio_time_series for valid/total
I want rate/increase...
crates/apollo_dashboard/src/infra_panels.rs line 118 at r3 (raw file):
Previously, matanl-starkware (Matan Lior) wrote…
Consider using Panel::ratio_time_series for processed/valid
I want rate/increase...
matanl-starkware
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@matanl-starkware reviewed 1 of 2 files at r4, all commit messages.
Reviewable status: 2 of 3 files reviewed, 4 unresolved discussions (waiting on @Itay-Tsabary-Starkware)
crates/apollo_dashboard/src/infra_panels.rs line 85 at r3 (raw file):
Previously, Itay-Tsabary-Starkware wrote…
What ratio do you suggest displaying here? I want to show the processing rate.
ratio increase(processed)/increase(received)
This is what ratio_time_series gives you
(checked it, and the ratio varies around 100% as I would expect).
matanl-starkware
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@matanl-starkware reviewed 1 of 2 files at r4.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @Itay-Tsabary-Starkware)
crates/apollo_dashboard/src/infra_panels.rs line 85 at r3 (raw file):
Previously, matanl-starkware (Matan Lior) wrote…
ratio increase(processed)/increase(received)
This is whatratio_time_seriesgives you
(checked it, and the ratio varies around 100% as I would expect).
Too many panels IMO.
Need to reconsider how to arrange the "Infra" rows.
Itay-Tsabary-Starkware
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@Itay-Tsabary-Starkware reviewed 1 of 3 files at r3, 2 of 2 files at r4, all commit messages.
Reviewable status: all files reviewed, 1 unresolved discussion (waiting on @matanl-starkware)
crates/apollo_dashboard/src/infra_panels.rs line 85 at r3 (raw file):
Previously, matanl-starkware (Matan Lior) wrote…
ratio increase(processed)/increase(received)
This is whatratio_time_seriesgives you
(checked it, and the ratio varies around 100% as I would expect).
I want to show the processing rate.

No description provided.