Commit 85ec43c
authored
[data.dashboard] Fix broken Ray Data per node metrics because of unsupported operator filter (#57970)
## Description
The per node metrics at OSS Ray Data dashboard are not displayed as
expected.
Because of this code change #55495, the following three metrics were
added a filter for `operator`, which is [not
supported](https://github.com/ray-project/ray/blob/e51f8039bc6992d37834bcff109a3d340e78fcde/python/ray/data/_internal/stats.py#L448)
by per node metrics, and causes empty result.
ray_data_num_tasks_finished_per_node
ray_data_bytes_outputs_of_finished_tasks_per_node
ray_data_blocks_outputs_of_finished_tasks_per_node
Signed-off-by: cong.qian <cong.qian@anyscale.com>1 parent 092550b commit 85ec43c
File tree
1 file changed
+3
-3
lines changed- python/ray/dashboard/modules/metrics/dashboards
1 file changed
+3
-3
lines changedLines changed: 3 additions & 3 deletions
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
330 | 330 | | |
331 | 331 | | |
332 | 332 | | |
333 | | - | |
| 333 | + | |
334 | 334 | | |
335 | 335 | | |
336 | 336 | | |
| |||
347 | 347 | | |
348 | 348 | | |
349 | 349 | | |
350 | | - | |
| 350 | + | |
351 | 351 | | |
352 | 352 | | |
353 | 353 | | |
| |||
438 | 438 | | |
439 | 439 | | |
440 | 440 | | |
441 | | - | |
| 441 | + | |
442 | 442 | | |
443 | 443 | | |
444 | 444 | | |
| |||
0 commit comments