ivandika3 commented on code in PR #7217:
URL: https://github.com/apache/ozone/pull/7217#discussion_r1772958007
##########
hadoop-hdds/server-scm/src/main/resources/webapps/scm/scm-overview.html:
##########
@@ -110,6 +110,116 @@ <h2>Space Statistics</h2>
</tbody>
</table>
+<h2>Pipeline Statistics</h2>
+<table class="table table-bordered table-striped">
+ <tbody>
+ <tr>
+ <th>Pipeline State</th>
+ <th>Size</th>
+ </tr>
+ <tr>
+ <td>Closed</td>
+ <td>{{statistics.pipelines.closed}}</td>
+ </tr>
+ <tr>
+ <td>Allocated</td>
+ <td>{{statistics.pipelines.allocated}}</td>
+ </tr>
+ <tr>
+ <td>Open</td>
+ <td>{{statistics.pipelines.open}}</td>
+ </tr>
+ <tr>
+ <td>Dormant</td>
+ <td>{{statistics.pipelines.dormant}}</td>
+ </tr>
+ </tbody>
+</table>
+
+<h2>Container Lifecycle Statistics</h2>
Review Comment:
I think the tables can be put under one `h2` header.
```
<h2>Container Statistics</h2>
<table class="table table-bordered table-striped">
<tbody>
<tr>
<th>Operational State</th>
<th>Size</th>
</tr>
...
</table>
<table class="table table-bordered table-striped">
<tbody>
<tr>
<th>Health</th>
<th>Size</th>
</tr>
...
</table>
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]