This file is indexed.

/usr/share/pyshared/allmydata/web/statistics.xhtml is in tahoe-lafs 1.9.2-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
<html xmlns:n="http://nevow.com/ns/nevow/0.1">
  <head>
    <title>Tahoe-LAFS - Stats</title>
    <link href="/tahoe.css" rel="stylesheet" type="text/css"/>
    <link href="/icon.png" rel="shortcut icon" />
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
  </head>
  <body n:data="get_stats">

<h1>Node Statistics</h1>

<h2>General</h2>

<ul>
  <li>Load Average: <span n:render="load_average" /></li>
  <li>Peak Load: <span n:render="peak_load" /></li>
  <li>Files Uploaded (immutable): <span n:render="uploads" /></li>
  <li>Files Downloaded (immutable): <span n:render="downloads" /></li>
  <li>Files Published (mutable): <span n:render="publishes" /></li>
  <li>Files Retrieved (mutable): <span n:render="retrieves" /></li>
</ul>

<h2>Drop-Uploader</h2>

<ul>
  <li>Local Directories Monitored: <span n:render="drop_monitored" /></li>
  <li>Files Uploaded: <span n:render="drop_uploads" /></li>
  <li>File Changes Queued: <span n:render="drop_queued" /></li>
  <li>Failed Uploads: <span n:render="drop_failed" /></li>
</ul>

<h2>Raw Stats:</h2>
<pre n:render="raw" />

<div>Return to the <a href="/">Welcome Page</a></div>

  </body>
</html>