repos / pico

pico services mono repo
git clone https://github.com/picosh/pico.git

commit
e20086a
parent
034d3f3
author
Eric Bower
date
2026-04-19 11:11:48 -0400 EDT
fix(pgs): gauge name si unit
1 files changed,  +1, -1
M pkg/apps/pgs/web.go
+1, -1
1@@ -60,7 +60,7 @@ func NewPromCacheMetrics(reg prometheus.Registerer) *PromCacheMetrics {
2 		CacheSizeBytes: auto.NewGauge(prometheus.GaugeOpts{
3 			Namespace: name,
4 			Subsystem: "http_cache",
5-			Name:      "total_size",
6+			Name:      "total_size_bytes",
7 			Help:      "The total size of the http cache in bytes",
8 		}),
9 		CacheHit: auto.NewCounter(prometheus.CounterOpts{