From 1ab6fef70a447efe273ef3bf8faf6218125f0515 Mon Sep 17 00:00:00 2001 From: kolaente Date: Mon, 12 Feb 2024 14:23:16 +0100 Subject: [PATCH] fix(metrics): typo --- pkg/metrics/active_users.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/metrics/active_users.go b/pkg/metrics/active_users.go index 394de8a83d..a4d973b297 100644 --- a/pkg/metrics/active_users.go +++ b/pkg/metrics/active_users.go @@ -69,7 +69,7 @@ func init() { func setupActiveUsersMetric() { err := registry.Register(promauto.NewGaugeFunc(prometheus.GaugeOpts{ Name: "vikunja_active_users", - Help: "The number of shares active within the last 30 seconds", + Help: "The number of users active within the last 30 seconds", }, func() float64 { allActiveUsers := activeUsersMap{} _, err := keyvalue.GetWithValue(activeUsersKey, &allActiveUsers)