-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Also added support for loading more scheduler logs * Added multiple empty-state messages * Added filtering capabilities to multiple interfaces
- Loading branch information
Showing
13 changed files
with
311 additions
and
204 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
17 changes: 13 additions & 4 deletions
17
bennu-admin/src/main/webapp/bennu-admin/template/monitoring/configuration.html
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 |
---|---|---|
@@ -1,8 +1,17 @@ | ||
<table class="table table-striped"> | ||
<div class="row"> | ||
<h4 class="col-sm-6"> | ||
Static Configurations | ||
</h4> | ||
<div class="col-sm-offset-3 col-sm-3"> | ||
<input type="text" class="form-control" ng-model="sys.filter" placeholder="Filter..." /> | ||
</div> | ||
</div> | ||
<br /> | ||
<table class="table table-striped" style="table-layout: fixed"> | ||
<tbody> | ||
<tr ng-repeat="property in data.conf | orderBy:'key'"> | ||
<th>{{property.key}}</th> | ||
<td>{{property.value}}</td> | ||
<tr ng-repeat="property in data.conf | filter:sys.filter | orderBy:'key'"> | ||
<th class="col-sm-4" style="word-wrap: break-word">{{property.key}}</th> | ||
<td class="col-sm-8" style="word-wrap: break-word">{{property.value}}</td> | ||
</tr> | ||
</tbody> | ||
</table> |
47 changes: 27 additions & 20 deletions
47
bennu-admin/src/main/webapp/bennu-admin/template/monitoring/env.html
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 |
---|---|---|
@@ -1,30 +1,37 @@ | ||
<h4 class="page-header"> | ||
System Properties | ||
|
||
<span class="pull-right"> | ||
<input type="text" ng-model="sys.filter" placeholder="Filter..." /> | ||
</span> | ||
</h4> | ||
<table class="table table-striped"> | ||
<div class="row"> | ||
<h4 class="col-sm-6"> | ||
System Properties | ||
</h4> | ||
<div class="col-sm-offset-3 col-sm-3"> | ||
<input type="text" class="form-control" ng-model="sys.filter" placeholder="Filter..." /> | ||
</div> | ||
</div> | ||
<br /> | ||
<table class="table table-striped" style="table-layout: fixed"> | ||
<tbody> | ||
<tr ng-repeat="property in data.sys | filter:sys.filter | orderBy:'key'"> | ||
<th>{{property.key}}</th> | ||
<td>{{property.value}}</td> | ||
<th class="col-sm-4" style="word-wrap: break-word">{{property.key}}</th> | ||
<td class="col-sm-8" style="word-wrap: break-word">{{property.value}}</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
|
||
<h4 class="page-header"> | ||
Environment Properties | ||
<hr /> | ||
|
||
<span class="pull-right"> | ||
<input type="text" ng-model="env.filter" placeholder="Filter..." /> | ||
</span> | ||
</h4><table class="table table-striped"> | ||
<div class="row"> | ||
<h4 class="col-sm-6"> | ||
Environment Properties | ||
</h4> | ||
<div class="col-sm-offset-3 col-sm-3"> | ||
<input type="text" class="form-control" ng-model="sys.filter" placeholder="Filter..." /> | ||
</div> | ||
</div> | ||
<br /> | ||
<table class="table table-striped" style="table-layout: fixed"> | ||
<tbody> | ||
<tr ng-repeat="property in data.env | filter:env.filter | orderBy:'key'"> | ||
<th>{{property.key}}</th> | ||
<td>{{property.value}}</td> | ||
<tr ng-repeat="property in data.env | filter:sys.filter | orderBy:'key'"> | ||
<th class="col-sm-4" style="word-wrap: break-word">{{property.key}}</th> | ||
<td class="col-sm-8" style="word-wrap: break-word">{{property.value}}</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</table> |
5 changes: 3 additions & 2 deletions
5
bennu-admin/src/main/webapp/bennu-admin/template/monitoring/jmx.html
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
45 changes: 28 additions & 17 deletions
45
bennu-admin/src/main/webapp/bennu-admin/template/monitoring/libraries.html
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 |
---|---|---|
@@ -1,24 +1,35 @@ | ||
<table class="table table-striped table-bordered table-condensed"> | ||
<table class="table table-striped" ng-show="data.libraries.length"> | ||
<thead> | ||
<tr> | ||
<th>GroupId</th> | ||
<th>ArtifactId</th> | ||
<th>Name</th> | ||
<th>Version</th> | ||
<th>Creation Date</th> | ||
<th>Jdk Version</th> | ||
<th>Built By</th> | ||
<th>Library</th> | ||
<th>Build</th> | ||
<th>JAR File</th> | ||
</tr> | ||
</thead> | ||
<tbody> | ||
<tr ng-repeat="library in data.libraries"> | ||
<td>{{library.groupId}}</td> | ||
<td>{{library.artifactId}}</td> | ||
<td>{{library['Implementation-Title']}}</td> | ||
<td>{{library.version}}</td> | ||
<td>{{library.creation}}</td> | ||
<td>{{library['Build-Jdk']}}</td> | ||
<td>{{library['Built-By']}}</td> | ||
<tr ng-repeat="library in data.libraries | orderBy:'jar'"> | ||
<td> | ||
<h6>{{library['Implementation-Title']}}</h6> | ||
<small><code>{{library.groupId}}:{{library.artifactId}}:{{library.version}}</code></small> | ||
</td> | ||
<td> | ||
<h6>{{library.creation}}</h6> | ||
<small>{{library['Build-Jdk']}} - {{library['Built-By']}}</small> | ||
</td> | ||
<td> | ||
<h6 class="small" title="{{library.jar}}"> | ||
<samp>{{library.jar | filename}}</samp> | ||
</h6> | ||
<small><code>{{library.checksum}}</code></small> | ||
</td> | ||
</tr> | ||
</tbody> | ||
</table> | ||
</table> | ||
|
||
|
||
<div class="panel panel-default" ng-show="!data.libraries.length"> | ||
<div class="panel-body"> | ||
<p><span class="glyphicon glyphicon-info-sign"></span> No libraries were found</p> | ||
<small>This information is typically unavailable in development mode or when using embedded containers.</small> | ||
</div> | ||
</div> |
Oops, something went wrong.