source: trunk/src/allmydata/web/storage_status.xhtml

Last change on this file was 9c7357b, checked in by Sajith Sasidharan <sajith@…>, at 2020-04-17T19:25:42Z

Remove an extraneous directive

t:data is not really a Twisted template directive. Added my
mistake, removing now.

  • Property mode set to 100644
File size: 2.8 KB
Line 
1<html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1">
2  <head>
3    <title>Tahoe-LAFS - Storage Server Status</title>
4    <link href="/tahoe.css" rel="stylesheet" type="text/css"/>
5    <link href="/icon.png" rel="shortcut icon" />
6    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7  </head>
8<body>
9
10<div t:render="storage_running">
11
12  <h1>Storage Server Status</h1>
13
14  <table class="storage_status" t:render="storage_stats">
15    <tr><td>Total disk space:</td>
16        <td><t:slot name="disk_total_abbrev" /></td>
17        <td>(<t:slot name="disk_total" />)</td>
18        <td />
19      </tr>
20    <tr><td>Disk space used:</td>
21        <td>- <t:slot name="disk_used_abbrev" /></td>
22        <td>(<t:slot name="disk_used" />)</td>
23        <td />
24      </tr>
25    <tr><td />
26        <td>======</td>
27        <td />
28        <td />
29      </tr>
30    <tr><td>Disk space free (root):</td>
31        <td><t:slot name="disk_free_for_root_abbrev"/></td>
32        <td>(<t:slot name="disk_free_for_root"/>)</td>
33        <td>[see 1]</td>
34        </tr>
35    <tr><td>Disk space free (non-root):</td>
36        <td><t:slot name="disk_free_for_nonroot_abbrev" /></td>
37        <td>(<t:slot name="disk_free_for_nonroot" />)</td>
38        <td>[see 2]</td>
39        </tr>
40    <tr><td>Reserved space:</td>
41        <td>- <t:slot name="reserved_space_abbrev" /></td>
42        <td>(<t:slot name="reserved_space" />)</td>
43        <td />
44      </tr>
45    <tr><td />
46        <td>======</td>
47        <td />
48        <td />
49      </tr>
50    <tr><td>Space Available to Tahoe:</td>
51        <td><t:slot name="disk_avail_abbrev" /></td>
52        <td>(<t:slot name="disk_avail" />)</td>
53        <td />
54      </tr>
55  </table>
56
57  <ul>
58    <li>Server Nickname: <span class="nickname mine"><t:transparent t:render="nickname" /></span></li>
59    <li>Server Nodeid: <span class="nodeid mine data-chars"> <t:transparent t:render="nodeid" /></span></li>
60    <li>Accepting new shares:
61      <span t:render="accepting_immutable_shares" /></li>
62    <li>Total buckets:
63       <span t:render="last_complete_bucket_count" />
64       (the number of files and directories for which this server is holding
65        a share)
66      <ul>
67        <li><span t:render="count_crawler_status" /></li>
68      </ul>
69    </li>
70  </ul>
71
72  <h2>Lease Expiration Crawler</h2>
73
74  <ul>
75    <li>Expiration <span t:render="lease_expiration_enabled" /></li>
76    <li t:render="lease_expiration_mode" />
77    <li t:render="lease_current_cycle_progress" />
78    <li t:render="lease_current_cycle_results" />
79    <li t:render="lease_last_cycle_results" />
80  </ul>
81
82  <hr />
83  <p>[1]: Some of this space may be reserved for the superuser.</p>
84  <p>[2]: This reports the space available to non-root users, including the
85  Tahoe-LAFS node.</p>
86
87  <p>See this page <a href="?t=json">in JSON</a></p>
88</div>
89
90</body>
91</html>
Note: See TracBrowser for help on using the repository browser.