add @Timed("app.cas.authenticate")

This commit is contained in:
Michael Hoennig 2024-12-21 18:33:01 +01:00
parent 178b3cc515
commit 88952bef7d

View File

@ -1,5 +1,6 @@
package net.hostsharing.hsadminng.config; package net.hostsharing.hsadminng.config;
import io.micrometer.core.annotation.Timed;
import lombok.SneakyThrows; import lombok.SneakyThrows;
import org.apache.commons.lang3.StringUtils; import org.apache.commons.lang3.StringUtils;
import org.springframework.beans.factory.annotation.Value; import org.springframework.beans.factory.annotation.Value;
@ -25,6 +26,7 @@ public class CasAuthenticator implements Authenticator {
private final RestTemplate restTemplate = new RestTemplate(); private final RestTemplate restTemplate = new RestTemplate();
@SneakyThrows @SneakyThrows
@Timed("app.cas.authenticate")
public String authenticate(final HttpServletRequest httpRequest) { public String authenticate(final HttpServletRequest httpRequest) {
final var userName = StringUtils.isBlank(casServerUrl) final var userName = StringUtils.isBlank(casServerUrl)
? bypassCurrentSubject(httpRequest) ? bypassCurrentSubject(httpRequest)