1 write to _meter
Microsoft.AspNetCore.Identity (1)
SignInManagerMetrics.cs (1)
30
_meter
= meterFactory.Create(MeterName);
7 references to _meter
Microsoft.AspNetCore.Identity (7)
SignInManagerMetrics.cs (7)
32
_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, "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 calls to sign in user principals.");
37
_signOutUserPrincipalCounter =
_meter
.CreateCounter<long>(SignOutUserPrincipalCounterName, "count", "The number of calls to sign out user principals.");
148
_meter
.Dispose();