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
2f0a896b
Commit
2f0a896b
authored
Jun 03, 2016
by
Johannes Edmeier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use custom attribute for info-panel-title
otherwise it gets mixed up whith the standard html title attribute
parent
b9400eee
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
15 deletions
+15
-15
details.html
...server-ui/modules/applications-details/views/details.html
+8
-8
environment.html
...i/modules/applications-environment/views/environment.html
+3
-3
flyway.html
...n-server-ui/modules/applications-flyway/views/flyway.html
+1
-1
metrics.html
...server-ui/modules/applications-metrics/views/metrics.html
+2
-2
infoPanel.js
...in-server-ui/modules/applications/components/infoPanel.js
+1
-1
No files found.
spring-boot-admin-server-ui/modules/applications-details/views/details.html
View file @
2f0a896b
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
<b>
Error:
</b>
{{ error }}
<b>
Error:
</b>
{{ error }}
</div>
</div>
<div
style=
"display: flex; flex-wrap: wrap; justify-content: space-around;"
>
<div
style=
"display: flex; flex-wrap: wrap; justify-content: space-around;"
>
<sba-info-panel
class=
"span5"
title=
"Application"
raw=
"api/applications/{{ application.id }}/info"
>
<sba-info-panel
class=
"span5"
panel-
title=
"Application"
raw=
"api/applications/{{ application.id }}/info"
>
<table
class=
"table"
>
<table
class=
"table"
>
<tr
ng-repeat=
"(key, value) in info"
>
<tr
ng-repeat=
"(key, value) in info"
>
<td
ng-bind=
"key"
></td>
<td
ng-bind=
"key"
></td>
...
@@ -10,25 +10,25 @@
...
@@ -10,25 +10,25 @@
</tr>
</tr>
</table>
</table>
</sba-info-panel>
</sba-info-panel>
<sba-info-panel
class=
"span5"
title=
"Health"
raw=
"api/applications/{{ application.id }}/health"
>
<sba-info-panel
class=
"span5"
panel-
title=
"Health"
raw=
"api/applications/{{ application.id }}/health"
>
<sba-health-status
health=
"health"
></sba-health-status>
<sba-health-status
health=
"health"
></sba-health-status>
</sba-info-panel>
</sba-info-panel>
<sba-info-panel
class=
"span5"
title=
"Memory"
raw=
"api/applications/{{ application.id }}/metrics/mem.*%7Cheap.*"
>
<sba-info-panel
class=
"span5"
panel-
title=
"Memory"
raw=
"api/applications/{{ application.id }}/metrics/mem.*%7Cheap.*"
>
<sba-memory-stats
metrics=
metrics
></sba-memory-stats>
<sba-memory-stats
metrics=
metrics
></sba-memory-stats>
</sba-info-panel>
</sba-info-panel>
<sba-info-panel
class=
"span5"
title=
"JVM"
raw=
"api/applications/{{ application.id }}/metrics/systemload.*%7Cclasses.*%7Cuptime%7Cprocessors%7Cthreads.*"
>
<sba-info-panel
class=
"span5"
panel-
title=
"JVM"
raw=
"api/applications/{{ application.id }}/metrics/systemload.*%7Cclasses.*%7Cuptime%7Cprocessors%7Cthreads.*"
>
<sba-jvm-stats
metrics=
"metrics"
></sba-jvm-stats>
<sba-jvm-stats
metrics=
"metrics"
></sba-jvm-stats>
</sba-info-panel>
</sba-info-panel>
<sba-info-panel
class=
"span5"
title=
"Garbage Collection"
raw=
"api/applications/{{ application.id }}/metrics/gc.*"
>
<sba-info-panel
class=
"span5"
panel-
title=
"Garbage Collection"
raw=
"api/applications/{{ application.id }}/metrics/gc.*"
>
<sba-gc-stats
metrics=
"metrics"
></sba-gc-stats>
<sba-gc-stats
metrics=
"metrics"
></sba-gc-stats>
</sba-info-panel>
</sba-info-panel>
<sba-info-panel
class=
"span5"
title=
"Servlet Container"
raw=
"api/applications/{{ application.id }}/metrics/httpsessions.*"
ng-show=
"metrics['httpsessions.active'] != null"
>
<sba-info-panel
class=
"span5"
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-servlet-container-stats
metrics=
"metrics"
></sba-servlet-container-stats>
</sba-info-panel>
</sba-info-panel>
<sba-info-panel
class=
"span5"
title=
"Datasources"
raw=
"api/applications/{{ application.id }}/metrics/datasource.*"
ng-show=
"hasDatasources"
>
<sba-info-panel
class=
"span5"
panel-
title=
"Datasources"
raw=
"api/applications/{{ application.id }}/metrics/datasource.*"
ng-show=
"hasDatasources"
>
<sba-datasource-stats
metrics=
"metrics"
></sba-datasource-stats>
<sba-datasource-stats
metrics=
"metrics"
></sba-datasource-stats>
</sba-info-panel>
</sba-info-panel>
<sba-info-panel
class=
"span5"
title=
"Caches"
raw=
"api/applications/{{ application.id }}/metrics/cache.*"
ng-show=
"hasCaches"
>
<sba-info-panel
class=
"span5"
panel-
title=
"Caches"
raw=
"api/applications/{{ application.id }}/metrics/cache.*"
ng-show=
"hasCaches"
>
<sba-cache-stats
metrics=
"metrics"
></sba-cache-stats>
<sba-cache-stats
metrics=
"metrics"
></sba-cache-stats>
</sba-info-panel>
</sba-info-panel>
</div>
</div>
spring-boot-admin-server-ui/modules/applications-environment/views/environment.html
View file @
2f0a896b
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
<b>
Error:
</b>
{{ error }}
<b>
Error:
</b>
{{ error }}
</div>
</div>
<sba-info-panel
title=
"Active profiles"
raw=
"api/applications/{{ application.id }}/env"
>
<sba-info-panel
panel-
title=
"Active profiles"
raw=
"api/applications/{{ application.id }}/env"
>
<table
class=
"table"
>
<table
class=
"table"
>
<tr>
<tr>
<td>
{{profiles.join(', ') || '-'}}
</td>
<td>
{{profiles.join(', ') || '-'}}
</td>
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
</table>
</table>
</sba-info-panel>
</sba-info-panel>
<sba-info-panel
title=
"Environment manager"
ng-show=
"application.capabilities.refresh"
>
<sba-info-panel
panel-
title=
"Environment manager"
ng-show=
"application.capabilities.refresh"
>
<sba-environment-manager
environment=
"env"
application=
"application"
on-environment-changed=
"refresh"
></sba-environment-manager>
<sba-environment-manager
environment=
"env"
application=
"application"
on-environment-changed=
"refresh"
></sba-environment-manager>
</sba-info-panel>
</sba-info-panel>
...
@@ -19,7 +19,7 @@
...
@@ -19,7 +19,7 @@
<button
class=
"btn"
title=
"reload list"
ng-click=
"refresh()"
><i
class=
"fa fa-repeat"
></i></button>
<button
class=
"btn"
title=
"reload list"
ng-click=
"refresh()"
><i
class=
"fa fa-repeat"
></i></button>
</div>
</div>
<sba-info-panel
category=
"PropertySource"
title=
"{{source.name}}"
ng-repeat=
"source in env"
ng-show=
"!searchFilter || (source.value | filter:searchFilter).length > 0"
>
<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"
>
<table
class=
"table"
>
<col
width=
"38%"
>
<col
width=
"38%"
>
<col
width=
"62%"
>
<col
width=
"62%"
>
...
...
spring-boot-admin-server-ui/modules/applications-flyway/views/flyway.html
View file @
2f0a896b
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
<input
placeholder=
"Filter"
class=
"input-xxlarge"
type=
"search"
ng-model=
"searchFilter"
/>
<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>
<button
class=
"btn"
title=
"reload list"
ng-click=
"refresh()"
><i
class=
"fa fa-repeat"
></i></button>
</div>
</div>
<sba-info-panel
title=
"Flyway Migrations"
raw=
"api/applications/{{ application.id }}/flyway"
>
<sba-info-panel
panel-
title=
"Flyway Migrations"
raw=
"api/applications/{{ application.id }}/flyway"
>
<table
class=
"table"
>
<table
class=
"table"
>
<thead>
<thead>
<th>
Type
</th>
<th>
Type
</th>
...
...
spring-boot-admin-server-ui/modules/applications-metrics/views/metrics.html
View file @
2f0a896b
<div
class=
"alert alert-error"
ng-if=
"error"
>
<div
class=
"alert alert-error"
ng-if=
"error"
>
<b>
Error:
</b>
{{ error }}
<b>
Error:
</b>
{{ error }}
</div>
</div>
<sba-info-panel
title=
"Counter"
raw=
"api/applications/{{ application.id }}/metrics/counter.*"
>
<sba-info-panel
panel-
title=
"Counter"
raw=
"api/applications/{{ application.id }}/metrics/counter.*"
>
<table
class=
"table"
ng-if=
"counters.length > 0"
>
<table
class=
"table"
ng-if=
"counters.length > 0"
>
<tr
ng-repeat=
"counter in counters"
>
<tr
ng-repeat=
"counter in counters"
>
<td>
<td>
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
</tr>
</tr>
</table>
</table>
</sba-info-panel>
</sba-info-panel>
<sba-info-panel
title=
"Gauges"
raw=
"api/applications/{{ application.id }}/metrics/gauge.*"
>
<sba-info-panel
panel-
title=
"Gauges"
raw=
"api/applications/{{ application.id }}/metrics/gauge.*"
>
<table
class=
"table"
ng-if=
"gauges.length > 0"
>
<table
class=
"table"
ng-if=
"gauges.length > 0"
>
<tr
ng-if=
"showRichGauges"
ng-repeat=
"gauge in gauges"
>
<tr
ng-if=
"showRichGauges"
ng-repeat=
"gauge in gauges"
>
<td>
<td>
...
...
spring-boot-admin-server-ui/modules/applications/components/infoPanel.js
View file @
2f0a896b
...
@@ -18,7 +18,7 @@
...
@@ -18,7 +18,7 @@
module
.
exports
=
{
module
.
exports
=
{
transclude
:
true
,
transclude
:
true
,
bindings
:
{
bindings
:
{
title
:
'@
t
itle'
,
title
:
'@
panelT
itle'
,
raw
:
'@raw'
,
raw
:
'@raw'
,
category
:
'@category'
category
:
'@category'
},
},
...
...
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