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
434042bf
Commit
434042bf
authored
Jan 19, 2015
by
Mariusz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed confusing '/' at the end of resources path
parent
443e1067
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
8 deletions
+8
-8
applicationDetails.js
...boot-admin-server-ui/app/js/service/applicationDetails.js
+4
-4
applicationOverview.js
...oot-admin-server-ui/app/js/service/applicationOverview.js
+3
-3
applicationThreads.js
...boot-admin-server-ui/app/js/service/applicationThreads.js
+1
-1
No files found.
spring-boot-admin-server-ui/app/js/service/applicationDetails.js
View file @
434042bf
...
@@ -17,18 +17,18 @@
...
@@ -17,18 +17,18 @@
module
.
exports
=
function
(
$http
)
{
module
.
exports
=
function
(
$http
)
{
this
.
getInfo
=
function
(
app
)
{
this
.
getInfo
=
function
(
app
)
{
return
$http
.
get
(
app
.
url
+
'/info
/
'
);
return
$http
.
get
(
app
.
url
+
'/info'
);
};
};
this
.
getMetrics
=
function
(
app
)
{
this
.
getMetrics
=
function
(
app
)
{
return
$http
.
get
(
app
.
url
+
'/metrics
/
'
);
return
$http
.
get
(
app
.
url
+
'/metrics'
);
};
};
this
.
getEnv
=
function
(
app
)
{
this
.
getEnv
=
function
(
app
)
{
return
$http
.
get
(
app
.
url
+
'/env
/
'
);
return
$http
.
get
(
app
.
url
+
'/env'
);
};
};
this
.
getHealth
=
function
(
app
)
{
this
.
getHealth
=
function
(
app
)
{
return
$http
.
get
(
app
.
url
+
'/health
/
'
);
return
$http
.
get
(
app
.
url
+
'/health'
);
};
};
};
};
spring-boot-admin-server-ui/app/js/service/applicationOverview.js
View file @
434042bf
...
@@ -17,7 +17,7 @@
...
@@ -17,7 +17,7 @@
module
.
exports
=
function
(
$http
)
{
module
.
exports
=
function
(
$http
)
{
this
.
getInfo
=
function
(
app
)
{
this
.
getInfo
=
function
(
app
)
{
return
$http
.
get
(
app
.
url
+
'/info
/
'
)
return
$http
.
get
(
app
.
url
+
'/info'
)
.
success
(
function
(
response
)
{
.
success
(
function
(
response
)
{
app
.
version
=
response
.
version
;
app
.
version
=
response
.
version
;
delete
response
.
version
;
delete
response
.
version
;
...
@@ -28,7 +28,7 @@ module.exports = function ($http) {
...
@@ -28,7 +28,7 @@ module.exports = function ($http) {
});
});
};
};
this
.
getHealth
=
function
(
app
)
{
this
.
getHealth
=
function
(
app
)
{
return
$http
.
get
(
app
.
url
+
'/health
/
'
)
return
$http
.
get
(
app
.
url
+
'/health'
)
.
success
(
function
(
response
)
{
.
success
(
function
(
response
)
{
app
.
status
=
response
.
status
;
app
.
status
=
response
.
status
;
})
})
...
@@ -43,7 +43,7 @@ module.exports = function ($http) {
...
@@ -43,7 +43,7 @@ module.exports = function ($http) {
});
});
};
};
this
.
getLogfile
=
function
(
app
)
{
this
.
getLogfile
=
function
(
app
)
{
return
$http
.
head
(
app
.
url
+
'/logfile
/
'
)
return
$http
.
head
(
app
.
url
+
'/logfile'
)
.
success
(
function
()
{
.
success
(
function
()
{
app
.
providesLogfile
=
true
;
app
.
providesLogfile
=
true
;
})
})
...
...
spring-boot-admin-server-ui/app/js/service/applicationThreads.js
View file @
434042bf
...
@@ -17,6 +17,6 @@
...
@@ -17,6 +17,6 @@
module
.
exports
=
function
(
$http
)
{
module
.
exports
=
function
(
$http
)
{
this
.
getDump
=
function
(
app
)
{
this
.
getDump
=
function
(
app
)
{
return
$http
.
get
(
app
.
url
+
'/dump
/
'
);
return
$http
.
get
(
app
.
url
+
'/dump'
);
};
};
};
};
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