dombizita commented on code in PR #4022:
URL: https://github.com/apache/ozone/pull/4022#discussion_r1039317654


##########
hadoop-hdds/server-scm/src/main/resources/webapps/scm/scm-overview.html:
##########
@@ -48,6 +48,17 @@ <h2>Node counts</h2>
     </tbody>
 </table>
 
+<h2>PipeLine Info</h2>

Review Comment:
   ```suggestion
   <h2>Pipeline Info</h2>
   ```



##########
hadoop-hdds/server-scm/src/main/resources/webapps/scm/scm-overview.html:
##########
@@ -48,6 +48,17 @@ <h2>Node counts</h2>
     </tbody>
 </table>
 
+<h2>PipeLine Info</h2>
+
+<table class="table table-bordered table-striped">
+    <tbody>
+    <tr ng-repeat="PipelineInfo in $ctrl.pieplinesrmetrics.PipelineInfo">

Review Comment:
   ```suggestion
       <tr ng-repeat="PipelineInfo in $ctrl.pipelinemetrics.PipelineInfo">
   ```



##########
hadoop-hdds/server-scm/src/main/resources/webapps/scm/scm.js:
##########
@@ -30,6 +30,10 @@
                 .then(function (result) {
                     ctrl.nodemanagermetrics = result.data.beans[0];
                 });
+            
$http.get("jmx?qry=Hadoop:service=SCMPipelineManager,name=SCMPipelineManagerInfo")
+            .then(function (result) {
+                ctrl.pieplinesrmetrics = result.data.beans[0];

Review Comment:
   ```suggestion
                   ctrl.pipelinemetrics = result.data.beans[0];
   ```



-- 
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]

Reply via email to