Refactor dashboard codebase to improve modularity (#6330)

* Refactor dashboard codebase to improve modularity

* Simplify feature interface

* Use arrow notation in makeFeature argument types

* Use separate components for node and worker features rather than a single conditionally-rendered component

* Add comments about Ray worker process titles

* Add comments to non-obvious fields in node info API response
This commit is contained in:
Mitchell Stern
2019-12-02 14:05:40 -05:00
committed by Simon Mo
parent 69dd5c9319
commit 43d20fff62
25 changed files with 857 additions and 568 deletions
+1 -1
View File
@@ -49,7 +49,7 @@ def jsonify_asdict(o):
def is_worker(cmdline):
return cmdline and cmdline[0].startswith("ray_")
return cmdline and cmdline[0].startswith("ray::")
def to_posix_time(dt):