public MetricsEndpointMiddleware(OwinMetricsEndpointConfig endpointConfig, MetricsRegistry registry, Func<HealthStatus> healthStatus)
 {
     this.endpointConfig = endpointConfig;
     this.registry = registry;
     this.healthStatus = healthStatus;
 }
 public MetricsEndpointMiddleware(OwinMetricsEndpointConfig endpointConfig, MetricsDataProvider dataProvider, Func <HealthStatus> healthStatus)
 {
     this.endpointConfig = endpointConfig;
     this.dataProvider   = dataProvider;
     this.healthStatus   = healthStatus;
 }
Example #3
0
 public MetricsEndpointMiddleware(OwinMetricsEndpointConfig endpointConfig, MetricsData metricsData, Func <HealthStatus> healthStatus)
 {
     this.endpointConfig = endpointConfig;
     this.metricsData    = metricsData;
     this.healthStatus   = healthStatus;
 }
 public MetricsEndpointMiddleware(OwinMetricsEndpointConfig endpointConfig, MetricsDataProvider dataProvider, Func<HealthStatus> healthStatus)
 {
     this.endpointConfig = endpointConfig;
     this.dataProvider = dataProvider;
     this.healthStatus = healthStatus;
 }