add @Timed("app.cas.authenticate")
This commit is contained in:
parent
178b3cc515
commit
88952bef7d
@ -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)
|
||||||
|
Loading…
Reference in New Issue
Block a user