Skip to content
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

[Serve] Add Multiplex metrics into dashboard #37722

Merged
merged 16 commits into from
Aug 4, 2023
Prev Previous commit
Next Next commit
Update
Signed-off-by: Sihan Wang <[email protected]>
  • Loading branch information
sihanwang41 committed Jul 28, 2023
commit 7cba9f79a891e827653d69c5d24531740a89a1e0
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@
unit="ms",
targets=[
Target(
expr='histogram_quantile(0.99, sum(rate(serve_multiplexed_model_load_latency_ms_bucket{{{global_filters}}}[5m])) by (deployment, replica, le))',
expr="histogram_quantile(0.99, sum(rate(serve_multiplexed_model_load_latency_ms_bucket{{{global_filters}}}[5m])) by (deployment, replica, le))",
legend="{{replica}}",
),
],
Expand All @@ -231,7 +231,7 @@
unit="ms",
targets=[
Target(
expr='histogram_quantile(0.99, sum(rate(serve_multiplexed_model_unload_latency_ms_bucket{{{global_filters}}}[5m])) by (deployment, replica, le))',
expr="histogram_quantile(0.99, sum(rate(serve_multiplexed_model_unload_latency_ms_bucket{{{global_filters}}}[5m])) by (deployment, replica, le))",
legend="{{replica}}",
),
],
Expand Down