From 7c1395df7776f29eac79dc10aa75f4140ade7ef8 Mon Sep 17 00:00:00 2001 From: Stanley Dimant Date: Thu, 25 Aug 2022 20:33:30 +0200 Subject: [PATCH] update counter name --- .../Authentication/SecretKeyAuthenticationHandler.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/MareSynchronosServer/MareSynchronosServices/Authentication/SecretKeyAuthenticationHandler.cs b/MareSynchronosServer/MareSynchronosServices/Authentication/SecretKeyAuthenticationHandler.cs index 9977016..6d0e62e 100644 --- a/MareSynchronosServer/MareSynchronosServices/Authentication/SecretKeyAuthenticationHandler.cs +++ b/MareSynchronosServer/MareSynchronosServices/Authentication/SecretKeyAuthenticationHandler.cs @@ -118,7 +118,7 @@ public class SecretKeyAuthenticationHandler return new AuthReply() { Success = false, Uid = string.Empty }; } - metrics.IncCounter(MetricsAPI.CounterAuthenticationRequests); + metrics.IncCounter(MetricsAPI.CounterAuthenticationCacheHits); } }