mirror of
https://github.com/Caraxi/mare.server.git
synced 2025-12-12 22:17:22 +01:00
fix bug
This commit is contained in:
parent
203fa1b194
commit
23eef94daf
1 changed files with 4 additions and 1 deletions
|
|
@ -17,7 +17,10 @@ public class MareMetrics
|
||||||
foreach (var gauge in gaugesToServe)
|
foreach (var gauge in gaugesToServe)
|
||||||
{
|
{
|
||||||
logger.LogInformation($"Creating Metric for Counter {gauge}");
|
logger.LogInformation($"Creating Metric for Counter {gauge}");
|
||||||
_gauges.Add(gauge, Prometheus.Metrics.CreateGauge(gauge, gauge));
|
if (!string.Equals(gauge, MetricsAPI.GaugeConnections, StringComparison.OrdinalIgnoreCase))
|
||||||
|
_gauges.Add(gauge, Prometheus.Metrics.CreateGauge(gauge, gauge));
|
||||||
|
else
|
||||||
|
_gauges.Add(gauge, Prometheus.Metrics.CreateGauge(gauge, gauge, new[] { "continent" }));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue