diff --git a/python/ray/dashboard/modules/metrics/dashboards/data_dashboard_panels.py b/python/ray/dashboard/modules/metrics/dashboards/data_dashboard_panels.py index 397096053ade..228537bbcdb4 100644 --- a/python/ray/dashboard/modules/metrics/dashboards/data_dashboard_panels.py +++ b/python/ray/dashboard/modules/metrics/dashboards/data_dashboard_panels.py @@ -116,7 +116,7 @@ id=7, title="Bytes Output / Second", description="Bytes output per second by dataset operators.", - unit="bytes/sec(SI)", + unit="Bps", targets=[ Target( expr="sum(rate(ray_data_output_bytes{{{global_filters}}}[1m])) by (dataset, operator)", @@ -159,7 +159,7 @@ id=18, title="Input Bytes Received by Operator / Second", description="Byte size of input blocks received by operator per second.", - unit="bytes/sec(SI)", + unit="Bps", targets=[ Target( expr="sum(rate(ray_data_bytes_inputs_received{{{global_filters}}}[1m])) by (dataset, operator)", @@ -191,7 +191,7 @@ description=( "Byte size of input blocks that operator's tasks have finished processing per second." ), - unit="bytes/sec(SI)", + unit="Bps", targets=[ Target( expr="sum(rate(ray_data_bytes_task_inputs_processed{{{global_filters}}}[1m])) by (dataset, operator)", @@ -205,7 +205,7 @@ id=21, title="Input Bytes Submitted to Tasks / Second", description="Byte size of input blocks passed to submitted tasks per second.", - unit="bytes/sec(SI)", + unit="Bps", targets=[ Target( expr="sum(rate(ray_data_bytes_inputs_of_submitted_tasks{{{global_filters}}}[1m])) by (dataset, operator)", @@ -233,7 +233,7 @@ id=23, title="Bytes Generated by Tasks / Second", description="Byte size of output blocks generated by tasks per second.", - unit="bytes/sec(SI)", + unit="Bps", targets=[ Target( expr="sum(rate(ray_data_bytes_task_outputs_generated{{{global_filters}}}[1m])) by (dataset, operator)", @@ -277,7 +277,7 @@ description=( "Byte size of output blocks taken by downstream operators per second." ), - unit="bytes/sec(SI)", + unit="Bps", targets=[ Target( expr="sum(rate(ray_data_bytes_outputs_taken{{{global_filters}}}[1m])) by (dataset, operator)",