Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ <h2>Status</h2>
</tr>
<tr>
<td>Node Manager: Safe mode status</td>
<td>{{$ctrl.scmmetrics.InSafeMode}}</td>
<td>{{$ctrl.overview.jmx.InSafeMode}}</td>
</tr>
</tbody>
</table>
Expand All @@ -47,7 +47,7 @@ <h2>Safemode rules statuses</h2>

<table class="table table-bordered table-striped" class="col-md-6">
<tbody>
<tr ng-repeat="typestat in $ctrl.scmmetrics.RuleStatusMetrics">
<tr ng-repeat="typestat in $ctrl.overview.jmx.RuleStatusMetrics">
<td>{{typestat.key}}</td>
<td>{{typestat.value}}</td>
</tr>
Expand Down
4 changes: 0 additions & 4 deletions hadoop-hdds/server-scm/src/main/resources/webapps/scm/scm.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,10 +30,6 @@
.then(function (result) {
ctrl.nodemanagermetrics = result.data.beans[0];
});
$http.get("jmx?qry=Hadoop:service=StorageContainerManager,name=StorageContainerManagerInfo,component=ServerRuntime")
.then(function (result) {
ctrl.scmmetrics = result.data.beans[0];
});

var statusSortOrder = {
"HEALTHY": "a",
Expand Down