From b3b0d3b5dddcf8e394374f8e0a165e2e801898d2 Mon Sep 17 00:00:00 2001 From: Cecylia Bocovich Date: Thu, 2 Nov 2023 15:42:31 -0400 Subject: [PATCH] Document that prometheus transfer metrics are in KB --- proxy/lib/metrics.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/proxy/lib/metrics.go b/proxy/lib/metrics.go index adae459..0cd0824 100644 --- a/proxy/lib/metrics.go +++ b/proxy/lib/metrics.go @@ -28,12 +28,12 @@ func NewMetrics() *Metrics { totalInBoundTraffic: prometheus.NewCounter(prometheus.CounterOpts{ Namespace: metricNamespace, Name: "traffic_inbound_bytes_total", - Help: "The total in bound traffic by the snowflake proxy", + Help: "The total in bound traffic by the snowflake proxy (KB)", }), totalOutBoundTraffic: prometheus.NewCounter(prometheus.CounterOpts{ Namespace: metricNamespace, Name: "traffic_outbound_bytes_total", - Help: "The total out bound traffic by the snowflake proxy ", + Help: "The total out bound traffic by the snowflake proxy (KB)", }), } }