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
b94d1645
Commit
b94d1645
authored
Jun 25, 2017
by
Johannes Edmeier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix wrong path of loggers endpoint
fixes #477
parent
a92150d4
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
7 deletions
+1
-7
logback-spring.xml
...g-boot-admin-sample/src/main/resources/logback-spring.xml
+0
-6
module.js
...ot-admin-server-ui/modules/applications-logging/module.js
+1
-1
No files found.
spring-boot-admin-samples/spring-boot-admin-sample/src/main/resources/logback-spring.xml
deleted
100644 → 0
View file @
a92150d4
<?xml version="1.0" encoding="UTF-8"?>
<configuration>
<include
resource=
"org/springframework/boot/logging/logback/base.xml"
/>
<jmxConfigurator/>
</configuration>
\ No newline at end of file
spring-boot-admin-server-ui/modules/applications-logging/module.js
View file @
b94d1645
...
...
@@ -39,7 +39,7 @@ module.run(function (ApplicationViews, $sce, $http) {
title
:
$sce
.
trustAsHtml
(
'<i class="fa fa-sliders fa-fw"></i>Logging'
),
state
:
'applications.logging'
,
show
:
function
(
application
)
{
return
$http
.
head
(
'api/applications/'
+
application
.
id
+
'/logg
ing
'
).
then
(
function
()
{
return
$http
.
head
(
'api/applications/'
+
application
.
id
+
'/logg
ers
'
).
then
(
function
()
{
return
true
;
}).
catch
(
function
()
{
return
$http
.
head
(
'api/applications/'
+
application
.
id
+
'/jolokia'
).
then
(
function
()
{
...
...
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