You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_authenticateCounter=_meter.CreateCounter<long>(AuthenticateCounterName,"{count}","The number of authenticate attempts. The authenticate counter is incremented by sign in methods such as PasswordSignInAsync and TwoFactorSignInAsync.");
33
-
_rememberTwoFactorClientCounter=_meter.CreateCounter<long>(RememberTwoFactorCounterName,"{count}","The number of two factor clients remembered.");
34
-
_forgetTwoFactorCounter=_meter.CreateCounter<long>(ForgetTwoFactorCounterName,"{count}","The number of two factor clients forgotten.");
35
-
_checkPasswordCounter=_meter.CreateCounter<long>(CheckPasswordCounterName,"{check}","The number of check password attempts. Checks that the account is in a state that can log in and that the password is valid using the UserManager.CheckPasswordAsync method.");
36
-
_signInUserPrincipalCounter=_meter.CreateCounter<long>(SignInUserPrincipalCounterName,"{sign_in}","The number of calls to sign in user principals.");
37
-
_signOutUserPrincipalCounter=_meter.CreateCounter<long>(SignOutUserPrincipalCounterName,"{sign_out}","The number of calls to sign out user principals.");
description:"The duration of authenticate attempts. The authenticate metrics is recorded by sign in methods such as PasswordSignInAsync and TwoFactorSignInAsync.",
description:"The total number of two factor clients forgotten.");
49
+
50
+
_checkPasswordCounter=_meter.CreateCounter<long>(
51
+
CheckPasswordAttemptsCounterName,
52
+
unit:"{attempt}",
53
+
description:"The total number of check password attempts. Checks that the account is in a state that can log in and that the password is valid using the UserManager.CheckPasswordAsync method.");
54
+
55
+
_signInsCounter=_meter.CreateCounter<long>(
56
+
SignInsCounterName,
57
+
unit:"{sign_in}",
58
+
description:"The total number of calls to sign in user principals.");
59
+
60
+
_signOutsCounter=_meter.CreateCounter<long>(
61
+
SignOutsCounterName,
62
+
unit:"{sign_out}",
63
+
description:"The total number of calls to sign out user principals.");
0 commit comments