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
d577991a
Commit
d577991a
authored
May 13, 2015
by
Johannes Stelzer
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add httpsessions.active / .max to details view
closes #74
parent
4805d54c
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
15 additions
and
3 deletions
+15
-3
details.html
spring-boot-admin-server-ui/app/views/apps/details.html
+15
-3
No files found.
spring-boot-admin-server-ui/app/views/apps/details.html
View file @
d577991a
...
...
@@ -82,15 +82,15 @@
<td>
{{ metrics['classes']}}
</td>
</tr>
<tr>
<td>
Total loaded Classes
</td>
<td>
Total loaded Classes
</td>
<td>
{{ metrics['classes.loaded']}}
</td>
</tr>
<tr>
<td>
Unloaded Classes
</td>
<td>
Unloaded Classes
</td>
<td>
{{ metrics['classes.unloaded']}}
</td>
</tr>
<tr>
<td>
Threads
</td>
<td>
Threads
</td>
<td>
{{ metrics['threads'] }} total / {{ metrics['threads.daemon'] }} daemon / {{ metrics['threads.peak'] }} peak
</td>
</tr>
</tbody>
...
...
@@ -114,6 +114,18 @@
</table>
</div>
<div
class=
"span6"
ng-show=
"metrics['httpsessions.active'] != null"
>
<table
class=
"table"
>
<thead><tr><th
colspan=
"2"
>
Servlet Container
</th></tr></thead>
<tbody>
<tr>
<td>
Http sessions
</td>
<td>
{{ metrics['httpsessions.active'] }} active / {{ metrics['httpsessions.max'] == -1 ? 'unlimited' : metrics['httpsessions.max'] + ' max' }}
</td>
</tr>
</tbody>
</table>
</div>
<div
class=
"span6"
ng-show=
"hasDatasources"
>
<table
class=
"table"
>
<thead><tr><th
colspan=
"2"
>
Datasources
</th></tr></thead>
...
...
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