|
|
@@ -3,33 +3,50 @@
|
|
|
<head th:replace="/common/template :: header(~{::title},~{::link},~{::style})"></head>
|
|
|
<body>
|
|
|
<div class="timo-detail-page">
|
|
|
- <div class="timo-detail-title">基本信息</div>
|
|
|
+ <div class="timo-detail-title">节点信息</div>
|
|
|
<table class="layui-table timo-detail-table">
|
|
|
<tbody>
|
|
|
<tr>
|
|
|
- <th>应用 ID</th>
|
|
|
- <td th:text="${storeNode.domain}"></td>
|
|
|
- <th>应用名称</th>
|
|
|
- <td th:text="${storeNode.domain}"></td>
|
|
|
+ <th>地址</th>
|
|
|
+ <td th:text="${storeNode.nodeAddr}"></td>
|
|
|
+ <th>HTTP 端口</th>
|
|
|
+ <td th:text="${storeNode.httpPort}"></td>
|
|
|
+ <th>RPC 端口</th>
|
|
|
+ <td th:text="${storeNode.rpcPort}"></td>
|
|
|
</tr>
|
|
|
+ </tbody>
|
|
|
+ </table>
|
|
|
+ <div class="timo-detail-title">磁盘信息</div>
|
|
|
+ <table class="layui-table timo-detail-table">
|
|
|
+ <thead>
|
|
|
<tr>
|
|
|
- <th>总容量</th>
|
|
|
- <td th:text="${storeNode.total}"></td>
|
|
|
- <th>可用容量</th>
|
|
|
- <td th:text="${storeNode.avail}"></td>
|
|
|
+ <th class="sortable" data-field="appName">磁盘路径</th>
|
|
|
+ <th class="sortable" data-field="appName">总容量</th>
|
|
|
+ <th class="sortable" data-field="appName">可用容量</th>
|
|
|
+ </tr>
|
|
|
+ </thead>
|
|
|
+ <tbody>
|
|
|
+ <tr th:each="item:${storeNode.storeDisks}">
|
|
|
+ <td th:text="${item.diskDir}"></td>
|
|
|
+ <td th:text="${item.total}"></td>
|
|
|
+ <td th:text="${item.avail}"></td>
|
|
|
</tr>
|
|
|
</tbody>
|
|
|
</table>
|
|
|
- <div class="timo-detail-title">构建配置</div>
|
|
|
+ <div class="timo-detail-title">节点配置</div>
|
|
|
<table class="layui-table timo-detail-table">
|
|
|
<tbody>
|
|
|
<tr>
|
|
|
- <th>地址</th>
|
|
|
- <td th:text="${storeNode.nodeAddr}"></td>
|
|
|
- <th>HTTP 端口</th>
|
|
|
- <td th:text="${storeNode.httpPort}"></td>
|
|
|
- <th>RPC 端口</th>
|
|
|
- <td th:text="${storeNode.rpcPort}"></td>
|
|
|
+ <th>域名</th>
|
|
|
+ <td th:text="${storeNode.domain}"></td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th>SecretKey</th>
|
|
|
+ <td th:text="${storeNode.secretKey}"></td>
|
|
|
+ </tr>
|
|
|
+ <tr>
|
|
|
+ <th>Referer</th>
|
|
|
+ <td th:text="${storeNode.referer}"></td>
|
|
|
</tr>
|
|
|
</tbody>
|
|
|
</table>
|