[feature] metric related fixed. (3x)

- active streamer gauge connected the wrong variable.
This commit is contained in:
dalbodeule
2025-07-16 19:23:50 +09:00
parent d7d4228063
commit db78bf3ff6

View File

@@ -14,7 +14,7 @@ object Metrics {
.register(registry)
var activeStreamer = 0.0
val activateGauge: Gauge = Gauge.builder("active_streamer_gauge", this) { streamer }
val activateGauge: Gauge = Gauge.builder("active_streamer_gauge", this) { activeStreamer }
.description("Current Active Streamer Count")
.register(registry)