From 953878364ec5d19b7563f1597f5631558c4b916a Mon Sep 17 00:00:00 2001 From: Eric Liang Date: Wed, 6 Sep 2017 01:41:21 -0700 Subject: [PATCH] [webui] Print out timeline link for full-screen trace viewing (#936) * up * update --- python/ray/experimental/ui.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/python/ray/experimental/ui.py b/python/ray/experimental/ui.py index e27797d9e..d0a2b3702 100644 --- a/python/ray/experimental/ui.py +++ b/python/ray/experimental/ui.py @@ -448,8 +448,10 @@ def task_timeline(): # Display the task trace within the Jupyter notebook clear_output(wait=True) + print( + "To view fullscreen, open chrome://tracing in Google Chrome " + "and load `{}`".format(json_tmp)) display(IFrame(html_file_path, 900, 800)) - print("Displaying {}".format(html_file_path)) path_input.on_click(handle_submit)