1 write to _meter
Microsoft.Extensions.Identity.Core (1)
UserManagerMetrics.cs (1)
34
_meter
= meterFactory.Create(MeterName);
7 references to _meter
Microsoft.Extensions.Identity.Core (7)
UserManagerMetrics.cs (7)
35
_createCounter =
_meter
.CreateCounter<long>(CreateCounterName, "{user}", "The number of users created.");
36
_updateCounter =
_meter
.CreateCounter<long>(UpdateCounterName, "{user}", "The number of users updated.");
37
_deleteCounter =
_meter
.CreateCounter<long>(DeleteCounterName, "{user}", "The number of users deleted.");
38
_checkPasswordCounter =
_meter
.CreateCounter<long>(CheckPasswordCounterName, "{check}", "The number of check password attempts. Only checks whether the password is valid and not whether the user account is in a state that can log in.");
39
_verifyTokenCounter =
_meter
.CreateCounter<long>(VerifyTokenCounterName, "{count}", "The number of token verification attempts.");
40
_generateTokenCounter =
_meter
.CreateCounter<long>(GenerateTokenCounterName, "{count}", "The number of token generation attempts.");
255
_meter
.Dispose();