Updated Branches: refs/heads/master fefe85784 -> 8901ad697
Moved the graphs around. Project: http://git-wip-us.apache.org/repos/asf/incubator-blur/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-blur/commit/8901ad69 Tree: http://git-wip-us.apache.org/repos/asf/incubator-blur/tree/8901ad69 Diff: http://git-wip-us.apache.org/repos/asf/incubator-blur/diff/8901ad69 Branch: refs/heads/master Commit: 8901ad697098c72effb0339b0a8198c1a498bae8 Parents: fefe857 Author: Aaron McCurry <[email protected]> Authored: Tue Sep 11 08:59:20 2012 -0400 Committer: Aaron McCurry <[email protected]> Committed: Tue Sep 11 08:59:20 2012 -0400 ---------------------------------------------------------------------- src/blur-gui/src/main/webapp/livemetrics.jsp | 31 +++++++++++++++----- 1 files changed, 23 insertions(+), 8 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-blur/blob/8901ad69/src/blur-gui/src/main/webapp/livemetrics.jsp ---------------------------------------------------------------------- diff --git a/src/blur-gui/src/main/webapp/livemetrics.jsp b/src/blur-gui/src/main/webapp/livemetrics.jsp index 1f437dd..6c5d11e 100644 --- a/src/blur-gui/src/main/webapp/livemetrics.jsp +++ b/src/blur-gui/src/main/webapp/livemetrics.jsp @@ -101,14 +101,29 @@ drawGraphs("/livemetrics", margin, width, height) <h1> Blur <%=System.getProperty("blur.gui.mode") %> '<%=hostName%>' </h1> -<h3>JVM Heap / Committed Heap</h3> -<div id="jvm"></div> -<h3>Blur Queries / Fetches / Mutates Requests</h3> -<div id="blur_calls"></div> -<h3>Blur Fetches / Mutates Record Rates</h3> -<div id="blur_recordRates"></div> -<h3>System Load</h3> -<div id="system"></div> +<table> + <tr> + <td> + <h3>Blur Queries / Fetches / Mutates Requests</h3> + <div id="blur_calls"></div> + </td> + <td> + <h3>Blur Fetches / Mutates Record Rates</h3> + <div id="blur_recordRates"></div> + </td> + </tr> + <tr> + <td> + <h3>JVM Heap / Committed Heap</h3> + <div id="jvm"></div> + </td> + <td> + <h3>System Load</h3> + <div id="system"></div> + </td> + </tr> +</table> + <%@ include file="footer.jsp" %> </body> </html> \ No newline at end of file
