Skip to content

Commit 01d08fe

Browse files
author
Eric Fu
committed
user dashboard
1 parent eba0ba2 commit 01d08fe

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

grafana/risingwave-user-dashboard.dashboard.py

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -73,22 +73,22 @@ def section_overview(panels):
7373
],
7474
),
7575
panels.timeseries_rowsps(
76-
"Aggregated Sink Throughput(rows/s)",
77-
"The figure shows the number of rows output by each sink per second.",
76+
"Sink Throughput(rows/s)",
77+
"The number of rows streamed into each sink per second.",
7878
[
7979
panels.target(
80-
f"sum(rate({metric('stream_executor_row_count', filter=sink_filter)}[$__rate_interval])) by (executor_identity)",
81-
"{{executor_identity}}",
80+
f"sum(rate({metric('stream_sink_input_row_count')}[$__rate_interval])) by (sink_id) * on(sink_id) group_left(sink_name) group({metric('sink_info')}) by (sink_id, sink_name)",
81+
"sink {{sink_id}} {{sink_name}}",
8282
),
8383
],
8484
),
8585
panels.timeseries_rowsps(
86-
"Aggregated Materialized View Throughput(rows/s)",
87-
"The figure shows the number of rows output by each materialized view per second.",
86+
"Materialized View Throughput(rows/s)",
87+
"The figure shows the number of rows written into each materialized view per second.",
8888
[
8989
panels.target(
90-
f"sum(rate({metric('stream_executor_row_count', filter=mv_filter)}[$__rate_interval])) by (executor_identity)",
91-
"{{executor_identity}}",
90+
f"sum(rate({metric('stream_mview_input_row_count')}[$__rate_interval])) by (table_id) * on(table_id) group_left(table_name) group({metric('table_info')}) by (table_id, table_name)",
91+
"mview {{table_id}} {{table_name}}",
9292
),
9393
],
9494
),

0 commit comments

Comments
 (0)