BreadcrumbList bc = new BreadcrumbList();
bc.addCrumb("System", routes.SystemController.index(0));
bc.addCrumb("Nodes", routes.NodesController.nodes());
bc.addCrumb(node.getShortNodeId(), routes.NodesController.node(node.getNodeId()));
bc.addCrumb("Thread dump", routes.NodesController.threadDump(nodeId));
return ok(views.html.system.threaddump.render(currentUser(), bc, node, node.getThreadDump()));
} catch (IOException e) {
return status(504, views.html.errors.error.render(ApiClient.ERROR_MSG_IO, e, request()));
} catch (APIException e) {