From 950ef0c4025e99804b727285bd982e119cfb8bd9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemek=20Weso=C5=82ek?= Date: Fri, 15 Nov 2024 16:26:37 +0100 Subject: [PATCH] Fix tui_session_seconds_total metric description (#602) --- pkg/ssh/session.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/ssh/session.go b/pkg/ssh/session.go index 290436ca9..aecd46195 100644 --- a/pkg/ssh/session.go +++ b/pkg/ssh/session.go @@ -29,7 +29,7 @@ var tuiSessionDuration = promauto.NewCounterVec(prometheus.CounterOpts{ Namespace: "soft_serve", Subsystem: "ssh", Name: "tui_session_seconds_total", - Help: "The total number of TUI sessions", + Help: "The total time spent in TUI sessions", }, []string{"repo", "term"}) // SessionHandler is the soft-serve bubbletea ssh session handler.