Add property to specify the management access log prefix
See gh-43434
This commit is contained in:
parent
0cd843cea2
commit
020fd7b155
|
@ -57,6 +57,8 @@ public class ManagementServerProperties {
|
|||
@NestedConfigurationProperty
|
||||
private Ssl ssl;
|
||||
|
||||
private final Accesslog accesslog = new Accesslog();
|
||||
|
||||
/**
|
||||
* Returns the management port or {@code null} if the
|
||||
* {@link ServerProperties#getPort() server port} should be used.
|
||||
|
@ -117,4 +119,26 @@ public class ManagementServerProperties {
|
|||
return candidate;
|
||||
}
|
||||
|
||||
public Accesslog getAccesslog() {
|
||||
return this.accesslog;
|
||||
}
|
||||
|
||||
public static class Accesslog {
|
||||
|
||||
/**
|
||||
* Enable management access logs prefix customization
|
||||
* management.server.accesslog.prefix.
|
||||
*/
|
||||
private String prefix = "management_";
|
||||
|
||||
public String getPrefix() {
|
||||
return this.prefix;
|
||||
}
|
||||
|
||||
public void setPrefix(String prefix) {
|
||||
this.prefix = prefix;
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
@ -47,6 +47,7 @@ import org.springframework.boot.autoconfigure.web.embedded.UndertowWebServerFact
|
|||
import org.springframework.boot.autoconfigure.web.servlet.ServletWebServerFactoryCustomizer;
|
||||
import org.springframework.boot.autoconfigure.web.servlet.TomcatServletWebServerFactoryCustomizer;
|
||||
import org.springframework.boot.autoconfigure.web.servlet.UndertowServletWebServerFactoryCustomizer;
|
||||
import org.springframework.boot.context.properties.EnableConfigurationProperties;
|
||||
import org.springframework.boot.web.embedded.jetty.JettyServletWebServerFactory;
|
||||
import org.springframework.boot.web.embedded.tomcat.TomcatServletWebServerFactory;
|
||||
import org.springframework.boot.web.embedded.undertow.UndertowServletWebServerFactory;
|
||||
|
@ -73,6 +74,7 @@ import org.springframework.util.StringUtils;
|
|||
*/
|
||||
@ManagementContextConfiguration(value = ManagementContextType.CHILD, proxyBeanMethods = false)
|
||||
@ConditionalOnWebApplication(type = Type.SERVLET)
|
||||
@EnableConfigurationProperties(ManagementServerProperties.class)
|
||||
class ServletManagementChildContextConfiguration {
|
||||
|
||||
@Bean
|
||||
|
@ -83,20 +85,22 @@ class ServletManagementChildContextConfiguration {
|
|||
|
||||
@Bean
|
||||
@ConditionalOnClass(name = "io.undertow.Undertow")
|
||||
UndertowAccessLogCustomizer undertowManagementAccessLogCustomizer() {
|
||||
return new UndertowAccessLogCustomizer();
|
||||
UndertowAccessLogCustomizer undertowManagementAccessLogCustomizer(
|
||||
ManagementServerProperties managementServerProperties) {
|
||||
return new UndertowAccessLogCustomizer(managementServerProperties);
|
||||
}
|
||||
|
||||
@Bean
|
||||
@ConditionalOnClass(name = "org.apache.catalina.valves.AccessLogValve")
|
||||
TomcatAccessLogCustomizer tomcatManagementAccessLogCustomizer() {
|
||||
return new TomcatAccessLogCustomizer();
|
||||
TomcatAccessLogCustomizer tomcatManagementAccessLogCustomizer(
|
||||
ManagementServerProperties managementServerProperties) {
|
||||
return new TomcatAccessLogCustomizer(managementServerProperties);
|
||||
}
|
||||
|
||||
@Bean
|
||||
@ConditionalOnClass(name = "org.eclipse.jetty.server.Server")
|
||||
JettyAccessLogCustomizer jettyManagementAccessLogCustomizer() {
|
||||
return new JettyAccessLogCustomizer();
|
||||
JettyAccessLogCustomizer jettyManagementAccessLogCustomizer(ManagementServerProperties managementServerProperties) {
|
||||
return new JettyAccessLogCustomizer(managementServerProperties);
|
||||
}
|
||||
|
||||
@Configuration(proxyBeanMethods = false)
|
||||
|
@ -145,14 +149,18 @@ class ServletManagementChildContextConfiguration {
|
|||
|
||||
abstract static class AccessLogCustomizer implements Ordered {
|
||||
|
||||
private static final String MANAGEMENT_PREFIX = "management_";
|
||||
protected final ManagementServerProperties managementServerProperties;
|
||||
|
||||
AccessLogCustomizer(ManagementServerProperties managementServerProperties) {
|
||||
this.managementServerProperties = managementServerProperties;
|
||||
}
|
||||
|
||||
protected String customizePrefix(String prefix) {
|
||||
prefix = (prefix != null) ? prefix : "";
|
||||
if (prefix.startsWith(MANAGEMENT_PREFIX)) {
|
||||
if (prefix.startsWith(this.managementServerProperties.getAccesslog().getPrefix())) {
|
||||
return prefix;
|
||||
}
|
||||
return MANAGEMENT_PREFIX + prefix;
|
||||
return this.managementServerProperties.getAccesslog().getPrefix() + prefix;
|
||||
}
|
||||
|
||||
@Override
|
||||
|
@ -165,12 +173,17 @@ class ServletManagementChildContextConfiguration {
|
|||
static class TomcatAccessLogCustomizer extends AccessLogCustomizer
|
||||
implements WebServerFactoryCustomizer<TomcatServletWebServerFactory> {
|
||||
|
||||
TomcatAccessLogCustomizer(ManagementServerProperties managementServerProperties) {
|
||||
super(managementServerProperties);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void customize(TomcatServletWebServerFactory factory) {
|
||||
AccessLogValve accessLogValve = findAccessLogValve(factory);
|
||||
if (accessLogValve == null) {
|
||||
return;
|
||||
}
|
||||
|
||||
accessLogValve.setPrefix(customizePrefix(accessLogValve.getPrefix()));
|
||||
}
|
||||
|
||||
|
@ -188,6 +201,10 @@ class ServletManagementChildContextConfiguration {
|
|||
static class UndertowAccessLogCustomizer extends AccessLogCustomizer
|
||||
implements WebServerFactoryCustomizer<UndertowServletWebServerFactory> {
|
||||
|
||||
UndertowAccessLogCustomizer(ManagementServerProperties managementServerProperties) {
|
||||
super(managementServerProperties);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void customize(UndertowServletWebServerFactory factory) {
|
||||
factory.setAccessLogPrefix(customizePrefix(factory.getAccessLogPrefix()));
|
||||
|
@ -198,6 +215,10 @@ class ServletManagementChildContextConfiguration {
|
|||
static class JettyAccessLogCustomizer extends AccessLogCustomizer
|
||||
implements WebServerFactoryCustomizer<JettyServletWebServerFactory> {
|
||||
|
||||
JettyAccessLogCustomizer(ManagementServerProperties managementServerProperties) {
|
||||
super(managementServerProperties);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void customize(JettyServletWebServerFactory factory) {
|
||||
factory.addServerCustomizers(this::customizeServer);
|
||||
|
|
|
@ -68,4 +68,10 @@ class ManagementServerPropertiesTests {
|
|||
assertThat(properties.getBasePath()).isEmpty();
|
||||
}
|
||||
|
||||
@Test
|
||||
void accessLogsArePrefixedByDefault() {
|
||||
ManagementServerProperties properties = new ManagementServerProperties();
|
||||
assertThat(properties.getAccesslog().getPrefix()).isEqualTo("management_");
|
||||
}
|
||||
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue