| 1234567891011121314151617181920212223242526272829303132333435363738 |
- <!DOCTYPE html>
- <html xmlns:th="http://www.thymeleaf.org">
- <head th:replace="/common/template :: header(~{::title},~{::link},~{::style})"></head>
- <body>
- <div class="timo-detail-page">
- <table class="layui-table timo-detail-table">
- <tbody>
- <tr>
- <th>状态时间</th>
- <td th:text="${statTime}"></td>
- </tr>
- </tbody>
- </table>
- <table class="layui-table timo-detail-table">
- <tbody>
- <tr>
- <th>过去 1 分钟</th>
- <td th:text="${sysload.loadAvg1}"></td>
- <th>过去 5 分钟</th>
- <td th:text="${sysload.loadAvg5}"></td>
- <th>过去 15 分钟</th>
- <td th:text="${sysload.loadAvg15}"></td>
- </tr>
- <tr>
- <th>当前进程数量</th>
- <td th:text="${sysload.current}"></td>
- <th>系统中总的进程数量</th>
- <td th:text="${sysload.total}"></td>
- <th>上一次运行的进程</th>
- <td th:text="${sysload.lastPid}"></td>
- </tr>
- </tbody>
- </table>
- </div>
- <script th:replace="/common/template :: script"></script>
- </body>
- </html>
|