Skip to content

Commit

Permalink
add fragment-level aggregated metrics
Browse files Browse the repository at this point in the history
  • Loading branch information
fuyufjh committed Nov 2, 2023
1 parent 1b4081d commit b6743d6
Show file tree
Hide file tree
Showing 4 changed files with 161 additions and 62 deletions.
2 changes: 1 addition & 1 deletion docker/dashboards/risingwave-dev-dashboard.json

Large diffs are not rendered by default.

6 changes: 6 additions & 0 deletions grafana/common.py
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,12 @@ def target(self, expr, legendFormat, hide=False):
datasource=self.datasource,
hide=hide)

def target_hidden(self, expr, legendFormat):
return Target(expr=expr,
legendFormat=legendFormat,
datasource=self.datasource,
hide=True)

def table_target(self, expr, hide=False):
return Target(expr=expr,
datasource=self.datasource,
Expand Down
Loading

0 comments on commit b6743d6

Please sign in to comment.