Skip to content

Commit

Permalink
update unit to use Bps over bytes/sec(SI)
Browse files Browse the repository at this point in the history
Signed-off-by: Matthew Owen <mowen@anyscale.com>
  • Loading branch information
omatthew98 committed Sep 9, 2024
1 parent 0d9e179 commit 51774d5
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)",
Expand Down Expand Up @@ -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)",
Expand Down Expand Up @@ -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)",
Expand All @@ -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)",
Expand Down Expand Up @@ -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)",
Expand Down Expand Up @@ -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)",
Expand Down

0 comments on commit 51774d5

Please sign in to comment.