コード例 #1
0
 public MetricsEndpointMiddleware(OwinMetricsEndpointConfig endpointConfig, MetricsRegistry registry, Func<HealthStatus> healthStatus)
 {
     this.endpointConfig = endpointConfig;
     this.registry = registry;
     this.healthStatus = healthStatus;
 }
コード例 #2
0
 public MetricsEndpointMiddleware(OwinMetricsEndpointConfig endpointConfig, MetricsDataProvider dataProvider, Func <HealthStatus> healthStatus)
 {
     this.endpointConfig = endpointConfig;
     this.dataProvider   = dataProvider;
     this.healthStatus   = healthStatus;
 }
コード例 #3
0
 public MetricsEndpointMiddleware(OwinMetricsEndpointConfig endpointConfig, MetricsData metricsData, Func <HealthStatus> healthStatus)
 {
     this.endpointConfig = endpointConfig;
     this.metricsData    = metricsData;
     this.healthStatus   = healthStatus;
 }
コード例 #4
0
 public MetricsEndpointMiddleware(OwinMetricsEndpointConfig endpointConfig, MetricsDataProvider dataProvider, Func<HealthStatus> healthStatus)
 {
     this.endpointConfig = endpointConfig;
     this.dataProvider = dataProvider;
     this.healthStatus = healthStatus;
 }