packages feed

ekg-0.3.0.0: assets/index.html

<html>
  <head>
    <link rel="stylesheet" href="blueprint/screen.css" type="text/css" media="screen, projection">
    <link rel="stylesheet" href="blueprint/print.css" type="text/css" media="print">
    <!--[if lt IE 8]>
      <link rel="stylesheet" href="blueprint/ie.css" type="text/css" media="screen, projection">
    <![endif]-->
    <link rel="stylesheet" href="monitor.css" type="text/css">
    <script language="javascript" type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
    <script language="javascript" type="text/javascript" src="jquery.flot.min.js"></script>
    <title>ekg-0.3.0.0</title>
  </head>
  <body>
    <div class="bar">
      <div class="update-control">Polling interval:
        <select id="updateInterval">
          <option value="100">100 ms</option>
          <option value="200">200 ms</option>
          <option value="500">500 ms</option>
          <option value="1000" selected="selected">1 s</option>
          <option value="2000">2 s</option>
          <option value="5000">5 s</option>
          <option value="10000">10 s</option>
        </select> |
        <button id="pause-ui">Pause UI</button>
      </div>
      <span class="title">ekg-0.3.0.0</span>
    </div>

    <div class="container">
      <div id="message-box" class="icon-alert span-24" style="display: none;">
        Lost connection to server.
      </div>

      <div id="plots" class="span-16">

        <div id="current-bytes-used-plot" class="plot-container">
          <h3>Current residency</h3>
          <div class="plot"></div>
        </div>

        <div id="allocation-rate-plot" class="plot-container">
          <h3>Allocation rate</h3>
          <div class="plot"></div>
        </div>
        
        <div id="productivity-plot" class="plot-container">
          <h3>Productivity</h3>
          <div class="plot"></div>
        </div>
      </div>

      <div class="span-8 last">
        <h3>GC and memory statistics</h3>
        <table>
          <thead>
            <tr>
              <th class="span-5">Statistic</th>
              <th class="span-3 last">Value</th>
            </tr>
          </thead>
          <tbody>
            <tr>
              <td>Maximum residency</td>
              <td id="max-bytes-used" class="span-3 value">0</td>
            </tr>
            <tr>
              <td>Current residency</td>
              <td id="current-bytes-used" class="value">0</td>
            </tr>
            <tr>
              <td>Maximum slop</td>
              <td id="max-bytes-slop" class="value">0</td>
            </tr>
            <tr>
              <td>Current slop</td>
              <td id="current-bytes-slop" class="value">0</td>
            </tr>
            <tr>
              <td>Productivity (wall clock time)</td>
              <td id="productivity-wall" class="value">0</td>
            </tr>
            <tr>
              <td>Productivity (cpu time)</td>
              <td id="productivity-cpu" class="value">0</td>
            </tr>
            <tr>
              <td>Allocation rate</td>
              <td id="allocation-rate" class="value">0</td>
            </tr>
          </tbody>
        </table>

        <h3>Counters</h3>
        <table id="counter-table">
          <thead>
            <tr>
              <th class="span-5">Name</th>
              <th class="span-3 last">Value</th>
            </tr>
          </thead>
          <tbody>
          </tbody>
        </table>

        <h3>Gauges</h3>
        <table id="gauge-table">
          <thead>
            <tr>
              <th class="span-5">Name</th>
              <th class="span-3 last">Value</th>
            </tr>
          </thead>
          <tbody>
          </tbody>
        </table>
      <div>
    </div>

    <script type="text/javascript" src="monitor.js"></script>
  </body>
</html>