Ray Dashboard Error Logging

Hi guys, as I notice, there is a column called Error in the dashboard. However I don’t see any error being logged there.

Basically, now I’m reading all the logs and trying to filter out errors, which is not good I think

Thanks for your helps

Hey marrocksd,

I think you are right, this feature seems currently broken. If a task raises an error like

import ray
ray.init()
@ray.remote
def f():
    raise Exception()

f.remote()

it should show up in the dashboard. I created an issue here: [dashboard] Errors are not shown · Issue #15238 · ray-project/ray · GitHub

Thanks for your bug report!

1 Like