prometheus
This commit is contained in:
@@ -71,7 +71,7 @@ func (r *RPCServer) run() {
|
|||||||
promePkg.NewGrpcRequestFailedCounter()
|
promePkg.NewGrpcRequestFailedCounter()
|
||||||
promePkg.NewGrpcRequestSuccessCounter()
|
promePkg.NewGrpcRequestSuccessCounter()
|
||||||
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
||||||
grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
// grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
||||||
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
||||||
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
||||||
}...)
|
}...)
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ func (r *RPCServer) run() {
|
|||||||
promePkg.NewGrpcRequestFailedCounter()
|
promePkg.NewGrpcRequestFailedCounter()
|
||||||
promePkg.NewGrpcRequestSuccessCounter()
|
promePkg.NewGrpcRequestSuccessCounter()
|
||||||
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
||||||
grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
// grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
||||||
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
||||||
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
||||||
}...)
|
}...)
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ func (s *adminCMSServer) Run() {
|
|||||||
promePkg.NewGrpcRequestFailedCounter()
|
promePkg.NewGrpcRequestFailedCounter()
|
||||||
promePkg.NewGrpcRequestSuccessCounter()
|
promePkg.NewGrpcRequestSuccessCounter()
|
||||||
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
||||||
grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
// grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
||||||
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
||||||
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
||||||
}...)
|
}...)
|
||||||
|
|||||||
@@ -131,7 +131,7 @@ func (rpc *rpcAuth) Run() {
|
|||||||
promePkg.NewUserRegisterCounter()
|
promePkg.NewUserRegisterCounter()
|
||||||
promePkg.NewUserLoginCounter()
|
promePkg.NewUserLoginCounter()
|
||||||
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
||||||
grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
// grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
||||||
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
||||||
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
||||||
}...)
|
}...)
|
||||||
|
|||||||
Vendored
+1
-1
@@ -58,7 +58,7 @@ func (s *cacheServer) Run() {
|
|||||||
promePkg.NewGrpcRequestFailedCounter()
|
promePkg.NewGrpcRequestFailedCounter()
|
||||||
promePkg.NewGrpcRequestSuccessCounter()
|
promePkg.NewGrpcRequestSuccessCounter()
|
||||||
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
||||||
grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
// grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
||||||
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
||||||
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
||||||
}...)
|
}...)
|
||||||
|
|||||||
@@ -193,7 +193,7 @@ func (rpc *rpcConversation) Run() {
|
|||||||
promePkg.NewGrpcRequestFailedCounter()
|
promePkg.NewGrpcRequestFailedCounter()
|
||||||
promePkg.NewGrpcRequestSuccessCounter()
|
promePkg.NewGrpcRequestSuccessCounter()
|
||||||
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
||||||
grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
// grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
||||||
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
||||||
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
||||||
}...)
|
}...)
|
||||||
|
|||||||
@@ -69,7 +69,7 @@ func (s *friendServer) Run() {
|
|||||||
promePkg.NewGrpcRequestFailedCounter()
|
promePkg.NewGrpcRequestFailedCounter()
|
||||||
promePkg.NewGrpcRequestSuccessCounter()
|
promePkg.NewGrpcRequestSuccessCounter()
|
||||||
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
||||||
grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
// grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
||||||
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
||||||
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
||||||
}...)
|
}...)
|
||||||
|
|||||||
@@ -78,7 +78,7 @@ func (s *groupServer) Run() {
|
|||||||
promePkg.NewGrpcRequestFailedCounter()
|
promePkg.NewGrpcRequestFailedCounter()
|
||||||
promePkg.NewGrpcRequestSuccessCounter()
|
promePkg.NewGrpcRequestSuccessCounter()
|
||||||
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
||||||
grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
// grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
||||||
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
||||||
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
||||||
}...)
|
}...)
|
||||||
|
|||||||
@@ -102,7 +102,7 @@ func (rpc *rpcChat) Run() {
|
|||||||
promePkg.NewGrpcRequestFailedCounter()
|
promePkg.NewGrpcRequestFailedCounter()
|
||||||
promePkg.NewGrpcRequestSuccessCounter()
|
promePkg.NewGrpcRequestSuccessCounter()
|
||||||
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
||||||
grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
// grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
||||||
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
||||||
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
||||||
}...)
|
}...)
|
||||||
|
|||||||
@@ -75,7 +75,7 @@ func (s *officeServer) Run() {
|
|||||||
promePkg.NewGrpcRequestFailedCounter()
|
promePkg.NewGrpcRequestFailedCounter()
|
||||||
promePkg.NewGrpcRequestSuccessCounter()
|
promePkg.NewGrpcRequestSuccessCounter()
|
||||||
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
||||||
grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
// grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
||||||
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
||||||
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
||||||
}...)
|
}...)
|
||||||
|
|||||||
@@ -67,7 +67,7 @@ func (s *organizationServer) Run() {
|
|||||||
promePkg.NewGrpcRequestFailedCounter()
|
promePkg.NewGrpcRequestFailedCounter()
|
||||||
promePkg.NewGrpcRequestSuccessCounter()
|
promePkg.NewGrpcRequestSuccessCounter()
|
||||||
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
||||||
grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
// grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
||||||
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
||||||
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
||||||
}...)
|
}...)
|
||||||
|
|||||||
@@ -70,7 +70,7 @@ func (s *userServer) Run() {
|
|||||||
promePkg.NewGrpcRequestFailedCounter()
|
promePkg.NewGrpcRequestFailedCounter()
|
||||||
promePkg.NewGrpcRequestSuccessCounter()
|
promePkg.NewGrpcRequestSuccessCounter()
|
||||||
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
grpcOpts = append(grpcOpts, []grpc.ServerOption{
|
||||||
grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
// grpc.UnaryInterceptor(promePkg.UnaryServerInterceptorProme),
|
||||||
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
grpc.StreamInterceptor(grpcPrometheus.StreamServerInterceptor),
|
||||||
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
grpc.UnaryInterceptor(grpcPrometheus.UnaryServerInterceptor),
|
||||||
}...)
|
}...)
|
||||||
|
|||||||
Reference in New Issue
Block a user