| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- <!--
- Licensed to the Apache Software Foundation (ASF) under one or more
- contributor license agreements. See the NOTICE file distributed with
- this work for additional information regarding copyright ownership.
- The ASF licenses this file to You under the Apache License, Version 2.0
- (the "License"); you may not use this file except in compliance with
- the License. You may obtain a copy of the License at
- http://www.apache.org/licenses/LICENSE-2.0
- Unless required by applicable law or agreed to in writing, software
- distributed under the License is distributed on an "AS IS" BASIS,
- 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.
- -->
- <div id="plugins" class="clearfix">
- <div id="frame">
- <ul>
- <li class="entry" ng-class="{changed: plugin.changed}" ng-repeat="plugin in type.plugins">
- <a ng-click="selectPlugin(plugin)">
- <span>{{ plugin.name }}</span>
- </a>
- <ul class="detail" ng-show="plugin.open">
- <li ng-repeat="(key, value) in plugin.properties" ng-class="{odd: $odd}">
- <dl class="clearfix">
- <dt>{{ key }}:</dt>
- <!--<dd ng-repeat="v in value">{{v}}</dd><!-- is AN ARRAY!!-->
- <dd>{{value}}</dd>
- </dl>
- </li>
- <li class="stats clearfix" ng-show="plugin.stats">
- <span>stats:</span>
- <ul>
- <li ng-repeat="(key, value) in plugin.stats" ng-class="{odd: $odd}">
- <dl class="clearfix">
- <dt>{{key}}:</dt>
- <dd>{{value}}</dd>
- </dl>
- </li>
- </ul>
- </li>
- </ul>
- </ul>
- </div>
- <div id="navigation" class="clearfix">
- <ul>
- <li ng-repeat="typeObj in types" class="{{typeObj.lower}}" ng-class="{active:typeObj==type}">
- <a ng-click="selectPluginType(typeObj)" rel="{{typeObj.name}}">{{typeObj.name}}
- <span ng-show="typeObj.changes">{{typeObj.changes}}</span>
- </a>
- </li>
- <li class="PLUGINCHANGES"><a ng-click="startRecording()">Watch Changes</a></li>
- <li class="RELOAD"><a ng-click="refresh()">Refresh Values</a></li>
- <li class="NOTE"><p>NOTE: Only selected metrics are shown here. Full metrics can be accessed via /admin/metrics handler.</p></li>
- </ul>
- </div>
- <div id="recording" ng-show="isRecording">
- <div class="wrapper clearfix">
- <p class="loader">Watching for Changes</p>
- <button class="primary" ng-click="stopRecording()">Stop & Show Changes</button>
- </div>
- <div id="blockUI"></div>
- </div>
- </div>
|