hbase.hbs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. {{!
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing, software
  13. * distributed under the License is distributed on an "AS IS" BASIS,
  14. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. * See the License for the specific language governing permissions and
  16. * limitations under the License.
  17. }}
  18. <!-- HBase Master Server -->
  19. {{view view.dashboardMasterComponentView}}
  20. <!-- RegionServers -->
  21. <tr>
  22. <td><a href="#" {{action filterHosts view.regionServerComponent}}>{{t dashboard.services.hbase.regionServers}}</a>
  23. </td>
  24. <td>
  25. <span>
  26. {{#view App.ComponentLiveTextView liveComponentsBinding="view.service.regionServersStarted" totalComponentsBinding="view.service.regionServersTotal"}}
  27. {{view.liveComponents}}/{{view.totalComponents}}
  28. {{/view}}
  29. </span>
  30. {{t services.service.summary.RegionServersLIVE}}
  31. </td>
  32. </tr>
  33. <!-- Regions in Transition -->
  34. <tr>
  35. <td>{{t dashboard.services.hbase.regions.transition}}</td>
  36. <td>{{view.service.regionsInTransition}}</td>
  37. </tr>
  38. <!-- HBase Master Started Time -->
  39. <tr>
  40. <td>{{t dashboard.services.hbase.masterStarted}}</td>
  41. <td>{{view.masterStartedTime}}</td>
  42. </tr>
  43. <!-- HBase Master Activated Time -->
  44. <tr>
  45. <td>{{t dashboard.services.hbase.masterActivated}}</td>
  46. <td>{{view.masterStartedTime}}</td>
  47. </tr>
  48. <!-- Average Load -->
  49. <tr>
  50. <td>{{t dashboard.services.hbase.averageLoad}}</td>
  51. <td>{{view.averageLoad}}</td>
  52. </tr>
  53. <!-- Master Server Heap -->
  54. <tr>
  55. <td>{{t dashboard.services.hbase.masterServerHeap}}</td>
  56. <td>{{view.masterServerHeapSummary}}</td>
  57. </tr>