menu.html 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. <!--
  2. Licensed to the Apache Software Foundation (ASF) under one or more
  3. contributor license agreements. See the NOTICE file distributed with
  4. this work for additional information regarding copyright ownership.
  5. The ASF licenses this file to You under the Apache License, Version 2.0
  6. (the "License"); you may not use this file except in compliance with
  7. the License. You may obtain a copy of the License at
  8. http://www.apache.org/licenses/LICENSE-2.0
  9. Unless required by applicable law or agreed to in writing, software
  10. distributed under the License is distributed on an "AS IS" BASIS,
  11. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. See the License for the specific language governing permissions and
  13. limitations under the License.
  14. -->
  15. <div id="navbar" class="collapse navbar-collapse">
  16. <ul class="nav navbar-nav" id="ui-tabs">
  17. <li>
  18. <a class="dropdown-toggle"
  19. id="metricsMenu"
  20. data-toggle="dropdown"
  21. aria-haspopup="true"
  22. aria-expanded="true">
  23. Metrics
  24. <span class="caret"></span>
  25. </a>
  26. <ul
  27. class="dropdown-menu"
  28. aria-labelledby="metricsMenu">
  29. <li ng-repeat="(name, url) in $ctrl.metrics">
  30. <a ng-href="{{url}}">{{name}}<span
  31. aria-hidden="true"></span></a></li>
  32. </ul>
  33. </li>
  34. <li><a href="#!/config">Configuration</a></li>
  35. <li ng-show="$ctrl.docs"><a href="/docs">Documentation</a></li>
  36. <li>
  37. <a class="dropdown-toggle"
  38. id="toolsMenu"
  39. data-toggle="dropdown"
  40. aria-haspopup="true"
  41. aria-expanded="true"
  42. >
  43. Common tools
  44. <span class="caret"></span>
  45. </a>
  46. <ul class="dropdown-menu" aria-labelledby="toolsMenu">
  47. <li><a href="jmx">JMX <span
  48. aria-hidden="true"></span></a></li>
  49. <li><a href="conf">Config <span
  50. aria-hidden="true"></a></li>
  51. <li><a href="stacks">Stacks <span
  52. aria-hidden="true"></a></li>
  53. <li><a href="logLevel">Log levels <span
  54. aria-hidden="true"></a></li>
  55. </ul>
  56. </li>
  57. </ul>
  58. </div><!--/.nav-collapse -->