This file is indexed.

/usr/share/ekg-0.3.1.0/assets/index.html is in libghc-ekg-data 0.3.1.0-1.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
<!DOCTYPE html>
<html>
  <head>
    <meta charset="utf-8">
    <link rel="stylesheet" href="bootstrap-1.4.0.min.css">
    <link rel="stylesheet" href="monitor.css" type="text/css">
    <script type="text/javascript" src="jquery-1.6.4.min.js"></script>
    <script type="text/javascript" src="jquery.flot.min.js"></script>
    <title>ekg-0.3.0.1</title>
  </head>
  <body>
    <div class="topbar">
      <div class="topbar-inner">
        <div class="container-fluid">
          <span class="brand">ekg-0.3.0.1</span>
          <p class="pull-right">Polling interval:
            <select id="updateInterval" class="small">
              <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" class="btn">Pause UI</button>
          </p>
        </div>
      </div>
    </div>

    <div class="container">
      <div class="row">
        <div class="alert-message error fade in hide" data-alert="alert">
          <p>Lost connection to server.</p>
        </div>
      </div>

      <div class="row">
        <div id="plots" class="span11">
          <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="span5">
          <h3>GC and memory statistics</h3>
          <table class="condensed-table">
            <thead>
              <tr>
                <th>Statistic</th>
                <th>Value</th>
              </tr>
            </thead>
            <tbody>
              <tr>
                <td>Maximum residency</td>
                <td id="max-bytes-used" class="span3 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" class="condensed-table">
            <thead>
              <tr>
                <th class="span4">Name</th>
                <th class="span1">Value</th>
              </tr>
            </thead>
            <tbody>
            </tbody>
          </table>

          <h3>Gauges</h3>
          <table id="gauge-table" class="condensed-table">
            <thead>
              <tr>
                <th class="span4">Name</th>
                <th class="span1">Value</th>
              </tr>
            </thead>
            <tbody>
            </tbody>
          </table>

          <h3>Labels</h3>
          <table id="label-table" class="condensed-table">
            <thead>
              <tr>
                <th class="span4">Name</th>
                <th class="span1">Value</th>
              </tr>
            </thead>
            <tbody>
            </tbody>
          </table>

        </div>
      </div>
    </div>

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