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();