1 | <html xmlns:t="http://twistedmatrix.com/ns/twisted.web.template/0.1"> |
---|
2 | <head> |
---|
3 | <title>Tahoe-LAFS - Deep Check Results</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 | <meta t:render="refresh" /> |
---|
8 | </head> |
---|
9 | <body> |
---|
10 | |
---|
11 | <h1>Deep-Check Results for root SI=<span t:render="root_storage_index" /></h1> |
---|
12 | |
---|
13 | <h2 t:render="reload" /> |
---|
14 | |
---|
15 | <p>Counters:</p> |
---|
16 | <ul> |
---|
17 | <li>Objects Checked: <span><t:transparent t:render="objects_checked" /></span></li> |
---|
18 | <li>Objects Healthy: <span><t:transparent t:render="objects_healthy" /></span></li> |
---|
19 | <li>Objects Unhealthy: <span><t:transparent t:render="objects_unhealthy" /></span></li> |
---|
20 | <li>Objects Unrecoverable: <span><t:transparent t:render="objects_unrecoverable" /></span></li> |
---|
21 | <li>Corrupt Shares: <span><t:transparent t:render="count_corrupt_shares" /></span></li> |
---|
22 | </ul> |
---|
23 | |
---|
24 | <div t:render="problems_p"> |
---|
25 | <h2>Files/Directories That Had Problems:</h2> |
---|
26 | |
---|
27 | <ul t:render="problems"> |
---|
28 | <li t:render="item"> |
---|
29 | <t:slot name="problem" /> |
---|
30 | </li> |
---|
31 | <li t:render="empty">None</li> |
---|
32 | </ul> |
---|
33 | </div> |
---|
34 | |
---|
35 | |
---|
36 | <div t:render="servers_with_corrupt_shares_p"> |
---|
37 | <h2>Servers on which corrupt shares were found</h2> |
---|
38 | <ul t:render="servers_with_corrupt_shares"> |
---|
39 | <li t:render="item"> |
---|
40 | <t:slot name="problem" /> |
---|
41 | </li> |
---|
42 | <li t:render="empty">None</li> |
---|
43 | </ul> |
---|
44 | </div> |
---|
45 | |
---|
46 | <div t:render="corrupt_shares_p"> |
---|
47 | <h2>Corrupt Shares</h2> |
---|
48 | <p>If repair fails, these shares need to be manually inspected and removed.</p> |
---|
49 | <table t:render="corrupt_shares"> |
---|
50 | <tr t:render="header"> |
---|
51 | <th>Server</th> |
---|
52 | <th>Server Nickname</th> |
---|
53 | <th>Storage Index</th> |
---|
54 | <th>Share Number</th> |
---|
55 | </tr> |
---|
56 | <tr t:render="item"> |
---|
57 | <td><t:slot name="serverid"/></td> |
---|
58 | <td><t:slot name="nickname"/></td> |
---|
59 | <td><t:slot name="si"/></td> |
---|
60 | <td><t:slot name="shnum"/></td> |
---|
61 | </tr> |
---|
62 | </table> |
---|
63 | </div> |
---|
64 | |
---|
65 | <div t:render="return_to" /> |
---|
66 | |
---|
67 | <div> |
---|
68 | <h2>All Results</h2> |
---|
69 | <table t:render="all_objects"> |
---|
70 | <tr t:render="header"> |
---|
71 | <th>Relative Path</th> |
---|
72 | <th>Healthy</th> |
---|
73 | <th>Recoverable</th> |
---|
74 | <th>Storage Index</th> |
---|
75 | <th>Summary</th> |
---|
76 | </tr> |
---|
77 | <tr t:render="item"> |
---|
78 | <td><t:slot name="path"/></td> |
---|
79 | <td><t:slot name="healthy"/></td> |
---|
80 | <td><t:slot name="recoverable"/></td> |
---|
81 | <td><tt><t:slot name="storage_index"/></tt></td> |
---|
82 | <td><t:slot name="summary"/></td> |
---|
83 | </tr> |
---|
84 | <tr t:render="empty"> |
---|
85 | <td>Nothing to report yet.</td> |
---|
86 | </tr> |
---|
87 | </table> |
---|
88 | </div> |
---|
89 | |
---|
90 | <div t:render="runtime" /> |
---|
91 | |
---|
92 | </body> |
---|
93 | </html> |
---|