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
aae9cc78
Commit
aae9cc78
authored
Nov 16, 2014
by
Thomas Bosch
Committed by
Johannes Stelzer
Nov 19, 2014
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Enable setting custom contextPath
parent
da6cce71
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
43 additions
and
44 deletions
+43
-44
application.properties
...ot-admin-sample/src/main/resources/application.properties
+0
-1
pom.xml
spring-boot-admin-server/pom.xml
+1
-1
index.html
spring-boot-admin-server/src/main/webapp/public/index.html
+20
-20
app.js
...g-boot-admin-server/src/main/webapp/public/scripts/app.js
+0
-1
services.js
...erver/src/main/webapp/public/scripts/services/services.js
+17
-17
AdminClientProperties.java
.../codecentric/boot/admin/config/AdminClientProperties.java
+1
-1
SpringBootAdminRegistrator.java
...ntric/boot/admin/services/SpringBootAdminRegistrator.java
+4
-3
No files found.
spring-boot-admin-samples/spring-boot-admin-sample/src/main/resources/application.properties
View file @
aae9cc78
...
...
@@ -4,5 +4,4 @@ info.version=@pom.version@
info.stage
=
test
logging.file
=
/tmp/log.log
spring.application.name
=
@pom.artifactId@
spring.boot.admin.url
=
http://localhost:8080
spring-boot-admin-server/pom.xml
View file @
aae9cc78
...
...
@@ -65,7 +65,7 @@
<dependency>
<groupId>
org.webjars
</groupId>
<artifactId>
angular-ui-bootstrap
</artifactId>
</dependency>
</dependency>
<!-- Test -->
<dependency>
<groupId>
junit
</groupId>
...
...
spring-boot-admin-server/src/main/webapp/public/index.html
View file @
aae9cc78
...
...
@@ -6,11 +6,11 @@
<title>
Spring Boot Admin
</title>
<meta
name=
"description"
content=
""
>
<meta
name=
"viewport"
content=
"width=device-width"
>
<link
rel=
"shortcut icon"
type=
"image/x-icon"
href=
"
/
img/favicon.png"
/>
<link
rel=
"shortcut icon"
type=
"image/x-icon"
href=
"img/favicon.png"
/>
<link
href=
"https://fonts.googleapis.com/css?family=Varela+Round|Montserrat:400,700"
rel=
"stylesheet"
type=
"text/css"
>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"
/
webjars/bootstrap/${bootstrap.version}/css/bootstrap.min.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"
/
webjars/nvd3/${nvd3.version}/nv.d3.min.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"
/
styles/main.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"webjars/bootstrap/${bootstrap.version}/css/bootstrap.min.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"webjars/nvd3/${nvd3.version}/nv.d3.min.css"
/>
<link
rel=
"stylesheet"
type=
"text/css"
href=
"styles/main.css"
/>
</head>
<body
ng-app=
"springBootAdmin"
>
<script
type=
"text/javascript"
>
...
...
@@ -47,21 +47,21 @@
</div>
</footer>
</div>
<script
src=
"
/
webjars/jquery/${jquery.version}/jquery.min.js"
></script>
<script
src=
"
/
webjars/angularjs/${angularjs.version}/angular.min.js"
></script>
<script
src=
"
/
webjars/bootstrap/${bootstrap.version}/js/bootstrap.min.js"
></script>
<script
src=
"
/
webjars/angularjs/${angularjs.version}/angular-resource.min.js"
></script>
<script
src=
"
/
webjars/angularjs/${angularjs.version}/angular-route.min.js"
></script>
<script
src=
"
/
webjars/angular-ui-router/0.2.10/angular-ui-router.min.js"
></script>
<script
src=
"
/
webjars/angular-ui-bootstrap/${angular-ui-bootstrap.version}/ui-bootstrap.min.js"
></script>
<script
src=
"
/
webjars/angular-ui-bootstrap/${angular-ui-bootstrap.version}/ui-bootstrap-tpls.min.js"
></script>
<script
src=
"
/
webjars/d3js/${d3js.version}/d3.min.js"
></script>
<script
src=
"
/
webjars/nvd3/${nvd3.version}/nv.d3.min.js"
></script>
<script
src=
"
/
webjars/angularjs-nvd3-directives/0.0.7/angularjs-nvd3-directives.js"
></script>
<script
src=
"
/
webjars/jolokia.js/${jolokia-js.version}/jolokia.js"
></script>
<script
src=
"
/
scripts/app.js"
></script>
<script
src=
"
/
scripts/controllers/controllers.js"
></script>
<script
src=
"
/
scripts/services/services.js"
></script>
<script
src=
"
/
scripts/filters/filters.js"
></script>
<script
src=
"webjars/jquery/${jquery.version}/jquery.min.js"
></script>
<script
src=
"webjars/angularjs/${angularjs.version}/angular.min.js"
></script>
<script
src=
"webjars/bootstrap/${bootstrap.version}/js/bootstrap.min.js"
></script>
<script
src=
"webjars/angularjs/${angularjs.version}/angular-resource.min.js"
></script>
<script
src=
"webjars/angularjs/${angularjs.version}/angular-route.min.js"
></script>
<script
src=
"webjars/angular-ui-router/0.2.10/angular-ui-router.min.js"
></script>
<script
src=
"webjars/angular-ui-bootstrap/${angular-ui-bootstrap.version}/ui-bootstrap.min.js"
></script>
<script
src=
"webjars/angular-ui-bootstrap/${angular-ui-bootstrap.version}/ui-bootstrap-tpls.min.js"
></script>
<script
src=
"webjars/d3js/${d3js.version}/d3.min.js"
></script>
<script
src=
"webjars/nvd3/${nvd3.version}/nv.d3.min.js"
></script>
<script
src=
"webjars/angularjs-nvd3-directives/0.0.7/angularjs-nvd3-directives.js"
></script>
<script
src=
"webjars/jolokia.js/${jolokia-js.version}/jolokia.js"
></script>
<script
src=
"scripts/app.js"
></script>
<script
src=
"scripts/controllers/controllers.js"
></script>
<script
src=
"scripts/services/services.js"
></script>
<script
src=
"scripts/filters/filters.js"
></script>
</body>
</html>
spring-boot-admin-server/src/main/webapp/public/scripts/app.js
View file @
aae9cc78
...
...
@@ -92,5 +92,4 @@ angular.module('springBootAdmin', [
.
run
(
function
(
$rootScope
,
$state
,
$stateParams
,
$log
)
{
$rootScope
.
$state
=
$state
;
$rootScope
.
$stateParams
=
$stateParams
;
$rootScope
.
springBootAdminServerUrl
=
window
.
location
.
protocol
+
'//'
+
window
.
location
.
host
;
});
spring-boot-admin-server/src/main/webapp/public/scripts/services/services.js
View file @
aae9cc78
...
...
@@ -18,22 +18,22 @@
angular
.
module
(
'springBootAdmin.services'
,
[
'ngResource'
])
.
factory
(
'Applications'
,
[
'$resource'
,
function
(
$resource
)
{
return
$resource
(
'
/
api/applications'
,
{},
{
'api/applications'
,
{},
{
query
:
{
method
:
'GET'
,
isArray
:
true
}
});
}
])
.
factory
(
'Application'
,
[
'$resource'
,
function
(
$resource
)
{
return
$resource
(
'
/
api/application/:id'
,
{},
{
'api/application/:id'
,
{},
{
query
:
{
method
:
'GET'
},
remove
:
{
method
:
'DELETE'
}
remove
:
{
method
:
'DELETE'
}
});
}
])
.
service
(
'ApplicationOverview'
,
[
'$http'
,
function
(
$http
)
{
this
.
getInfo
=
function
(
app
)
{
return
$http
.
get
(
app
.
url
+
'/info'
).
success
(
function
(
response
)
{
return
$http
.
get
(
app
.
url
+
'/info
/
'
).
success
(
function
(
response
)
{
app
.
version
=
response
.
version
;
delete
response
.
version
;
app
.
info
=
response
;
...
...
@@ -42,7 +42,7 @@ angular.module('springBootAdmin.services', ['ngResource'])
});
}
this
.
getHealth
=
function
(
app
)
{
return
$http
.
get
(
app
.
url
+
'/health'
).
success
(
function
(
response
)
{
return
$http
.
get
(
app
.
url
+
'/health
/
'
).
success
(
function
(
response
)
{
app
.
status
=
response
.
status
;
}).
error
(
function
(
response
,
httpStatus
)
{
if
(
httpStatus
===
503
)
{
...
...
@@ -55,7 +55,7 @@ angular.module('springBootAdmin.services', ['ngResource'])
});
}
this
.
getLogfile
=
function
(
app
)
{
return
$http
.
head
(
app
.
url
+
'/logfile'
).
success
(
function
(
response
)
{
return
$http
.
head
(
app
.
url
+
'/logfile
/
'
).
success
(
function
(
response
)
{
app
.
providesLogfile
=
true
;
}).
error
(
function
()
{
app
.
providesLogfile
=
false
;
...
...
@@ -64,16 +64,16 @@ angular.module('springBootAdmin.services', ['ngResource'])
}])
.
service
(
'ApplicationDetails'
,
[
'$http'
,
function
(
$http
)
{
this
.
getInfo
=
function
(
app
)
{
return
$http
.
get
(
app
.
url
+
'/info'
);
return
$http
.
get
(
app
.
url
+
'/info
/
'
);
}
this
.
getMetrics
=
function
(
app
)
{
return
$http
.
get
(
app
.
url
+
'/metrics'
);
return
$http
.
get
(
app
.
url
+
'/metrics
/
'
);
}
this
.
getEnv
=
function
(
app
)
{
return
$http
.
get
(
app
.
url
+
'/env'
);
return
$http
.
get
(
app
.
url
+
'/env
/
'
);
}
this
.
getHealth
=
function
(
app
)
{
return
$http
.
get
(
app
.
url
+
'/health'
);
return
$http
.
get
(
app
.
url
+
'/health
/
'
);
}
}])
...
...
@@ -85,15 +85,15 @@ angular.module('springBootAdmin.services', ['ngResource'])
for
(
var
j
in
loggers
)
{
requests
.
push
({
type
:
'exec'
,
mbean
:
LOGBACK_MBEAN
,
operation
:
'getLoggerEffectiveLevel'
,
arguments
:
[
loggers
[
j
].
name
]
})
}
return
jolokia
.
bulkRequest
(
app
.
url
+
'/jolokia'
,
requests
);
return
jolokia
.
bulkRequest
(
app
.
url
+
'/jolokia
/
'
,
requests
);
}
this
.
setLoglevel
=
function
(
app
,
logger
,
level
)
{
return
jolokia
.
exec
(
app
.
url
+
'/jolokia'
,
LOGBACK_MBEAN
,
'setLoggerLevel'
,
[
logger
,
level
]
);
return
jolokia
.
exec
(
app
.
url
+
'/jolokia
/
'
,
LOGBACK_MBEAN
,
'setLoggerLevel'
,
[
logger
,
level
]
);
}
this
.
getAllLoggers
=
function
(
app
)
{
return
jolokia
.
readAttr
(
app
.
url
+
'/jolokia'
,
LOGBACK_MBEAN
,
'LoggerList'
);
return
jolokia
.
readAttr
(
app
.
url
+
'/jolokia
/
'
,
LOGBACK_MBEAN
,
'LoggerList'
);
}
}])
.
service
(
'ApplicationJMX'
,
[
'$rootScope'
,
'Abbreviator'
,
'Jolokia'
,
function
(
$rootScope
,
Abbreviator
,
jolokia
)
{
...
...
@@ -156,15 +156,15 @@ angular.module('springBootAdmin.services', ['ngResource'])
}
this
.
readAllAttr
=
function
(
app
,
bean
)
{
return
jolokia
.
read
(
app
.
url
+
'/jolokia'
,
bean
.
id
)
return
jolokia
.
read
(
app
.
url
+
'/jolokia
/
'
,
bean
.
id
)
}
this
.
writeAttr
=
function
(
app
,
bean
,
attr
,
val
)
{
return
jolokia
.
writeAttr
(
app
.
url
+
'/jolokia'
,
bean
.
id
,
attr
,
val
);
return
jolokia
.
writeAttr
(
app
.
url
+
'/jolokia
/
'
,
bean
.
id
,
attr
,
val
);
}
this
.
invoke
=
function
(
app
,
bean
,
opname
,
args
)
{
return
jolokia
.
exec
(
app
.
url
+
'/jolokia'
,
bean
.
id
,
opname
,
args
);
return
jolokia
.
exec
(
app
.
url
+
'/jolokia
/
'
,
bean
.
id
,
opname
,
args
);
}
}])
...
...
@@ -328,6 +328,6 @@ angular.module('springBootAdmin.services', ['ngResource'])
}])
.
service
(
'ApplicationThreads'
,
[
'$http'
,
function
(
$http
)
{
this
.
getDump
=
function
(
app
)
{
return
$http
.
get
(
app
.
url
+
'/dump'
);
return
$http
.
get
(
app
.
url
+
'/dump
/
'
);
}
}]);
spring-boot-starter-admin-client/src/main/java/de/codecentric/boot/admin/config/AdminClientProperties.java
View file @
aae9cc78
...
...
@@ -21,7 +21,7 @@ import org.springframework.boot.context.properties.ConfigurationProperties;
@ConfigurationProperties
(
prefix
=
"spring.boot.admin.client"
,
ignoreUnknownFields
=
false
)
public
class
AdminClientProperties
{
@Value
(
"http://#{T(java.net.InetAddress).localHost.canonicalHostName}:${
server.port:${management.port:8080}
}${management.context-path:/}"
)
@Value
(
"http://#{T(java.net.InetAddress).localHost.canonicalHostName}:${
management.port:${server.port:8080}}${server.contextPath:/
}${management.context-path:/}"
)
private
String
url
;
@Value
(
"${spring.application.name:spring-boot-application}"
)
...
...
spring-boot-starter-admin-client/src/main/java/de/codecentric/boot/admin/services/SpringBootAdminRegistrator.java
View file @
aae9cc78
...
...
@@ -51,10 +51,10 @@ public class SpringBootAdminRegistrator {
*/
public
boolean
register
()
{
Application
app
=
createApplication
();
String
adminUrl
=
adminProps
.
getUrl
()
+
'/'
+
adminProps
.
getContextPath
();
try
{
ResponseEntity
<
Application
>
response
=
template
.
postForEntity
(
adminProps
.
getUrl
()
+
'/'
+
adminProps
.
getContextPath
(),
app
,
Application
.
class
);
ResponseEntity
<
Application
>
response
=
template
.
postForEntity
(
adminUrl
,
app
,
Application
.
class
);
if
(
response
.
getStatusCode
().
equals
(
HttpStatus
.
CREATED
))
{
LOGGER
.
info
(
"Application registered itself as {}"
,
response
.
getBody
());
...
...
@@ -68,7 +68,8 @@ public class SpringBootAdminRegistrator {
}
}
catch
(
Exception
ex
)
{
LOGGER
.
warn
(
"Failed to register application as {} at spring-boot-admin: {}"
,
app
,
ex
.
getMessage
());
LOGGER
.
warn
(
"Failed to register application as {} at spring-boot-admin ({}): {}"
,
app
,
adminUrl
,
ex
.
getMessage
());
}
return
false
;
...
...
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