Grpc-MicroService
Grpc-MicroService copied to clipboard
GRPC based Micro-Service Framework (.net core 2.0)
Results
1
Grpc-MicroService issues
Sort by
recently updated
recently updated
newest added
public static IMicroServiceSetupBuilder UseAppMetrics(this IMicroServiceSetupBuilder config) { var metrics = config.Server.ApplicationServices.GetService(); config.Server.UseInterceptor(new GrpcMetricsServerInterceptor(config.Server.ApplicationServices)); new AppMetricsTaskScheduler(TimeSpan.FromSeconds(3), async () => { await Task.WhenAll(metrics.ReportRunner.RunAllAsync()); }).Start(); return config; } 其中执行AppMetricsTaskScheduler的作用是什么