forked from apache/hbase
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "HBASE-27066 The Region Visualizer display failed (apache#4472)"
This reverts commit 5c116d2.
- Loading branch information
Showing
2 changed files
with
2 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,21 +16,6 @@ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
See the License for the specific language governing permissions and | ||
limitations under the License. | ||
</%doc> | ||
<%args> | ||
HMaster master; | ||
</%args> | ||
<%import> | ||
org.apache.hadoop.hbase.master.HMaster; | ||
org.apache.hadoop.hbase.ServerName; | ||
org.apache.hbase.thirdparty.com.google.common.base.Preconditions; | ||
</%import> | ||
|
||
<%java> | ||
ServerName active_master = master.getActiveMaster().orElse(null); | ||
Preconditions.checkState(active_master != null, "Failed to retrieve active master's ServerName!"); | ||
String activeHostname = active_master.getHostname(); | ||
int activeInfoPort = master.getActiveMasterInfoPort(); | ||
</%java> | ||
|
||
<script type="text/javascript" src="/static/js/[email protected]"></script> | ||
<script type="text/javascript" src="/static/js/[email protected]"></script> | ||
|
@@ -44,7 +29,7 @@ int activeInfoPort = master.getActiveMasterInfoPort(); | |
description: 'Total `storefileSize` per Region Server', | ||
data: { | ||
name: 'region_info', | ||
url: 'http://<% activeHostname %>:<% activeInfoPort %>/api/v1/admin/cluster_metrics/live_servers', | ||
url: 'http://localhost:16010/api/v1/admin/cluster_metrics/live_servers', | ||
format: { type: 'json', property: 'data' } | ||
}, | ||
transform: [ | ||
|