(api) fix missing metrics label in api service

This commit is contained in:
Viktor Lofgren 2024-01-02 15:41:38 +01:00
parent 7920c67a48
commit 57a4f92722

View File

@ -49,6 +49,7 @@ public class ApiService extends Service {
private static final Histogram wmsa_api_query_time = Histogram.build()
.name("wmsa_api_query_time")
.labelNames("key")
.linearBuckets(0.005, 0.005, 15)
.help("API-side query time")
.register();