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, "count", "The number of users created.");
36
_updateCounter =
_meter
.CreateCounter<long>(UpdateCounterName, "count", "The number of user updates.");
37
_deleteCounter =
_meter
.CreateCounter<long>(DeleteCounterName, "count", "The number of users deleted.");
38
_checkPasswordCounter =
_meter
.CreateCounter<long>(CheckPasswordCounterName, "count", "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.");
253
_meter
.Dispose();