Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
S
spring-boot-admin
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
openSource
spring-boot-admin
Commits
495b631a
Commit
495b631a
authored
Nov 02, 2016
by
Johannes Edmeier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Harmonize header margins
parent
bb765862
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
101 additions
and
97 deletions
+101
-97
core.css
spring-boot-admin-server-ui/core/css/core.css
+1
-1
details.html
...server-ui/modules/applications-details/views/details.html
+47
-45
environment.html
...i/modules/applications-environment/views/environment.html
+32
-31
trace.html
...min-server-ui/modules/applications-trace/views/trace.html
+19
-18
module.css
...-boot-admin-server-ui/modules/applications/css/module.css
+1
-1
package.json
spring-boot-admin-server-ui/package.json
+1
-1
No files found.
spring-boot-admin-server-ui/core/css/core.css
View file @
495b631a
...
...
@@ -40,7 +40,7 @@ pre {
/* ---------- */
.header--navbar
{
margin
:
0
;
margin
:
0
0
20px
0
;
}
.header--navbar
.navbar-inner
{
font-family
:
Montserrat
,
sans-serif
;
...
...
spring-boot-admin-server-ui/modules/applications-details/views/details.html
View file @
495b631a
<div
class=
"container"
ui-view
>
<div
class=
"alert alert-error"
ng-if=
"error"
>
<b>
Error:
</b>
{{ error }}
</div>
<div
class=
"row"
>
<form
class=
"form-inline"
>
<button
title=
"refresh"
class=
"btn"
ng-click=
"refresh()"
><i
class=
"fa fa-repeat"
></i></button>
<div
class=
"input-prepend input-append"
>
<button
title=
"auto refresh"
class=
"btn"
ng-click=
"toggleAutoRefresh()"
ng-class=
"{'active':refresher != null}"
>
<div
class=
"alert alert-error"
ng-if=
"error"
>
<b>
Error:
</b>
{{ error }}
</div>
<form
class=
"form-inline"
>
<button
title=
"refresh"
class=
"btn"
ng-click=
"refresh()"
><i
class=
"fa fa-repeat"
></i></button>
<div
class=
"input-prepend input-append"
>
<button
title=
"auto refresh"
class=
"btn"
ng-click=
"toggleAutoRefresh()"
ng-class=
"{'active':refresher != null}"
>
<i
class=
"fa fa-refresh"
ng-class=
"{'fa-spin':refresher != null}"
></i>
</button>
<input
class=
"input-mini"
type=
"number"
min=
"1"
ng-model=
"refreshInterval"
ng-disabled=
"refresher != null"
/>
<span
class=
"add-on"
>
sec
</span>
</div>
</form>
</div>
<div
style=
"display: flex; flex-wrap: wrap; justify-content: space-around;"
>
<sba-info-panel
class=
"span6"
style=
"margin-left:0px"
panel-title=
"Application"
raw=
"api/applications/{{ application.id }}/info"
>
<table
class=
"table"
>
<tr
ng-repeat=
"(key, value) in info"
>
<td
ng-bind=
"key"
></td>
<td
style=
"white-space: pre"
ng-bind-html=
"value | yaml | linkify:50"
></td>
</tr>
</table>
</sba-info-panel>
<sba-info-panel
class=
"span6"
style=
"margin-left:0px"
panel-title=
"Health"
raw=
"api/applications/{{ application.id }}/health"
>
<sba-health-status
health=
"health"
></sba-health-status>
</sba-info-panel>
<sba-info-panel
class=
"span6"
style=
"margin-left:0px"
panel-title=
"Memory"
raw=
"api/applications/{{ application.id }}/metrics/mem.*%7Cheap.*"
>
<sba-memory-stats
metrics=
metrics
></sba-memory-stats>
</sba-info-panel>
<sba-info-panel
class=
"span6"
style=
"margin-left:0px"
panel-title=
"JVM"
raw=
"api/applications/{{ application.id }}/metrics/systemload.*%7Cclasses.*%7Cuptime%7Cprocessors%7Cthreads.*"
>
<sba-jvm-stats
metrics=
"metrics"
></sba-jvm-stats>
</sba-info-panel>
<sba-info-panel
class=
"span6"
style=
"margin-left:0px"
panel-title=
"Garbage Collection"
raw=
"api/applications/{{ application.id }}/metrics/gc.*"
>
<sba-gc-stats
metrics=
"metrics"
></sba-gc-stats>
</sba-info-panel>
<sba-info-panel
class=
"span6"
style=
"margin-left:0px"
panel-title=
"Servlet Container"
raw=
"api/applications/{{ application.id }}/metrics/httpsessions.*"
ng-show=
"metrics['httpsessions.active'] != null"
>
<sba-servlet-container-stats
metrics=
"metrics"
></sba-servlet-container-stats>
</sba-info-panel>
<sba-info-panel
class=
"span6"
style=
"margin-left:0px"
panel-title=
"Datasources"
raw=
"api/applications/{{ application.id }}/metrics/datasource.*"
ng-show=
"hasDatasources"
>
<sba-datasource-stats
metrics=
"metrics"
></sba-datasource-stats>
</sba-info-panel>
<sba-info-panel
class=
"span6"
style=
"margin-left:0px"
panel-title=
"Caches"
raw=
"api/applications/{{ application.id }}/metrics/cache.*"
ng-show=
"hasCaches"
>
<sba-cache-stats
metrics=
"metrics"
></sba-cache-stats>
</sba-info-panel>
</div>
</div>
<input
class=
"input-mini"
type=
"number"
min=
"1"
ng-model=
"refreshInterval"
ng-disabled=
"refresher != null"
/>
<span
class=
"add-on"
>
sec
</span>
</div>
</form>
<div
style=
"display: flex; flex-wrap: wrap; justify-content: space-around;"
>
<sba-info-panel
class=
"span6"
style=
"margin-left:0px"
panel-title=
"Application"
raw=
"api/applications/{{ application.id }}/info"
>
<table
class=
"table"
>
<tr
ng-repeat=
"(key, value) in info"
>
<td
ng-bind=
"key"
></td>
<td
style=
"white-space: pre"
ng-bind-html=
"value | yaml | linkify:50"
></td>
</tr>
</table>
</sba-info-panel>
<sba-info-panel
class=
"span6"
style=
"margin-left:0px"
panel-title=
"Health"
raw=
"api/applications/{{ application.id }}/health"
>
<sba-health-status
health=
"health"
></sba-health-status>
</sba-info-panel>
<sba-info-panel
class=
"span6"
style=
"margin-left:0px"
panel-title=
"Memory"
raw=
"api/applications/{{ application.id }}/metrics/mem.*%7Cheap.*"
>
<sba-memory-stats
metrics=
metrics
></sba-memory-stats>
</sba-info-panel>
<sba-info-panel
class=
"span6"
style=
"margin-left:0px"
panel-title=
"JVM"
raw=
"api/applications/{{ application.id }}/metrics/systemload.*%7Cclasses.*%7Cuptime%7Cprocessors%7Cthreads.*"
>
<sba-jvm-stats
metrics=
"metrics"
></sba-jvm-stats>
</sba-info-panel>
<sba-info-panel
class=
"span6"
style=
"margin-left:0px"
panel-title=
"Garbage Collection"
raw=
"api/applications/{{ application.id }}/metrics/gc.*"
>
<sba-gc-stats
metrics=
"metrics"
></sba-gc-stats>
</sba-info-panel>
<sba-info-panel
class=
"span6"
style=
"margin-left:0px"
panel-title=
"Servlet Container"
raw=
"api/applications/{{ application.id }}/metrics/httpsessions.*"
ng-show=
"metrics['httpsessions.active'] != null"
>
<sba-servlet-container-stats
metrics=
"metrics"
></sba-servlet-container-stats>
</sba-info-panel>
<sba-info-panel
class=
"span6"
style=
"margin-left:0px"
panel-title=
"Datasources"
raw=
"api/applications/{{ application.id }}/metrics/datasource.*"
ng-show=
"hasDatasources"
>
<sba-datasource-stats
metrics=
"metrics"
></sba-datasource-stats>
</sba-info-panel>
<sba-info-panel
class=
"span6"
style=
"margin-left:0px"
panel-title=
"Caches"
raw=
"api/applications/{{ application.id }}/metrics/cache.*"
ng-show=
"hasCaches"
>
<sba-cache-stats
metrics=
"metrics"
></sba-cache-stats>
</sba-info-panel>
</div>
</div>
\ No newline at end of file
spring-boot-admin-server-ui/modules/applications-environment/views/environment.html
View file @
495b631a
<div
class=
"container"
>
<div
class=
"alert alert-error"
ng-if=
"error"
>
<b>
Error:
</b>
{{ error }}
</div>
<sba-info-panel
panel-title=
"Active profiles"
raw=
"api/applications/{{ application.id }}/env"
>
<table
class=
"table"
>
<tr>
<td>
{{profiles.join(', ') || '-'}}
</td>
</tr>
</table>
</sba-info-panel>
<sba-info-panel
panel-title=
"Environment manager"
ng-show=
"refreshSupported"
>
<sba-environment-manager
environment=
"env"
application=
"application"
on-environment-changed=
"refresh"
></sba-environment-manager>
</sba-info-panel>
<div
class=
"
input-append"
>
<input
placeholder=
"Filter"
class=
"input-xxlarge"
type=
"search"
ng-model=
"searchFilter"
/>
<button
class=
"btn"
title=
"reload list"
ng-click=
"refresh()"
><i
class=
"fa fa-repeat"
></i></button>
</div
>
<sba-info-panel
category=
"PropertySource"
panel-title=
"{{source.name}}"
ng-repeat=
"source in env"
ng-show=
"!searchFilter || (source.value | filter:searchFilter).length > 0"
>
<table
class=
"table"
>
<col
width=
"38%"
>
<col
width=
"62%"
>
<tr
ng-repeat=
"property in source.value | filter:searchFilter"
>
<td
style=
"word-break: break-all;"
>
{{property.name}}
</td>
<td
style=
"word-break: break-all;"
>
{{property.value}}
</td>
</tr>
<tr
ng-if=
"source.value.length == 0"
>
<td
colspan=
"2"
>
-
</td>
</tr>
</table>
</sba-info-panel>
</div>
<div
class=
"alert alert-error"
ng-if=
"error"
>
<b>
Error:
</b>
{{ error }}
</div>
<sba-info-panel
panel-title=
"Active profiles"
raw=
"api/applications/{{ application.id }}/env"
>
<table
class=
"table"
>
<tr>
<td>
{{profiles.join(', ') || '-'}}
</td>
</tr>
</table>
</sba-info-panel>
<sba-info-panel
panel-title=
"Environment manager"
ng-show=
"refreshSupported"
>
<sba-environment-manager
environment=
"env"
application=
"application"
on-environment-changed=
"refresh"
></sba-environment-manager>
</sba-info-panel>
<form
class=
"form-inline
input-append"
>
<input
placeholder=
"Filter"
class=
"input-xxlarge"
type=
"search"
ng-model=
"searchFilter"
/>
<button
class=
"btn"
title=
"reload list"
ng-click=
"refresh()"
><i
class=
"fa fa-repeat"
></i></button>
</form
>
<sba-info-panel
category=
"PropertySource"
panel-title=
"{{source.name}}"
ng-repeat=
"source in env"
ng-show=
"!searchFilter || (source.value | filter:searchFilter).length > 0"
>
<table
class=
"table"
>
<col
width=
"38%"
>
<col
width=
"62%"
>
<tr
ng-repeat=
"property in source.value | filter:searchFilter"
>
<td
style=
"word-break: break-all;"
>
{{property.name}}
</td>
<td
style=
"word-break: break-all;"
>
{{property.value}}
</td>
</tr>
<tr
ng-if=
"source.value.length == 0"
>
<td
colspan=
"2"
>
-
</td>
</tr>
</table>
</sba-info-panel>
</div>
\ No newline at end of file
spring-boot-admin-server-ui/modules/applications-trace/views/trace.html
View file @
495b631a
<div
class=
"container"
>
<div
class=
"alert alert-error"
ng-if=
"error"
>
<b>
Error:
</b>
{{ error }}
</div>
<div
class=
"form-inline"
>
<button
title=
"refresh"
class=
"btn"
ng-click=
"refresh()"
><i
class=
"fa fa-repeat"
></i></button>
<div
class=
"input-prepend input-append"
>
<button
title=
"auto refresh"
class=
"btn"
ng-click=
"toggleAutoRefresh()"
ng-class=
"{'active':refresher != null}"
>
<div
class=
"alert alert-error"
ng-if=
"error"
>
<b>
Error:
</b>
{{ error }}
</div>
<form
class=
"form-inline"
>
<button
title=
"refresh"
class=
"btn"
ng-click=
"refresh()"
><i
class=
"fa fa-repeat"
></i></button>
<div
class=
"input-prepend input-append"
>
<button
title=
"auto refresh"
class=
"btn"
ng-click=
"toggleAutoRefresh()"
ng-class=
"{'active':refresher != null}"
>
<i
class=
"fa fa-refresh"
ng-class=
"{'fa-spin':refresher != null}"
></i>
</button>
<input
class=
"input-mini"
type=
"number"
min=
"1"
ng-model=
"refreshInterval"
ng-disabled=
"refresher != null"
/>
<span
class=
"add-on"
>
sec
</span>
</div>
<input
placeholder=
"Filter"
class=
"input-xxlarge"
type=
"search"
ng-model=
"searchFilter"
/>
</div
>
<ul
class=
"timeline"
>
<li
ng-repeat=
"trace in traces | filter:searchFilter"
>
<sba-trace
value=
"trace"
></sba-trace>
</li>
</ul>
</div>
<input
class=
"input-mini"
type=
"number"
min=
"1"
ng-model=
"refreshInterval"
ng-disabled=
"refresher != null"
/>
<span
class=
"add-on"
>
sec
</span>
</div>
<input
placeholder=
"Filter"
class=
"input-xxlarge"
type=
"search"
ng-model=
"searchFilter"
/>
</form
>
<ul
class=
"timeline"
>
<li
ng-repeat=
"trace in traces | filter:searchFilter"
>
<sba-trace
value=
"trace"
></sba-trace>
</li>
</ul>
</div>
\ No newline at end of file
spring-boot-admin-server-ui/modules/applications/css/module.css
View file @
495b631a
.header--application
{
margin
-bottom
:
20px
;
margin
:
-20px
0
20px
0
;
font-size
:
15px
;
}
.header--application
.navbar-inner
{
...
...
spring-boot-admin-server-ui/package.json
View file @
495b631a
...
...
@@ -7,7 +7,7 @@
"test"
:
"karma start karma.conf.js"
,
"watch:js"
:
"webpack -d --watch"
,
"watch:test"
:
"karma start karma.conf.js --watch"
,
"dev-server"
:
"webpack-dev-server --port 90
0
0 --host 0.0.0.0"
"dev-server"
:
"webpack-dev-server --port 90
9
0 --host 0.0.0.0"
},
"dependencies"
:
{
"angular"
:
"1.5.8"
,
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment