You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: grafana/risingwave-user-dashboard.dashboard.py
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -73,22 +73,22 @@ def section_overview(panels):
73
73
],
74
74
),
75
75
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.",
78
78
[
79
79
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)",
"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.",
88
88
[
89
89
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)",
0 commit comments