]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/blob - src/allmydata/web/storage_status.xhtml
GC: add date-cutoff -based expiration, add proposed docs
[tahoe-lafs/tahoe-lafs.git] / src / allmydata / web / storage_status.xhtml
1 <html xmlns:n="http://nevow.com/ns/nevow/0.1">
2   <head>
3     <title>AllMyData - Tahoe - Storage Server Status</title>
4     <link href="/webform_css" rel="stylesheet" type="text/css"/>
5     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
6   </head>
7 <body>
8
9 <div n:render="storage_running">
10
11   <h1>Storage Server Status</h1>
12
13   <table n:data="stats">
14     <tr><td>Total disk space:</td>
15         <td><span n:render="abbrev_space" n:data="disk_total" /></td>
16         <td>(<span n:render="space" n:data="disk_total" />)</td>
17         <td />
18       </tr>
19     <tr><td>Disk space used:</td>
20         <td>- <span n:render="abbrev_space" n:data="disk_used" /></td>
21         <td>(<span n:render="space" n:data="disk_used" />)</td>
22         <td />
23       </tr>
24     <tr><td />
25         <td>======</td>
26         <td />
27         <td />
28       </tr>
29     <tr><td>Disk space free (root):</td>
30         <td><span n:render="abbrev_space" n:data="disk_free_for_root"/></td>
31         <td>(<span n:render="space" n:data="disk_free_for_root"/>)</td>
32         <td>[see 1]</td>
33         </tr>
34     <tr><td>Disk space free (non-root):</td>
35         <td><span n:render="abbrev_space" n:data="disk_free_for_nonroot" /></td>
36         <td>(<span n:render="space" n:data="disk_free_for_nonroot" />)</td>
37         <td>[see 2]</td>
38         </tr>
39     <tr><td>Reserved space:</td>
40         <td>- <span n:render="abbrev_space" n:data="reserved_space" /></td>
41         <td>(<span n:render="space" n:data="reserved_space" />)</td>
42         <td />
43       </tr>
44     <tr><td />
45         <td>======</td>
46         <td />
47         <td />
48       </tr>
49     <tr><td>Space Available to Tahoe:</td>
50         <td><span n:render="abbrev_space" n:data="disk_avail" /></td>
51         <td>(<span n:render="space" n:data="disk_avail" />)</td>
52         <td />
53       </tr>
54   </table>
55
56   <ul n:data="stats">
57     <li>Accepting new shares:
58        <span n:render="bool" n:data="accepting_immutable_shares" /></li>
59   </ul>
60
61   <ul>
62     <li>Total buckets:
63        <span n:render="string" n:data="last_complete_bucket_count" />
64        (the number of files and directories for which this server is holding
65         a share)
66       <ul>
67         <li n:render="count_crawler_status" />
68       </ul>
69     </li>
70   </ul>
71
72   <h2>Lease Expiration Crawler</h2>
73
74   <ul>
75     <li>Expiration <span n:render="lease_expiration_enabled" /></li>
76     <li n:render="lease_expiration_mode" />
77     <li n:render="lease_current_cycle_progress" />
78     <li n:render="lease_current_cycle_results" />
79     <li n: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 node.</p>
86
87   <p>See this page <a href="?t=json">in JSON</a></p>
88 </div>
89
90 </body>
91 </html>