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
_createCounter=_meter.CreateCounter<long>(CreateCounterName,"{create}","The number of users created.");
36
-
_updateCounter=_meter.CreateCounter<long>(UpdateCounterName,"{update}","The number of user updates.");
37
-
_deleteCounter=_meter.CreateCounter<long>(DeleteCounterName,"{delete}","The number of users deleted.");
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
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
39
_verifyTokenCounter=_meter.CreateCounter<long>(VerifyTokenCounterName,"{count}","The number of token verification attempts.");
40
40
_generateTokenCounter=_meter.CreateCounter<long>(GenerateTokenCounterName,"{count}","The number of token generation attempts.");
0 commit comments