Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
S
spring-boot
Project
Project
Details
Activity
Releases
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
DEMO
spring-boot
Commits
258c4838
Commit
258c4838
authored
Sep 21, 2018
by
Andy Wilkinson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Auto-configure Micrometer's Log4j2 metrics
Closes gh-14524
parent
0f7897a0
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
119 additions
and
0 deletions
+119
-0
pom.xml
...g-boot-project/spring-boot-actuator-autoconfigure/pom.xml
+5
-0
Log4J2MetricsAutoConfiguration.java
...autoconfigure/metrics/Log4J2MetricsAutoConfiguration.java
+48
-0
spring.factories
...utoconfigure/src/main/resources/META-INF/spring.factories
+1
-0
Log4J2MetricsAutoConfigurationTests.java
...onfigure/metrics/Log4J2MetricsAutoConfigurationTests.java
+64
-0
production-ready-features.adoc
...oot-docs/src/main/asciidoc/production-ready-features.adoc
+1
-0
No files found.
spring-boot-project/spring-boot-actuator-autoconfigure/pom.xml
View file @
258c4838
...
...
@@ -198,6 +198,11 @@
<artifactId>
commons-dbcp2
</artifactId>
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
org.apache.logging.log4j
</groupId>
<artifactId>
log4j-core
</artifactId>
<optional>
true
</optional>
</dependency>
<dependency>
<groupId>
org.apache.tomcat.embed
</groupId>
<artifactId>
tomcat-embed-core
</artifactId>
...
...
spring-boot-project/spring-boot-actuator-autoconfigure/src/main/java/org/springframework/boot/actuate/autoconfigure/metrics/Log4J2MetricsAutoConfiguration.java
0 → 100644
View file @
258c4838
/*
* Copyright 2012-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
actuate
.
autoconfigure
.
metrics
;
import
io.micrometer.core.instrument.MeterRegistry
;
import
io.micrometer.core.instrument.binder.logging.Log4j2Metrics
;
import
org.apache.logging.log4j.core.LoggerContext
;
import
org.springframework.boot.autoconfigure.AutoConfigureAfter
;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnBean
;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnClass
;
import
org.springframework.boot.autoconfigure.condition.ConditionalOnMissingBean
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.Configuration
;
/**
* Auto-configuration for Log4J2 metrics.
*
* @author Andy Wilkinson
* @since 2.1.0
*/
@Configuration
@AutoConfigureAfter
(
MetricsAutoConfiguration
.
class
)
@ConditionalOnClass
({
Log4j2Metrics
.
class
,
LoggerContext
.
class
})
@ConditionalOnBean
(
MeterRegistry
.
class
)
public
class
Log4J2MetricsAutoConfiguration
{
@Bean
@ConditionalOnMissingBean
public
Log4j2Metrics
log4j2Metrics
()
{
return
new
Log4j2Metrics
();
}
}
spring-boot-project/spring-boot-actuator-autoconfigure/src/main/resources/META-INF/spring.factories
View file @
258c4838
...
...
@@ -35,6 +35,7 @@ org.springframework.boot.actuate.autoconfigure.management.HeapDumpWebEndpointAut
org.springframework.boot.actuate.autoconfigure.management.ThreadDumpEndpointAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.metrics.CompositeMeterRegistryAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.metrics.JvmMetricsAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.metrics.Log4J2MetricsAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.metrics.LogbackMetricsAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.metrics.MetricsAutoConfiguration,\
org.springframework.boot.actuate.autoconfigure.metrics.MetricsEndpointAutoConfiguration,\
...
...
spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/metrics/Log4J2MetricsAutoConfigurationTests.java
0 → 100644
View file @
258c4838
/*
* Copyright 2012-2018 the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package
org
.
springframework
.
boot
.
actuate
.
autoconfigure
.
metrics
;
import
io.micrometer.core.instrument.binder.logging.Log4j2Metrics
;
import
org.junit.Test
;
import
org.springframework.boot.actuate.autoconfigure.metrics.test.MetricsRun
;
import
org.springframework.boot.autoconfigure.AutoConfigurations
;
import
org.springframework.boot.test.context.runner.ApplicationContextRunner
;
import
org.springframework.context.annotation.Bean
;
import
org.springframework.context.annotation.Configuration
;
import
static
org
.
assertj
.
core
.
api
.
Assertions
.
assertThat
;
/**
* Tests for {@link Log4J2MetricsAutoConfiguration}.
*
* @author Andy Wilkinson
*/
public
class
Log4J2MetricsAutoConfigurationTests
{
private
final
ApplicationContextRunner
contextRunner
=
new
ApplicationContextRunner
()
.
with
(
MetricsRun
.
simple
()).
withConfiguration
(
AutoConfigurations
.
of
(
Log4J2MetricsAutoConfiguration
.
class
));
@Test
public
void
autoConfiguresLog4J2Metrics
()
{
this
.
contextRunner
.
run
((
context
)
->
assertThat
(
context
).
hasSingleBean
(
Log4j2Metrics
.
class
));
}
@Test
public
void
allowsCustomLog4J2MetricsToBeUsed
()
{
this
.
contextRunner
.
withUserConfiguration
(
CustomLog4J2MetricsConfiguration
.
class
)
.
run
((
context
)
->
assertThat
(
context
).
hasSingleBean
(
Log4j2Metrics
.
class
)
.
hasBean
(
"customLog4J2Metrics"
));
}
@Configuration
static
class
CustomLog4J2MetricsConfiguration
{
@Bean
public
Log4j2Metrics
customLog4J2Metrics
()
{
return
new
Log4j2Metrics
();
}
}
}
spring-boot-project/spring-boot-docs/src/main/asciidoc/production-ready-features.adoc
View file @
258c4838
...
...
@@ -1707,6 +1707,7 @@ Spring Boot registers the following core metrics when applicable:
** Number of classes loaded/unloaded
* CPU metrics
* File descriptor metrics
* Log4j2 metrics: record the number of events logged to Log4j2 at each level
* Logback metrics: record the number of events logged to Logback at each level
* Uptime metrics: report a gauge for uptime and a fixed gauge representing the
application's absolute start time
...
...
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