Skip to content

Commit

Permalink
feat(metrics): fragment level streaming metrics (part 2) (#13196)
Browse files Browse the repository at this point in the history
  • Loading branch information
fuyufjh authored Nov 2, 2023
1 parent 2ce7c9f commit da43a9b
Show file tree
Hide file tree
Showing 6 changed files with 179 additions and 99 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 da43a9b

Please sign in to comment.