예제 #1
0
 internal PrometheusReporter(MetricsConfiguration config) : this(
         config.Host,
         config.Port,
         config.Namespace,
         config.CustomMetrics
         )
 {
 }
예제 #2
0
 internal MetricsReporter(MetricsConfiguration config)
 {
     _prometheusServer = new PrometheusReporter(config);
     _pitayaMetrics    = new PitayaReporter(_prometheusServer);
 }