queue-configuration-table.hbs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  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. <table id="queue-configuration-table" class="table table-striped table-bordered" cellspacing="0" width="100%" height="100%">
  19. <thead>
  20. <tr>
  21. <td><b>Configurations</b></td>
  22. <td>Value</td>
  23. </tr>
  24. </thead>
  25. <tbody>
  26. <tr>
  27. <td>Configured Capacity</td>
  28. <td>{{queue.capacity}}</td>
  29. </tr>
  30. <tr>
  31. <td>Configured Max Capacity</td>
  32. <td>{{queue.maxCapacity}}</td>
  33. </tr>
  34. <tr>
  35. <td>State</td>
  36. <td>{{queue.state}}</td>
  37. </tr>
  38. {{#if queue.isLeafQueue}}
  39. <tr>
  40. <td>User Limit Percent</td>
  41. <td>{{queue.userLimit}}</td>
  42. </tr>
  43. <tr>
  44. <td>User Limit Factor</td>
  45. <td>{{queue.userLimitFactor}}</td>
  46. </tr>
  47. <tr>
  48. <td>Preemption Disabled</td>
  49. <td>{{queue.preemptionDisabled}}</td>
  50. </tr>
  51. {{/if}}
  52. </tbody>
  53. </table>