10 changed files with 332 additions and 76 deletions
@ -0,0 +1,60 @@
@@ -0,0 +1,60 @@
|
||||
/* |
||||
* 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 java.util.concurrent.atomic.AtomicBoolean; |
||||
import java.util.function.Supplier; |
||||
|
||||
import io.micrometer.core.instrument.Meter; |
||||
import io.micrometer.core.instrument.config.MeterFilter; |
||||
import io.micrometer.core.instrument.config.MeterFilterReply; |
||||
import org.slf4j.Logger; |
||||
import org.slf4j.LoggerFactory; |
||||
|
||||
import org.springframework.util.Assert; |
||||
|
||||
/** |
||||
* {@link MeterFilter} to log only once a warning message and deny {@link Meter.Id}. |
||||
* |
||||
* @author Jon Schneider |
||||
* @author Dmytro Nosan |
||||
* @since 2.0.5 |
||||
*/ |
||||
public final class OnlyOnceLoggingDenyMeterFilter implements MeterFilter { |
||||
|
||||
private final Logger logger = LoggerFactory |
||||
.getLogger(OnlyOnceLoggingDenyMeterFilter.class); |
||||
|
||||
private final AtomicBoolean alreadyWarned = new AtomicBoolean(false); |
||||
|
||||
private final Supplier<String> message; |
||||
|
||||
public OnlyOnceLoggingDenyMeterFilter(Supplier<String> message) { |
||||
Assert.notNull(message, "Message must not be null"); |
||||
this.message = message; |
||||
} |
||||
|
||||
@Override |
||||
public MeterFilterReply accept(Meter.Id id) { |
||||
if (this.logger.isWarnEnabled() |
||||
&& this.alreadyWarned.compareAndSet(false, true)) { |
||||
this.logger.warn(this.message.get()); |
||||
} |
||||
return MeterFilterReply.DENY; |
||||
} |
||||
|
||||
} |
||||
@ -0,0 +1,46 @@
@@ -0,0 +1,46 @@
|
||||
/* |
||||
* 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.web; |
||||
|
||||
import org.springframework.web.bind.annotation.GetMapping; |
||||
import org.springframework.web.bind.annotation.RestController; |
||||
|
||||
/** |
||||
* Test controller used by metrics tests. |
||||
* |
||||
* @author Dmytro Nosan |
||||
* @author Stephane Nicoll |
||||
*/ |
||||
@RestController |
||||
public class TestController { |
||||
|
||||
@GetMapping("test0") |
||||
public String test0() { |
||||
return "test0"; |
||||
} |
||||
|
||||
@GetMapping("test1") |
||||
public String test1() { |
||||
return "test1"; |
||||
} |
||||
|
||||
@GetMapping("test2") |
||||
public String test2() { |
||||
return "test2"; |
||||
} |
||||
|
||||
} |
||||
66
spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/web/servlet/WebMvcMetricsAutoConfigurationTests.java → spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/metrics/web/servlet/WebMvcMetricsAutoConfigurationTests.java
66
spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/web/servlet/WebMvcMetricsAutoConfigurationTests.java → spring-boot-project/spring-boot-actuator-autoconfigure/src/test/java/org/springframework/boot/actuate/autoconfigure/metrics/web/servlet/WebMvcMetricsAutoConfigurationTests.java
Loading…
Reference in new issue