From 52d7674668e763b539b88e71d8837c3c134980e7 Mon Sep 17 00:00:00 2001 From: Hugo Shaka Date: Thu, 16 Jan 2025 17:20:55 -0500 Subject: [PATCH] Update rfd/0197-prometheus-metrics.md Co-authored-by: rosstimothy <39066650+rosstimothy@users.noreply.github.com> --- rfd/0197-prometheus-metrics.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rfd/0197-prometheus-metrics.md b/rfd/0197-prometheus-metrics.md index 8d2d5be17452b..fbe4391e33e73 100644 --- a/rfd/0197-prometheus-metrics.md +++ b/rfd/0197-prometheus-metrics.md @@ -40,7 +40,7 @@ This poses several challenges: func NewService(log *slog.Logger, reg prometheus.Registerer) (Service, error) { myMetric := prometheus.NewGauge(prometheus.GaugeOpts{ Namespace: teleport.MetricNamespace, - Subsystem: metricsSubsystem, + Subsystem: metricsSubsystem, Name: "my_metric", Help: "Measures the number of foos doing bars.", }),