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
Copy file name to clipboardExpand all lines: src/Identity/Core/src/SignInManagerMetrics.cs
+13-7Lines changed: 13 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -33,8 +33,8 @@ public SignInManagerMetrics(IMeterFactory meterFactory)
33
33
_rememberTwoFactorClientCounter=_meter.CreateCounter<long>(RememberTwoFactorCounterName,"count","The number of two factor clients remembered.");
34
34
_forgetTwoFactorCounter=_meter.CreateCounter<long>(ForgetTwoFactorCounterName,"count","The number of two factor clients forgotten.");
35
35
_checkPasswordCounter=_meter.CreateCounter<long>(CheckPasswordCounterName,"count","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,"count","The number of user principals signed in.");
37
-
_signOutUserPrincipalCounter=_meter.CreateCounter<long>(SignOutUserPrincipalCounterName,"count","The number of user principals signed out.");
36
+
_signInUserPrincipalCounter=_meter.CreateCounter<long>(SignInUserPrincipalCounterName,"count","The number of calls to sign in user principals.");
37
+
_signOutUserPrincipalCounter=_meter.CreateCounter<long>(SignOutUserPrincipalCounterName,"count","The number of calls to sign out user principals.");
0 commit comments