Exemplo n.º 1
0
 public static Gauge CreateGauge(string name, string help, params string[] labelNames)
 {
     return(DefaultFactory.CreateGauge(name, help, labelNames));
 }
Exemplo n.º 2
0
 public static Gauge CreateGauge(string name, string help, GaugeConfiguration configuration) =>
 DefaultFactory.CreateGauge(name, help, configuration);
Exemplo n.º 3
0
 /// <inheritdoc/>
 public Gauge Gauge(string name, string help, GaugeConfiguration configuration = null)
 {
     return(_innerMetricFactory.CreateGauge(name, help, configuration));
 }