瀏覽代碼

feat:订阅信息

wangshan 3 年之前
父節點
當前提交
b8ff88128a

+ 2 - 2
jyBXSubscribe/api/bxsubscribe.api

@@ -19,7 +19,7 @@ type (
 		BuyerClass string `json:"buyerClass"`
 		KeyWords   string `json:"keyWords"`
 		Subtype    string `json:"subtype"`
-		UserStatus string `json:"userStatus"`
+		UserType   string `path:"userType,default=fType,options=fType|vType|mType|eType"` //fType:普通用户;vType:超级订阅用户;mType:大会员用户;eType:商机管理用户;
 	}
 	//
 	commonRes {
@@ -30,5 +30,5 @@ type (
 )
 service bxsubscribe-api {
 	@handler subscribeInfo
-	post /jybx/subscribe/info(subscribeRequest) returns (commonRes)
+	post /jybx/subscribe/:userType(subscribeRequest) returns (commonRes)
 }

+ 3 - 3
jyBXSubscribe/api/internal/handler/routes.go

@@ -9,12 +9,12 @@ import (
 	"github.com/zeromicro/go-zero/rest"
 )
 
-func RegisterHandlers(engine *rest.Server, serverCtx *svc.ServiceContext) {
-	engine.AddRoutes(
+func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
+	server.AddRoutes(
 		[]rest.Route{
 			{
 				Method:  http.MethodPost,
-				Path:    "/jybx/subscribe/info",
+				Path:    "/jybx/subscribe/:userType",
 				Handler: subscribeInfoHandler(serverCtx),
 			},
 		},

+ 28 - 5
jyBXSubscribe/api/internal/logic/subscribeInfoLogic.go

@@ -2,6 +2,8 @@ package logic
 
 import (
 	"context"
+	"jyBXSubscribe/rpc/type/bxsubscribe"
+	"log"
 	"net/http"
 
 	"jyBXSubscribe/api/internal/svc"
@@ -27,11 +29,32 @@ func NewSubscribeInfoLogic(ctx context.Context, svcCtx *svc.ServiceContext, r *h
 }
 
 func (l *SubscribeInfoLogic) SubscribeInfo(req types.SubscribeRequest) (*types.CommonRes, error) {
-	logx.Info("--------------------")
-
+	log.Println("--------------------", req.UserType)
+	res, err := l.svcCtx.Suscribe.GetSubInfo(l.ctx, &bxsubscribe.SubscribeInfosReq{
+		PageNum:    req.PageNum,
+		PageSize:   req.PageSize,
+		SelectTime: req.SelectTime,
+		Area:       req.Area,
+		City:       req.City,
+		Industry:   req.Industry,
+		BuyerClass: req.BuyerClass,
+		KeyWords:   req.KeyWords,
+		Subtype:    req.Subtype,
+		UserType:   req.UserType,
+		UserId:     l.r.Header.Get("userId"),
+		EntId:      l.r.Header.Get("entId"),
+	})
+	if err != nil {
+		return &types.CommonRes{
+			Err_code: res.ErrCode,
+			Err_msg:  res.ErrMsg,
+			Data:     nil,
+		}, nil
+	}
+	log.Println("res.data:", res)
 	return &types.CommonRes{
-		Err_code: 1002,
-		Err_msg:  l.r.Header.Get("userId"),
-		Data:     map[string]interface{}{},
+		Err_code: res.ErrCode,
+		Err_msg:  res.ErrMsg,
+		Data:     res.Data,
 	}, nil
 }

+ 6 - 2
jyBXSubscribe/api/internal/svc/serviceContext.go

@@ -1,15 +1,19 @@
 package svc
 
 import (
+	"github.com/zeromicro/go-zero/zrpc"
 	"jyBXSubscribe/api/internal/config"
+	"jyBXSubscribe/rpc/bxsubscribe"
 )
 
 type ServiceContext struct {
-	Config config.Config
+	Config   config.Config
+	Suscribe bxsubscribe.Bxsubscribe
 }
 
 func NewServiceContext(c config.Config) *ServiceContext {
 	return &ServiceContext{
-		Config: c,
+		Config:   c,
+		Suscribe: bxsubscribe.NewBxsubscribe(zrpc.MustNewClient(c.Subscribe)),
 	}
 }

+ 3 - 3
jyBXSubscribe/api/internal/types/types.go

@@ -2,7 +2,7 @@
 package types
 
 type SubscribeRequest struct {
-	PageNum    int64  `json:"pageNum"`
+	PageNum    int64  `json:"pageNum,optional"`
 	PageSize   int64  `json:"pageSize"`
 	SelectTime string `json:"selectTime"`
 	Area       string `json:"area"`
@@ -11,11 +11,11 @@ type SubscribeRequest struct {
 	BuyerClass string `json:"buyerClass"`
 	KeyWords   string `json:"keyWords"`
 	Subtype    string `json:"subtype"`
-	UserStatus string `json:"userStatus"`
+	UserType   string `path:"userType,default=fType,options=fType|vType|mType|eType"` //fType:普通用户;vType:超级订阅用户;mType:大会员用户;eType:商机管理用户;
 }
 
 type CommonRes struct {
-	Err_code int         `json:"error_code"`
+	Err_code int64         `json:"error_code"`
 	Err_msg  string      `json:"error_msg"`
 	Data     interface{} `json:"data"`
 }

+ 43 - 0
jyBXSubscribe/api/logs/access.log-2022-05-12

@@ -0,0 +1,43 @@
+{"@timestamp":"2022-05-11T17:37:39.374+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-05-11T17:37:39.374+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-05-11T17:38:05.788+08:00","level":"info","content":"--------------------"}
+{"@timestamp":"2022-05-11T17:38:05.788+08:00","level":"info","duration":"0.0ms","content":"[HTTP] POST - 200 - /jybx/subscribe/info - 127.0.0.1:58575 - PostmanRuntime/7.29.0","trace":"0737e88bc150b3bcc1b45d3dd8356b53","span":"867adbbeb1424ce2"}
+{"@timestamp":"2022-05-12T09:17:31.650+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-05-12T09:17:31.651+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-05-12T09:17:47.430+08:00","level":"info","content":"--------------------"}
+{"@timestamp":"2022-05-12T09:17:47.430+08:00","level":"info","duration":"1.1ms","content":"[HTTP] POST - 200 - /jybx/subscribe/info - 127.0.0.1:55966 - PostmanRuntime/7.29.0","trace":"2b068d1ca7e0e1644763cbbac4980754","span":"f4d0a00bd2edeaf1"}
+{"@timestamp":"2022-05-12T09:18:11.877+08:00","level":"info","content":"--------------------"}
+{"@timestamp":"2022-05-12T09:18:11.877+08:00","level":"info","duration":"0.1ms","content":"[HTTP] POST - 200 - /jybx/subscribe/info - 127.0.0.1:55966 - PostmanRuntime/7.29.0","trace":"8109d4eeb891296f4f3169293be748aa","span":"464b772808d515a0"}
+{"@timestamp":"2022-05-12T15:16:18.516+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-05-12T15:16:18.516+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-05-12T15:16:45.058+08:00","level":"info","duration":"0.9ms","content":"[HTTP] POST - 400 - /jybx/subscribe/info - 127.0.0.1:53697 - PostmanRuntime/7.29.0","trace":"3f7f373532d915bb23e1ce6efc203be6","span":"f6b3d034e4d58f23"}
+{"@timestamp":"2022-05-12T15:17:10.605+08:00","level":"info","content":"--------------------"}
+{"@timestamp":"2022-05-12T15:17:10.605+08:00","level":"info","duration":"0.1ms","content":"[HTTP] POST - 200 - /jybx/subscribe/info - 127.0.0.1:53697 - PostmanRuntime/7.29.0","trace":"95f7a305d99d2294a0b3ef0bfa6adadc","span":"302f6e0884bb08cf"}
+{"@timestamp":"2022-05-12T15:17:44.747+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-05-12T15:17:44.747+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-05-12T15:17:49.575+08:00","level":"info","duration":"0.5ms","content":"[HTTP] POST - 200 - /jybx/subscribe/info - 127.0.0.1:53844 - PostmanRuntime/7.29.0","trace":"4e900f76ef85e0ad4fd714c6dc964c10","span":"27983c283415dcb8"}
+{"@timestamp":"2022-05-12T15:20:16.273+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-05-12T15:20:16.273+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-05-12T15:20:29.423+08:00","level":"info","duration":"0.6ms","content":"[HTTP] POST - 200 - /jybx/subscribe/info - 127.0.0.1:54210 - PostmanRuntime/7.29.0","trace":"7465c21b347cafefa638d42779321173","span":"11dafc14c60978fd"}
+{"@timestamp":"2022-05-12T15:27:57.856+08:00","level":"info","duration":"0.4ms","content":"[HTTP] POST - 200 - /jybx/subscribe/info - 127.0.0.1:54210 - PostmanRuntime/7.29.0","trace":"2069152eae4f4bbe3b3c8e3ead23c874","span":"1b3b117bc77a029b"}
+{"@timestamp":"2022-05-12T15:31:03.980+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-05-12T15:31:03.981+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-05-12T15:31:05.149+08:00","level":"info","duration":"1.0ms","content":"[HTTP] POST - 200 - /jybx/subscribe/info - 127.0.0.1:55720 - PostmanRuntime/7.29.0","trace":"1e38f1910554b8d25dd15f5000fccc74","span":"af273c9fb7b55acc"}
+{"@timestamp":"2022-05-12T16:11:29.656+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-05-12T16:11:29.656+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-05-12T16:11:40.683+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-05-12T16:11:40.683+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-05-12T16:19:43.588+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-05-12T16:19:43.588+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-05-12T16:20:04.417+08:00","level":"info","duration":"0.0ms","content":"[HTTP] POST - 400 - /jybx/subscribe/info - 127.0.0.1:63138 - PostmanRuntime/7.29.0","trace":"9cea8782c607bed741a035a31a3b7717","span":"33245a6c761a4914"}
+{"@timestamp":"2022-05-12T16:23:20.305+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-05-12T16:23:20.305+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-05-12T16:25:34.373+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-05-12T16:25:34.373+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-05-12T16:28:25.276+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-05-12T16:28:25.276+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-05-12T16:28:49.194+08:00","level":"info","duration":"2.3ms","content":"[HTTP] POST - 200 - /jybx/subscribe/fType - 127.0.0.1:64537 - PostmanRuntime/7.29.0","trace":"e201d6e03bbd81dc1c65041689b8eb81","span":"8931d8655047a3f5"}
+{"@timestamp":"2022-05-12T16:37:26.345+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-05-12T16:37:26.345+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-05-12T16:37:37.884+08:00","level":"info","duration":"3.3ms","content":"[HTTP] POST - 200 - /jybx/subscribe/fType - 127.0.0.1:49754 - PostmanRuntime/7.29.0","trace":"0ba1d040275c4dffcdb8a15e37eb95ae","span":"be9b14a914513a62"}
+{"@timestamp":"2022-05-12T16:37:41.235+08:00","level":"info","duration":"1.3ms","content":"[HTTP] POST - 200 - /jybx/subscribe/fType - 127.0.0.1:49754 - PostmanRuntime/7.29.0","trace":"f21dd256f5172a5f9c4c1f5c1bd41531","span":"562c7cd772eacfa5"}

文件差異過大導致無法顯示
+ 2 - 0
jyBXSubscribe/api/logs/error.log-2022-05-12


+ 2015 - 0
jyBXSubscribe/api/logs/stat.log-2022-05-12

@@ -0,0 +1,2015 @@
+{"@timestamp":"2022-05-11T17:38:39.367+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.3Mi, TotalAlloc=5.1Mi, Sys=18.7Mi, NumGC=2"}
+{"@timestamp":"2022-05-11T17:38:39.383+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-05-11T17:39:05.800+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-11T17:39:39.369+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.3Mi, TotalAlloc=5.1Mi, Sys=18.7Mi, NumGC=2"}
+{"@timestamp":"2022-05-11T17:39:39.379+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-11T17:40:05.802+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:18:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.3Mi, TotalAlloc=5.1Mi, Sys=12.6Mi, NumGC=2"}
+{"@timestamp":"2022-05-12T09:18:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0"}
+{"@timestamp":"2022-05-12T09:18:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.5ms, med: 1.1ms, 90th: 1.1ms, 99th: 1.1ms, 99.9th: 1.1ms"}
+{"@timestamp":"2022-05-12T09:19:31.643+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.3Mi, TotalAlloc=5.1Mi, Sys=12.6Mi, NumGC=2"}
+{"@timestamp":"2022-05-12T09:19:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:19:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:20:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.6Mi, NumGC=3"}
+{"@timestamp":"2022-05-12T09:20:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:20:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:21:31.643+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.6Mi, NumGC=3"}
+{"@timestamp":"2022-05-12T09:21:31.658+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:21:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:22:31.635+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.6Mi, NumGC=4"}
+{"@timestamp":"2022-05-12T09:22:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:22:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:23:31.644+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.6Mi, NumGC=4"}
+{"@timestamp":"2022-05-12T09:23:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:23:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:24:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.6Mi, NumGC=5"}
+{"@timestamp":"2022-05-12T09:24:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:24:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:25:31.640+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.6Mi, NumGC=5"}
+{"@timestamp":"2022-05-12T09:25:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:25:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:26:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.6Mi, NumGC=6"}
+{"@timestamp":"2022-05-12T09:26:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:26:47.437+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:27:31.644+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.6Mi, NumGC=6"}
+{"@timestamp":"2022-05-12T09:27:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:27:47.445+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:28:31.640+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.6Mi, NumGC=7"}
+{"@timestamp":"2022-05-12T09:28:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:28:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:29:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.6Mi, NumGC=7"}
+{"@timestamp":"2022-05-12T09:29:31.658+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:29:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:30:31.635+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.6Mi, NumGC=8"}
+{"@timestamp":"2022-05-12T09:30:31.666+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:30:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:31:31.641+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.6Mi, NumGC=8"}
+{"@timestamp":"2022-05-12T09:31:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:31:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:32:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.9Mi, NumGC=9"}
+{"@timestamp":"2022-05-12T09:32:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:32:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:33:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.9Mi, NumGC=9"}
+{"@timestamp":"2022-05-12T09:33:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:33:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:34:31.644+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.9Mi, NumGC=10"}
+{"@timestamp":"2022-05-12T09:34:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:34:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:35:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.9Mi, NumGC=10"}
+{"@timestamp":"2022-05-12T09:35:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:35:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:36:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.9Mi, NumGC=11"}
+{"@timestamp":"2022-05-12T09:36:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:36:47.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:37:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.9Mi, NumGC=11"}
+{"@timestamp":"2022-05-12T09:37:31.665+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:37:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:38:31.635+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.9Mi, NumGC=12"}
+{"@timestamp":"2022-05-12T09:38:31.666+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:38:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:39:31.635+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.9Mi, NumGC=12"}
+{"@timestamp":"2022-05-12T09:39:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:39:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:40:31.635+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.9Mi, NumGC=13"}
+{"@timestamp":"2022-05-12T09:40:31.665+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:40:47.437+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:41:31.643+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=12.9Mi, NumGC=13"}
+{"@timestamp":"2022-05-12T09:41:31.659+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:41:47.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:42:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=14"}
+{"@timestamp":"2022-05-12T09:42:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:42:47.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:43:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=14"}
+{"@timestamp":"2022-05-12T09:43:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:43:47.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:44:31.644+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=15"}
+{"@timestamp":"2022-05-12T09:44:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:44:47.438+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:45:31.643+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=15"}
+{"@timestamp":"2022-05-12T09:45:31.658+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:45:47.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:46:31.634+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=16"}
+{"@timestamp":"2022-05-12T09:46:31.665+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:46:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:47:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=16"}
+{"@timestamp":"2022-05-12T09:47:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:47:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:48:31.644+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=17"}
+{"@timestamp":"2022-05-12T09:48:31.659+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:48:47.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:49:31.640+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=17"}
+{"@timestamp":"2022-05-12T09:49:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:49:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:50:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=18"}
+{"@timestamp":"2022-05-12T09:50:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:50:47.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:51:31.635+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=18"}
+{"@timestamp":"2022-05-12T09:51:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:51:47.445+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:52:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=19"}
+{"@timestamp":"2022-05-12T09:52:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:52:47.445+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:53:31.635+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=19"}
+{"@timestamp":"2022-05-12T09:53:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:53:47.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:54:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=20"}
+{"@timestamp":"2022-05-12T09:54:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:54:47.438+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:55:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=20"}
+{"@timestamp":"2022-05-12T09:55:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:55:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:56:31.646+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=21"}
+{"@timestamp":"2022-05-12T09:56:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:56:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:57:31.635+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=21"}
+{"@timestamp":"2022-05-12T09:57:31.666+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:57:47.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:58:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=22"}
+{"@timestamp":"2022-05-12T09:58:31.664+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:58:47.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T09:59:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=22"}
+{"@timestamp":"2022-05-12T09:59:31.664+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T09:59:47.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:00:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=23"}
+{"@timestamp":"2022-05-12T10:00:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:00:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:01:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=23"}
+{"@timestamp":"2022-05-12T10:01:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:01:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:02:31.646+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=24"}
+{"@timestamp":"2022-05-12T10:02:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:02:47.438+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:03:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=24"}
+{"@timestamp":"2022-05-12T10:03:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:03:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:04:31.640+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=25"}
+{"@timestamp":"2022-05-12T10:04:31.656+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:04:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:05:31.634+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=25"}
+{"@timestamp":"2022-05-12T10:05:31.665+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:05:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:06:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=26"}
+{"@timestamp":"2022-05-12T10:06:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:06:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:07:31.646+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=12.9Mi, NumGC=26"}
+{"@timestamp":"2022-05-12T10:07:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:07:47.445+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:08:31.635+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=27"}
+{"@timestamp":"2022-05-12T10:08:31.665+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:08:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:09:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=27"}
+{"@timestamp":"2022-05-12T10:09:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:09:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:10:31.641+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=28"}
+{"@timestamp":"2022-05-12T10:10:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:10:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:11:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=28"}
+{"@timestamp":"2022-05-12T10:11:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:11:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:12:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=29"}
+{"@timestamp":"2022-05-12T10:12:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:12:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:13:31.644+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=29"}
+{"@timestamp":"2022-05-12T10:13:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:13:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:14:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=30"}
+{"@timestamp":"2022-05-12T10:14:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:14:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:15:31.641+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=30"}
+{"@timestamp":"2022-05-12T10:15:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:15:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:16:31.635+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=31"}
+{"@timestamp":"2022-05-12T10:16:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:16:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:17:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=31"}
+{"@timestamp":"2022-05-12T10:17:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:17:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:18:31.649+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=32"}
+{"@timestamp":"2022-05-12T10:18:31.665+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:18:47.445+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:19:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=32"}
+{"@timestamp":"2022-05-12T10:19:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:19:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:20:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=33"}
+{"@timestamp":"2022-05-12T10:20:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:20:47.438+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:21:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=33"}
+{"@timestamp":"2022-05-12T10:21:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:21:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:22:31.641+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=34"}
+{"@timestamp":"2022-05-12T10:22:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:22:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:23:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=34"}
+{"@timestamp":"2022-05-12T10:23:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:23:47.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:24:31.634+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=35"}
+{"@timestamp":"2022-05-12T10:24:31.665+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:24:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:25:31.635+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=35"}
+{"@timestamp":"2022-05-12T10:25:31.665+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:25:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:26:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=36"}
+{"@timestamp":"2022-05-12T10:26:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:26:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:27:31.641+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=36"}
+{"@timestamp":"2022-05-12T10:27:31.656+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:27:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:28:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=37"}
+{"@timestamp":"2022-05-12T10:28:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:28:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:29:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=37"}
+{"@timestamp":"2022-05-12T10:29:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:29:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:30:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=38"}
+{"@timestamp":"2022-05-12T10:30:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:30:47.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:31:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=38"}
+{"@timestamp":"2022-05-12T10:31:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:31:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:32:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=39"}
+{"@timestamp":"2022-05-12T10:32:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:32:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:33:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.3Mi, Sys=12.9Mi, NumGC=39"}
+{"@timestamp":"2022-05-12T10:33:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:33:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:34:31.640+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=40"}
+{"@timestamp":"2022-05-12T10:34:31.656+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:34:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:35:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=40"}
+{"@timestamp":"2022-05-12T10:35:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:35:47.445+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:36:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=41"}
+{"@timestamp":"2022-05-12T10:36:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:36:47.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:37:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=41"}
+{"@timestamp":"2022-05-12T10:37:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:37:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:38:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=42"}
+{"@timestamp":"2022-05-12T10:38:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:38:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:39:31.634+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=42"}
+{"@timestamp":"2022-05-12T10:39:31.665+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:39:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:40:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=43"}
+{"@timestamp":"2022-05-12T10:40:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:40:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:41:31.641+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=43"}
+{"@timestamp":"2022-05-12T10:41:31.656+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:41:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:42:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=44"}
+{"@timestamp":"2022-05-12T10:42:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:42:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:43:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=44"}
+{"@timestamp":"2022-05-12T10:43:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:43:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:44:31.634+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=45"}
+{"@timestamp":"2022-05-12T10:44:31.665+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:44:47.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:45:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=45"}
+{"@timestamp":"2022-05-12T10:45:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:45:47.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:46:31.634+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=46"}
+{"@timestamp":"2022-05-12T10:46:31.665+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:46:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:47:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=46"}
+{"@timestamp":"2022-05-12T10:47:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:47:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:48:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=47"}
+{"@timestamp":"2022-05-12T10:48:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:48:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:49:31.641+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=47"}
+{"@timestamp":"2022-05-12T10:49:31.656+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:49:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:50:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=48"}
+{"@timestamp":"2022-05-12T10:50:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:50:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:51:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=48"}
+{"@timestamp":"2022-05-12T10:51:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:51:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:52:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=49"}
+{"@timestamp":"2022-05-12T10:52:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:52:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:53:31.646+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=49"}
+{"@timestamp":"2022-05-12T10:53:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:53:47.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:54:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=50"}
+{"@timestamp":"2022-05-12T10:54:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:54:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:55:31.634+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=50"}
+{"@timestamp":"2022-05-12T10:55:31.665+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:55:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:56:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=51"}
+{"@timestamp":"2022-05-12T10:56:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:56:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:57:31.643+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=51"}
+{"@timestamp":"2022-05-12T10:57:31.658+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:57:47.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:58:31.635+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=52"}
+{"@timestamp":"2022-05-12T10:58:31.665+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:58:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T10:59:31.649+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=52"}
+{"@timestamp":"2022-05-12T10:59:31.665+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T10:59:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:00:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=53"}
+{"@timestamp":"2022-05-12T11:00:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:00:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:01:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.4Mi, Sys=12.9Mi, NumGC=53"}
+{"@timestamp":"2022-05-12T11:01:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:01:47.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:02:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=54"}
+{"@timestamp":"2022-05-12T11:02:31.658+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:02:47.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:03:31.640+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=54"}
+{"@timestamp":"2022-05-12T11:03:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:03:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:04:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=55"}
+{"@timestamp":"2022-05-12T11:04:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:04:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:05:31.644+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=55"}
+{"@timestamp":"2022-05-12T11:05:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:05:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:06:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=56"}
+{"@timestamp":"2022-05-12T11:06:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:06:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:07:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=56"}
+{"@timestamp":"2022-05-12T11:07:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:07:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:08:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=57"}
+{"@timestamp":"2022-05-12T11:08:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:08:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:09:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=57"}
+{"@timestamp":"2022-05-12T11:09:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:09:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:10:31.641+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=58"}
+{"@timestamp":"2022-05-12T11:10:31.656+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:10:47.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:11:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=58"}
+{"@timestamp":"2022-05-12T11:11:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:11:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:12:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=59"}
+{"@timestamp":"2022-05-12T11:12:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:12:47.438+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:13:31.646+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=59"}
+{"@timestamp":"2022-05-12T11:13:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:13:47.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:14:31.641+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=60"}
+{"@timestamp":"2022-05-12T11:14:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:14:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:15:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=60"}
+{"@timestamp":"2022-05-12T11:15:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:15:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:16:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=61"}
+{"@timestamp":"2022-05-12T11:16:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:16:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:17:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=61"}
+{"@timestamp":"2022-05-12T11:17:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:17:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:18:31.640+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=62"}
+{"@timestamp":"2022-05-12T11:18:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:18:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:19:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=62"}
+{"@timestamp":"2022-05-12T11:19:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:19:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:20:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=63"}
+{"@timestamp":"2022-05-12T11:20:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:20:47.437+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:21:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=63"}
+{"@timestamp":"2022-05-12T11:21:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:21:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:22:31.649+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=64"}
+{"@timestamp":"2022-05-12T11:22:31.664+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:22:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:23:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=64"}
+{"@timestamp":"2022-05-12T11:23:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:23:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:24:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=65"}
+{"@timestamp":"2022-05-12T11:24:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:24:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:25:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=65"}
+{"@timestamp":"2022-05-12T11:25:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:25:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:26:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=66"}
+{"@timestamp":"2022-05-12T11:26:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:26:47.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:27:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.5Mi, Sys=12.9Mi, NumGC=66"}
+{"@timestamp":"2022-05-12T11:27:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:27:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:28:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=67"}
+{"@timestamp":"2022-05-12T11:28:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:28:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:29:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=67"}
+{"@timestamp":"2022-05-12T11:29:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:29:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:30:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=68"}
+{"@timestamp":"2022-05-12T11:30:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:30:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:31:31.644+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=68"}
+{"@timestamp":"2022-05-12T11:31:31.659+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:31:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:32:31.641+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=69"}
+{"@timestamp":"2022-05-12T11:32:31.656+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:32:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:33:31.640+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=69"}
+{"@timestamp":"2022-05-12T11:33:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:33:47.438+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:34:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=70"}
+{"@timestamp":"2022-05-12T11:34:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:34:47.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:35:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=70"}
+{"@timestamp":"2022-05-12T11:35:31.658+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:35:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:36:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=71"}
+{"@timestamp":"2022-05-12T11:36:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:36:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:37:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=71"}
+{"@timestamp":"2022-05-12T11:37:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:37:47.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:38:31.649+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=72"}
+{"@timestamp":"2022-05-12T11:38:31.664+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:38:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:39:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=72"}
+{"@timestamp":"2022-05-12T11:39:31.664+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:39:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:40:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=73"}
+{"@timestamp":"2022-05-12T11:40:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:40:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:41:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=73"}
+{"@timestamp":"2022-05-12T11:41:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:41:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:42:31.635+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=74"}
+{"@timestamp":"2022-05-12T11:42:31.666+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:42:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:43:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=74"}
+{"@timestamp":"2022-05-12T11:43:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:43:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:44:31.649+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=75"}
+{"@timestamp":"2022-05-12T11:44:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:44:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:45:31.635+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=75"}
+{"@timestamp":"2022-05-12T11:45:31.666+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:45:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:46:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=76"}
+{"@timestamp":"2022-05-12T11:46:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:46:47.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:47:31.641+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=76"}
+{"@timestamp":"2022-05-12T11:47:31.656+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:47:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:48:31.649+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=77"}
+{"@timestamp":"2022-05-12T11:48:31.664+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:48:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:49:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=77"}
+{"@timestamp":"2022-05-12T11:49:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:49:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:50:31.646+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=78"}
+{"@timestamp":"2022-05-12T11:50:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:50:47.438+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:51:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=78"}
+{"@timestamp":"2022-05-12T11:51:31.664+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:51:47.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:52:31.641+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=79"}
+{"@timestamp":"2022-05-12T11:52:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:52:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:53:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=79"}
+{"@timestamp":"2022-05-12T11:53:31.658+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:53:47.438+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:54:31.650+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=80"}
+{"@timestamp":"2022-05-12T11:54:31.665+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:54:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:55:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=80"}
+{"@timestamp":"2022-05-12T11:55:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:55:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:56:31.640+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.6Mi, Sys=12.9Mi, NumGC=81"}
+{"@timestamp":"2022-05-12T11:56:31.656+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:56:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:57:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=81"}
+{"@timestamp":"2022-05-12T11:57:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:57:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:58:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=82"}
+{"@timestamp":"2022-05-12T11:58:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:58:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T11:59:31.650+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=82"}
+{"@timestamp":"2022-05-12T11:59:31.666+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T11:59:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:00:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=83"}
+{"@timestamp":"2022-05-12T12:00:31.666+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:00:47.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:01:31.635+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=83"}
+{"@timestamp":"2022-05-12T12:01:31.666+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:01:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:02:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=84"}
+{"@timestamp":"2022-05-12T12:02:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:02:47.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:03:31.644+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=84"}
+{"@timestamp":"2022-05-12T12:03:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:03:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:04:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=85"}
+{"@timestamp":"2022-05-12T12:04:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:04:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:05:31.646+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=85"}
+{"@timestamp":"2022-05-12T12:05:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:05:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:06:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=86"}
+{"@timestamp":"2022-05-12T12:06:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:06:47.438+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:07:31.643+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=86"}
+{"@timestamp":"2022-05-12T12:07:31.659+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:07:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:08:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=87"}
+{"@timestamp":"2022-05-12T12:08:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:08:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:09:31.646+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=87"}
+{"@timestamp":"2022-05-12T12:09:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:09:47.438+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:10:31.644+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=88"}
+{"@timestamp":"2022-05-12T12:10:31.659+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:10:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:11:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=88"}
+{"@timestamp":"2022-05-12T12:11:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:11:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:12:31.640+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=89"}
+{"@timestamp":"2022-05-12T12:12:31.656+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:12:47.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:13:31.646+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=89"}
+{"@timestamp":"2022-05-12T12:13:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:13:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:14:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=90"}
+{"@timestamp":"2022-05-12T12:14:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:14:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:15:31.643+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=90"}
+{"@timestamp":"2022-05-12T12:15:31.659+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:15:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:16:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=91"}
+{"@timestamp":"2022-05-12T12:16:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:16:47.437+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:17:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=91"}
+{"@timestamp":"2022-05-12T12:17:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:17:47.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:18:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=92"}
+{"@timestamp":"2022-05-12T12:18:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:18:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:19:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=92"}
+{"@timestamp":"2022-05-12T12:19:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:19:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:20:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=93"}
+{"@timestamp":"2022-05-12T12:20:31.658+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:20:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:21:31.643+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=93"}
+{"@timestamp":"2022-05-12T12:21:31.658+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:21:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:22:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=94"}
+{"@timestamp":"2022-05-12T12:22:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:22:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:23:31.643+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=94"}
+{"@timestamp":"2022-05-12T12:23:31.658+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:23:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:24:31.640+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=95"}
+{"@timestamp":"2022-05-12T12:24:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:24:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:25:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=95"}
+{"@timestamp":"2022-05-12T12:25:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:25:47.438+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:26:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.7Mi, Sys=12.9Mi, NumGC=96"}
+{"@timestamp":"2022-05-12T12:26:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:26:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:27:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=96"}
+{"@timestamp":"2022-05-12T12:27:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:27:47.445+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:28:31.643+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=97"}
+{"@timestamp":"2022-05-12T12:28:31.658+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:28:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:29:31.643+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=97"}
+{"@timestamp":"2022-05-12T12:29:31.658+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:29:47.438+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:30:31.635+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=98"}
+{"@timestamp":"2022-05-12T12:30:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:30:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:31:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=98"}
+{"@timestamp":"2022-05-12T12:31:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:31:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:32:31.643+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=99"}
+{"@timestamp":"2022-05-12T12:32:31.658+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:32:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:33:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=99"}
+{"@timestamp":"2022-05-12T12:33:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:33:47.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:34:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=100"}
+{"@timestamp":"2022-05-12T12:34:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:34:47.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:35:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=100"}
+{"@timestamp":"2022-05-12T12:35:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:35:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:36:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=101"}
+{"@timestamp":"2022-05-12T12:36:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:36:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:37:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=101"}
+{"@timestamp":"2022-05-12T12:37:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:37:47.438+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:38:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=102"}
+{"@timestamp":"2022-05-12T12:38:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:38:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:39:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=102"}
+{"@timestamp":"2022-05-12T12:39:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:39:47.437+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:40:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=103"}
+{"@timestamp":"2022-05-12T12:40:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:40:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:41:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=103"}
+{"@timestamp":"2022-05-12T12:41:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:41:47.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:42:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=104"}
+{"@timestamp":"2022-05-12T12:42:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:42:47.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:43:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=104"}
+{"@timestamp":"2022-05-12T12:43:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:43:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:44:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=105"}
+{"@timestamp":"2022-05-12T12:44:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:44:47.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:45:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=105"}
+{"@timestamp":"2022-05-12T12:45:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:45:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:46:31.640+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=106"}
+{"@timestamp":"2022-05-12T12:46:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:46:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:47:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=106"}
+{"@timestamp":"2022-05-12T12:47:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:47:47.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:48:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=107"}
+{"@timestamp":"2022-05-12T12:48:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:48:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:49:31.643+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=107"}
+{"@timestamp":"2022-05-12T12:49:31.658+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:49:47.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:50:31.644+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=108"}
+{"@timestamp":"2022-05-12T12:50:31.659+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:50:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:51:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.8Mi, Sys=12.9Mi, NumGC=108"}
+{"@timestamp":"2022-05-12T12:51:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:51:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:52:31.640+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=109"}
+{"@timestamp":"2022-05-12T12:52:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:52:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:53:31.640+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=109"}
+{"@timestamp":"2022-05-12T12:53:31.656+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:53:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:54:31.649+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=110"}
+{"@timestamp":"2022-05-12T12:54:31.664+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:54:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:55:31.649+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=110"}
+{"@timestamp":"2022-05-12T12:55:31.665+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:55:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:56:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=111"}
+{"@timestamp":"2022-05-12T12:56:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:56:47.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:57:31.646+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=111"}
+{"@timestamp":"2022-05-12T12:57:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:57:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:58:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=112"}
+{"@timestamp":"2022-05-12T12:58:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:58:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T12:59:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=112"}
+{"@timestamp":"2022-05-12T12:59:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T12:59:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:00:31.646+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=113"}
+{"@timestamp":"2022-05-12T13:00:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:00:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:01:31.643+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=113"}
+{"@timestamp":"2022-05-12T13:01:31.658+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:01:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:02:31.641+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=114"}
+{"@timestamp":"2022-05-12T13:02:31.656+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:02:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:03:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=114"}
+{"@timestamp":"2022-05-12T13:03:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:03:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:04:31.646+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=115"}
+{"@timestamp":"2022-05-12T13:04:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:04:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:05:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=115"}
+{"@timestamp":"2022-05-12T13:05:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:05:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:06:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=116"}
+{"@timestamp":"2022-05-12T13:06:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:06:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:07:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=116"}
+{"@timestamp":"2022-05-12T13:07:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:07:47.445+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:08:31.641+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=117"}
+{"@timestamp":"2022-05-12T13:08:31.656+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:08:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:09:31.644+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=117"}
+{"@timestamp":"2022-05-12T13:09:31.659+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:09:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:10:31.635+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=118"}
+{"@timestamp":"2022-05-12T13:10:31.666+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:10:47.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:11:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=118"}
+{"@timestamp":"2022-05-12T13:11:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:11:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:12:31.709+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=119"}
+{"@timestamp":"2022-05-12T13:12:31.709+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:12:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:13:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=119"}
+{"@timestamp":"2022-05-12T13:13:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:13:47.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:14:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=120"}
+{"@timestamp":"2022-05-12T13:14:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:14:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:15:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=120"}
+{"@timestamp":"2022-05-12T13:15:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:15:47.438+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:16:31.640+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=121"}
+{"@timestamp":"2022-05-12T13:16:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:16:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:17:31.641+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=121"}
+{"@timestamp":"2022-05-12T13:17:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:17:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:18:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.9Mi, Sys=12.9Mi, NumGC=122"}
+{"@timestamp":"2022-05-12T13:18:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:18:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:19:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=122"}
+{"@timestamp":"2022-05-12T13:19:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:19:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:20:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=123"}
+{"@timestamp":"2022-05-12T13:20:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:20:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:21:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=123"}
+{"@timestamp":"2022-05-12T13:21:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:21:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:22:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=124"}
+{"@timestamp":"2022-05-12T13:22:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:22:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:23:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=124"}
+{"@timestamp":"2022-05-12T13:23:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:23:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:24:31.641+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=125"}
+{"@timestamp":"2022-05-12T13:24:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:24:47.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:25:31.643+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=125"}
+{"@timestamp":"2022-05-12T13:25:31.658+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:25:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:26:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=126"}
+{"@timestamp":"2022-05-12T13:26:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:26:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:27:31.649+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=126"}
+{"@timestamp":"2022-05-12T13:27:31.664+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:27:47.437+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:28:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=127"}
+{"@timestamp":"2022-05-12T13:28:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:28:47.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:29:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=127"}
+{"@timestamp":"2022-05-12T13:29:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:29:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:30:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=128"}
+{"@timestamp":"2022-05-12T13:30:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:30:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:31:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=128"}
+{"@timestamp":"2022-05-12T13:31:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:31:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:32:31.650+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=129"}
+{"@timestamp":"2022-05-12T13:32:31.666+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:32:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:33:31.644+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=129"}
+{"@timestamp":"2022-05-12T13:33:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:33:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:34:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=130"}
+{"@timestamp":"2022-05-12T13:34:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:34:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:35:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=130"}
+{"@timestamp":"2022-05-12T13:35:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:35:47.438+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:36:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=131"}
+{"@timestamp":"2022-05-12T13:36:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:36:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:37:31.640+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=131"}
+{"@timestamp":"2022-05-12T13:37:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:37:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:38:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=132"}
+{"@timestamp":"2022-05-12T13:38:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:38:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:39:31.643+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=132"}
+{"@timestamp":"2022-05-12T13:39:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:39:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:40:31.635+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=133"}
+{"@timestamp":"2022-05-12T13:40:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:40:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:41:31.641+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=133"}
+{"@timestamp":"2022-05-12T13:41:31.656+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:41:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:42:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=134"}
+{"@timestamp":"2022-05-12T13:42:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:42:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:43:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=134"}
+{"@timestamp":"2022-05-12T13:43:31.667+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:43:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:44:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=135"}
+{"@timestamp":"2022-05-12T13:44:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:44:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:45:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=135"}
+{"@timestamp":"2022-05-12T13:45:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:45:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:46:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=136"}
+{"@timestamp":"2022-05-12T13:46:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:46:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:47:31.640+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=136"}
+{"@timestamp":"2022-05-12T13:47:31.656+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:47:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:48:31.643+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=137"}
+{"@timestamp":"2022-05-12T13:48:31.659+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:48:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:49:31.640+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.0Mi, Sys=12.9Mi, NumGC=137"}
+{"@timestamp":"2022-05-12T13:49:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:49:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:50:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=138"}
+{"@timestamp":"2022-05-12T13:50:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:50:47.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:51:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=138"}
+{"@timestamp":"2022-05-12T13:51:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:51:47.437+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:52:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=139"}
+{"@timestamp":"2022-05-12T13:52:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:52:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:53:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=139"}
+{"@timestamp":"2022-05-12T13:53:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:53:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:54:31.640+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=140"}
+{"@timestamp":"2022-05-12T13:54:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:54:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:55:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=140"}
+{"@timestamp":"2022-05-12T13:55:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:55:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:56:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=141"}
+{"@timestamp":"2022-05-12T13:56:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:56:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:57:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=141"}
+{"@timestamp":"2022-05-12T13:57:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:57:47.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:58:31.649+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=142"}
+{"@timestamp":"2022-05-12T13:58:31.665+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:58:47.445+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T13:59:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=142"}
+{"@timestamp":"2022-05-12T13:59:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T13:59:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:00:31.643+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=143"}
+{"@timestamp":"2022-05-12T14:00:31.659+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:00:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:01:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=143"}
+{"@timestamp":"2022-05-12T14:01:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:01:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:02:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=144"}
+{"@timestamp":"2022-05-12T14:02:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:02:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:03:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=144"}
+{"@timestamp":"2022-05-12T14:03:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:03:47.437+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:04:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=145"}
+{"@timestamp":"2022-05-12T14:04:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:04:47.445+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:05:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=145"}
+{"@timestamp":"2022-05-12T14:05:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:05:47.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:06:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=146"}
+{"@timestamp":"2022-05-12T14:06:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:06:47.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:07:31.644+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=146"}
+{"@timestamp":"2022-05-12T14:07:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:07:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:08:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=147"}
+{"@timestamp":"2022-05-12T14:08:31.658+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:08:47.438+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:09:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=147"}
+{"@timestamp":"2022-05-12T14:09:31.659+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:09:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:10:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=148"}
+{"@timestamp":"2022-05-12T14:10:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:10:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:11:31.650+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=148"}
+{"@timestamp":"2022-05-12T14:11:31.664+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:11:47.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:12:31.641+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=149"}
+{"@timestamp":"2022-05-12T14:12:31.656+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:12:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:13:31.641+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=149"}
+{"@timestamp":"2022-05-12T14:13:31.656+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:13:47.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:14:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=150"}
+{"@timestamp":"2022-05-12T14:14:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:14:47.438+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:15:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=150"}
+{"@timestamp":"2022-05-12T14:15:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:15:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:16:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=151"}
+{"@timestamp":"2022-05-12T14:16:31.664+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:16:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:17:31.634+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=151"}
+{"@timestamp":"2022-05-12T14:17:31.666+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:17:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:18:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.1Mi, Sys=12.9Mi, NumGC=152"}
+{"@timestamp":"2022-05-12T14:18:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:18:47.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:19:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=152"}
+{"@timestamp":"2022-05-12T14:19:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:19:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:20:31.649+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=153"}
+{"@timestamp":"2022-05-12T14:20:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:20:47.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:21:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=153"}
+{"@timestamp":"2022-05-12T14:21:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:21:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:22:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=154"}
+{"@timestamp":"2022-05-12T14:22:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:22:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:23:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=154"}
+{"@timestamp":"2022-05-12T14:23:31.656+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:23:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:24:31.643+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=155"}
+{"@timestamp":"2022-05-12T14:24:31.659+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:24:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:25:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=155"}
+{"@timestamp":"2022-05-12T14:25:31.658+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:25:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:26:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=156"}
+{"@timestamp":"2022-05-12T14:26:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:26:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:27:31.646+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=156"}
+{"@timestamp":"2022-05-12T14:27:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:27:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:28:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=157"}
+{"@timestamp":"2022-05-12T14:28:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:28:47.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:29:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=157"}
+{"@timestamp":"2022-05-12T14:29:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:29:47.445+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:30:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=158"}
+{"@timestamp":"2022-05-12T14:30:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:30:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:31:31.635+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=158"}
+{"@timestamp":"2022-05-12T14:31:31.664+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:31:47.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:32:31.649+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=159"}
+{"@timestamp":"2022-05-12T14:32:31.665+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:32:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:33:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=159"}
+{"@timestamp":"2022-05-12T14:33:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:33:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:34:31.644+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=160"}
+{"@timestamp":"2022-05-12T14:34:31.659+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:34:47.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:35:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=160"}
+{"@timestamp":"2022-05-12T14:35:31.654+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:35:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:36:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=161"}
+{"@timestamp":"2022-05-12T14:36:31.651+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:36:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:37:31.649+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=161"}
+{"@timestamp":"2022-05-12T14:37:31.664+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:37:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:38:31.646+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=162"}
+{"@timestamp":"2022-05-12T14:38:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:38:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:39:31.644+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=162"}
+{"@timestamp":"2022-05-12T14:39:31.659+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:39:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:40:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=163"}
+{"@timestamp":"2022-05-12T14:40:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:40:47.437+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:41:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=163"}
+{"@timestamp":"2022-05-12T14:41:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:41:47.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:42:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=164"}
+{"@timestamp":"2022-05-12T14:42:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:42:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:43:31.646+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=164"}
+{"@timestamp":"2022-05-12T14:43:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:43:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:44:31.638+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=165"}
+{"@timestamp":"2022-05-12T14:44:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:44:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:45:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=165"}
+{"@timestamp":"2022-05-12T14:45:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:45:47.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:46:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=166"}
+{"@timestamp":"2022-05-12T14:46:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:46:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:47:31.640+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=166"}
+{"@timestamp":"2022-05-12T14:47:31.656+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:47:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:48:31.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.2Mi, Sys=12.9Mi, NumGC=167"}
+{"@timestamp":"2022-05-12T14:48:31.657+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:48:47.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:49:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=167"}
+{"@timestamp":"2022-05-12T14:49:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:49:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:50:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=168"}
+{"@timestamp":"2022-05-12T14:50:31.664+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:50:47.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:51:31.635+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=168"}
+{"@timestamp":"2022-05-12T14:51:31.666+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:51:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:52:31.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=169"}
+{"@timestamp":"2022-05-12T14:52:31.655+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:52:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:53:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=169"}
+{"@timestamp":"2022-05-12T14:53:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:53:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:54:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=170"}
+{"@timestamp":"2022-05-12T14:54:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:54:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:55:31.636+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=170"}
+{"@timestamp":"2022-05-12T14:55:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:55:47.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:56:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=171"}
+{"@timestamp":"2022-05-12T14:56:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:56:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:57:31.634+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=171"}
+{"@timestamp":"2022-05-12T14:57:31.665+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:57:47.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:58:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=172"}
+{"@timestamp":"2022-05-12T14:58:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:58:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T14:59:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=172"}
+{"@timestamp":"2022-05-12T14:59:31.653+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T14:59:47.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:00:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=173"}
+{"@timestamp":"2022-05-12T15:00:31.662+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:00:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:01:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=173"}
+{"@timestamp":"2022-05-12T15:01:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:01:47.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:02:31.635+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=174"}
+{"@timestamp":"2022-05-12T15:02:31.665+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:02:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:03:31.646+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=174"}
+{"@timestamp":"2022-05-12T15:03:31.661+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:03:47.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:04:31.645+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=175"}
+{"@timestamp":"2022-05-12T15:04:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:04:47.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:05:31.643+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=175"}
+{"@timestamp":"2022-05-12T15:05:31.659+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:05:47.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:06:31.648+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=176"}
+{"@timestamp":"2022-05-12T15:06:31.664+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:06:47.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:07:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=176"}
+{"@timestamp":"2022-05-12T15:07:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:07:47.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:08:31.637+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=177"}
+{"@timestamp":"2022-05-12T15:08:31.652+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:08:47.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:09:31.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=177"}
+{"@timestamp":"2022-05-12T15:09:31.663+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:09:47.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:10:31.644+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=6.3Mi, Sys=12.9Mi, NumGC=178"}
+{"@timestamp":"2022-05-12T15:10:31.660+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:10:47.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:17:18.508+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.3Mi, TotalAlloc=5.1Mi, Sys=13.8Mi, NumGC=2"}
+{"@timestamp":"2022-05-12T15:17:18.522+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0"}
+{"@timestamp":"2022-05-12T15:18:44.742+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.3Mi, TotalAlloc=5.1Mi, Sys=14.0Mi, NumGC=2"}
+{"@timestamp":"2022-05-12T15:18:44.758+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-05-12T15:18:49.586+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.5ms, 90th: 0.5ms, 99th: 0.5ms, 99.9th: 0.5ms"}
+{"@timestamp":"2022-05-12T15:19:44.741+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.3Mi, TotalAlloc=5.1Mi, Sys=14.0Mi, NumGC=2"}
+{"@timestamp":"2022-05-12T15:19:44.752+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:19:49.584+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:21:16.265+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.3Mi, TotalAlloc=5.1Mi, Sys=13.8Mi, NumGC=2"}
+{"@timestamp":"2022-05-12T15:21:16.281+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-05-12T15:21:29.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.6ms, 90th: 0.6ms, 99th: 0.6ms, 99.9th: 0.6ms"}
+{"@timestamp":"2022-05-12T15:22:16.270+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.3Mi, TotalAlloc=5.1Mi, Sys=13.8Mi, NumGC=2"}
+{"@timestamp":"2022-05-12T15:22:16.280+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:22:29.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:23:16.265+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.0Mi, NumGC=3"}
+{"@timestamp":"2022-05-12T15:23:16.281+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:23:29.426+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:24:16.270+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.0Mi, NumGC=3"}
+{"@timestamp":"2022-05-12T15:24:16.285+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:24:29.429+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:25:16.269+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.0Mi, NumGC=4"}
+{"@timestamp":"2022-05-12T15:25:16.284+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:25:29.425+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:26:16.267+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.0Mi, NumGC=4"}
+{"@timestamp":"2022-05-12T15:26:16.282+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:26:29.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:27:16.273+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.0Mi, NumGC=5"}
+{"@timestamp":"2022-05-12T15:27:16.288+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:27:29.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:28:16.260+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.0Mi, NumGC=5"}
+{"@timestamp":"2022-05-12T15:28:16.275+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-05-12T15:28:29.424+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.4ms, 90th: 0.4ms, 99th: 0.4ms, 99.9th: 0.4ms"}
+{"@timestamp":"2022-05-12T15:29:16.261+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.0Mi, NumGC=6"}
+{"@timestamp":"2022-05-12T15:29:16.276+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:29:29.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:30:16.274+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:30:16.274+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.0Mi, NumGC=6"}
+{"@timestamp":"2022-05-12T15:32:03.971+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.3Mi, TotalAlloc=5.1Mi, Sys=14.5Mi, NumGC=2"}
+{"@timestamp":"2022-05-12T15:32:03.986+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-05-12T15:32:05.157+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 1.0ms, med: 1.0ms, 90th: 1.0ms, 99th: 1.0ms, 99.9th: 1.0ms"}
+{"@timestamp":"2022-05-12T15:33:03.976+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.3Mi, TotalAlloc=5.1Mi, Sys=14.5Mi, NumGC=2"}
+{"@timestamp":"2022-05-12T15:33:03.987+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:33:05.158+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:34:03.976+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.5Mi, NumGC=3"}
+{"@timestamp":"2022-05-12T15:34:03.991+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:34:05.157+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:35:03.980+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.5Mi, NumGC=3"}
+{"@timestamp":"2022-05-12T15:35:03.991+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:35:05.153+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:36:03.976+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.5Mi, NumGC=4"}
+{"@timestamp":"2022-05-12T15:36:03.992+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:36:05.160+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:37:03.979+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.5Mi, NumGC=4"}
+{"@timestamp":"2022-05-12T15:37:03.994+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:37:05.160+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:38:03.973+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.5Mi, NumGC=5"}
+{"@timestamp":"2022-05-12T15:38:03.988+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:38:05.157+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:39:03.971+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.5Mi, NumGC=5"}
+{"@timestamp":"2022-05-12T15:39:03.986+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:39:05.161+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:40:03.980+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.5Mi, NumGC=6"}
+{"@timestamp":"2022-05-12T15:40:03.995+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:40:05.163+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:41:03.975+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.5Mi, NumGC=6"}
+{"@timestamp":"2022-05-12T15:41:03.991+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:41:05.158+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:42:03.974+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.5Mi, NumGC=7"}
+{"@timestamp":"2022-05-12T15:42:03.990+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:42:05.159+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:43:03.976+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.5Mi, NumGC=7"}
+{"@timestamp":"2022-05-12T15:43:03.992+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:43:05.158+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:44:03.973+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.5Mi, NumGC=8"}
+{"@timestamp":"2022-05-12T15:44:03.988+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:44:05.155+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:45:03.970+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.5Mi, NumGC=8"}
+{"@timestamp":"2022-05-12T15:45:03.986+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:45:05.152+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:46:03.975+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.5Mi, NumGC=9"}
+{"@timestamp":"2022-05-12T15:46:03.990+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:46:05.153+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:47:03.983+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.1Mi, Sys=14.5Mi, NumGC=9"}
+{"@timestamp":"2022-05-12T15:47:03.983+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:47:05.154+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:48:03.983+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:48:03.983+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=10"}
+{"@timestamp":"2022-05-12T15:48:05.150+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:49:03.973+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=10"}
+{"@timestamp":"2022-05-12T15:49:03.988+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:49:05.155+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:50:03.968+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=11"}
+{"@timestamp":"2022-05-12T15:50:03.984+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:50:05.152+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:51:03.970+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=11"}
+{"@timestamp":"2022-05-12T15:51:03.986+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:51:05.160+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:52:03.972+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=12"}
+{"@timestamp":"2022-05-12T15:52:03.988+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:52:05.156+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:53:03.974+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=12"}
+{"@timestamp":"2022-05-12T15:53:03.989+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:53:05.154+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:54:03.974+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=13"}
+{"@timestamp":"2022-05-12T15:54:03.989+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:54:05.154+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:55:03.972+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=13"}
+{"@timestamp":"2022-05-12T15:55:03.987+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:55:05.152+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:56:03.972+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=14"}
+{"@timestamp":"2022-05-12T15:56:03.988+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:56:05.153+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:57:03.975+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=14"}
+{"@timestamp":"2022-05-12T15:57:03.990+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:57:05.158+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:58:03.981+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=15"}
+{"@timestamp":"2022-05-12T15:58:03.996+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:58:05.150+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T15:59:03.971+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=15"}
+{"@timestamp":"2022-05-12T15:59:03.987+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T15:59:05.153+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:00:03.982+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:00:03.982+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=16"}
+{"@timestamp":"2022-05-12T16:00:05.152+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:01:03.983+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:01:03.983+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=16"}
+{"@timestamp":"2022-05-12T16:01:05.156+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:02:03.973+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=17"}
+{"@timestamp":"2022-05-12T16:02:03.988+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:02:05.153+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:03:03.978+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=17"}
+{"@timestamp":"2022-05-12T16:03:03.994+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:03:05.161+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:04:03.979+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=18"}
+{"@timestamp":"2022-05-12T16:04:03.994+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:04:05.161+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:05:03.975+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=18"}
+{"@timestamp":"2022-05-12T16:05:03.990+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:05:05.159+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:06:03.971+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=19"}
+{"@timestamp":"2022-05-12T16:06:03.987+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:06:05.157+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:07:03.973+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=19"}
+{"@timestamp":"2022-05-12T16:07:03.989+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:07:05.154+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:08:03.972+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=20"}
+{"@timestamp":"2022-05-12T16:08:03.988+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:08:05.158+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:09:03.981+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=20"}
+{"@timestamp":"2022-05-12T16:09:03.981+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:09:05.152+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:10:03.978+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=21"}
+{"@timestamp":"2022-05-12T16:10:03.995+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:10:05.163+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:11:03.974+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.2Mi, Sys=14.5Mi, NumGC=21"}
+{"@timestamp":"2022-05-12T16:11:03.989+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:11:05.155+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:20:18.746+08:00","level":"stat","content":"p2c - conn: 192.168.0.108:8080, load: 1018, reqs: 1"}
+{"@timestamp":"2022-05-12T16:20:43.583+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=6.5Mi, Sys=18.4Mi, NumGC=3"}
+{"@timestamp":"2022-05-12T16:20:43.598+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0"}
+{"@timestamp":"2022-05-12T16:21:04.420+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.5ms, med: 1.7ms, 90th: 1.7ms, 99th: 1.7ms, 99.9th: 1.7ms"}
+{"@timestamp":"2022-05-12T16:21:43.585+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=6.6Mi, Sys=18.4Mi, NumGC=3"}
+{"@timestamp":"2022-05-12T16:21:43.596+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:22:04.425+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:22:43.584+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=6.6Mi, Sys=18.7Mi, NumGC=4"}
+{"@timestamp":"2022-05-12T16:22:43.599+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:23:04.427+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:24:09.142+08:00","level":"stat","content":"p2c - conn: 192.168.0.108:8080, load: 1253, reqs: 1"}
+{"@timestamp":"2022-05-12T16:24:20.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.9Mi, NumGC=3"}
+{"@timestamp":"2022-05-12T16:24:20.312+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-05-12T16:25:09.153+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 3.0ms, med: 3.6ms, 90th: 3.6ms, 99th: 3.6ms, 99.9th: 3.6ms"}
+{"@timestamp":"2022-05-12T16:25:20.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=6.8Mi, Sys=18.9Mi, NumGC=3"}
+{"@timestamp":"2022-05-12T16:25:20.316+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:26:01.055+08:00","level":"stat","content":"p2c - conn: 192.168.0.108:8080, load: 1054, reqs: 1"}
+{"@timestamp":"2022-05-12T16:26:34.368+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.4Mi, Sys=14.3Mi, NumGC=3"}
+{"@timestamp":"2022-05-12T16:26:34.383+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-05-12T16:27:01.070+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 1.0ms, med: 1.1ms, 90th: 1.1ms, 99th: 1.1ms, 99.9th: 1.1ms"}
+{"@timestamp":"2022-05-12T16:27:34.367+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=6.5Mi, Sys=14.3Mi, NumGC=3"}
+{"@timestamp":"2022-05-12T16:27:34.383+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:28:01.065+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:28:49.193+08:00","level":"stat","content":"p2c - conn: 192.168.0.108:8080, load: 734, reqs: 1"}
+{"@timestamp":"2022-05-12T16:29:25.267+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.2Mi, TotalAlloc=6.4Mi, Sys=14.8Mi, NumGC=3"}
+{"@timestamp":"2022-05-12T16:29:25.282+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-05-12T16:29:49.207+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 2.0ms, med: 2.3ms, 90th: 2.3ms, 99th: 2.3ms, 99.9th: 2.3ms"}
+{"@timestamp":"2022-05-12T16:30:25.272+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=6.6Mi, Sys=14.8Mi, NumGC=3"}
+{"@timestamp":"2022-05-12T16:30:25.287+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:30:49.206+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:31:25.277+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=15.0Mi, NumGC=4"}
+{"@timestamp":"2022-05-12T16:31:25.292+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:31:49.200+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:37:37.883+08:00","level":"stat","content":"p2c - conn: 192.168.0.108:8080, load: 1273, reqs: 1"}
+{"@timestamp":"2022-05-12T16:38:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=6.4Mi, Sys=14.8Mi, NumGC=3"}
+{"@timestamp":"2022-05-12T16:38:26.360+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0"}
+{"@timestamp":"2022-05-12T16:38:37.893+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 2.0ms, med: 3.3ms, 90th: 3.3ms, 99th: 3.3ms, 99.9th: 3.3ms"}
+{"@timestamp":"2022-05-12T16:39:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=6.6Mi, Sys=14.8Mi, NumGC=3"}
+{"@timestamp":"2022-05-12T16:39:26.351+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:39:37.893+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:40:26.340+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=6.6Mi, Sys=14.8Mi, NumGC=4"}
+{"@timestamp":"2022-05-12T16:40:26.355+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:40:37.897+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:41:26.342+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=6.6Mi, Sys=14.8Mi, NumGC=4"}
+{"@timestamp":"2022-05-12T16:41:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:41:37.887+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:42:26.342+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=14.8Mi, NumGC=5"}
+{"@timestamp":"2022-05-12T16:42:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:42:37.886+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:43:26.346+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=14.8Mi, NumGC=5"}
+{"@timestamp":"2022-05-12T16:43:26.361+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:43:37.896+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:44:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.7Mi, Sys=14.8Mi, NumGC=6"}
+{"@timestamp":"2022-05-12T16:44:26.353+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:44:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:45:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.7Mi, Sys=14.8Mi, NumGC=6"}
+{"@timestamp":"2022-05-12T16:45:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:45:37.885+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:46:26.331+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.7Mi, Sys=14.8Mi, NumGC=7"}
+{"@timestamp":"2022-05-12T16:46:26.362+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:46:37.892+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:47:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.7Mi, Sys=14.8Mi, NumGC=7"}
+{"@timestamp":"2022-05-12T16:47:26.353+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:47:37.888+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:48:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.7Mi, Sys=14.8Mi, NumGC=8"}
+{"@timestamp":"2022-05-12T16:48:26.360+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:48:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:49:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.7Mi, Sys=14.8Mi, NumGC=8"}
+{"@timestamp":"2022-05-12T16:49:26.352+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:49:37.893+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:50:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.8Mi, Sys=14.8Mi, NumGC=9"}
+{"@timestamp":"2022-05-12T16:50:26.356+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:50:37.884+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:51:26.340+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.8Mi, Sys=14.8Mi, NumGC=9"}
+{"@timestamp":"2022-05-12T16:51:26.356+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:51:37.890+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:52:26.333+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.8Mi, Sys=14.8Mi, NumGC=10"}
+{"@timestamp":"2022-05-12T16:52:26.365+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:52:37.886+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:53:26.333+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.8Mi, Sys=14.8Mi, NumGC=10"}
+{"@timestamp":"2022-05-12T16:53:26.365+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:53:37.898+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:54:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.8Mi, Sys=14.8Mi, NumGC=11"}
+{"@timestamp":"2022-05-12T16:54:26.361+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:54:37.888+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:55:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.8Mi, Sys=14.8Mi, NumGC=11"}
+{"@timestamp":"2022-05-12T16:55:26.352+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:55:37.884+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:56:26.343+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.9Mi, Sys=14.8Mi, NumGC=12"}
+{"@timestamp":"2022-05-12T16:56:26.358+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:56:37.897+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:57:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.9Mi, Sys=14.8Mi, NumGC=12"}
+{"@timestamp":"2022-05-12T16:57:26.356+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:57:37.889+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:58:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.9Mi, Sys=14.8Mi, NumGC=13"}
+{"@timestamp":"2022-05-12T16:58:26.361+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:58:37.899+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T16:59:26.339+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.9Mi, Sys=14.8Mi, NumGC=13"}
+{"@timestamp":"2022-05-12T16:59:26.355+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T16:59:37.887+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:00:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.9Mi, Sys=14.8Mi, NumGC=14"}
+{"@timestamp":"2022-05-12T17:00:26.351+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:00:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:01:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.0Mi, Sys=14.8Mi, NumGC=14"}
+{"@timestamp":"2022-05-12T17:01:26.356+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:01:37.887+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:02:26.335+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.0Mi, Sys=14.8Mi, NumGC=15"}
+{"@timestamp":"2022-05-12T17:02:26.351+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:02:37.886+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:03:26.343+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.0Mi, Sys=14.8Mi, NumGC=15"}
+{"@timestamp":"2022-05-12T17:03:26.359+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:03:37.896+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:04:26.339+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.0Mi, Sys=14.8Mi, NumGC=16"}
+{"@timestamp":"2022-05-12T17:04:26.355+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:04:37.889+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:05:26.344+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.0Mi, Sys=14.8Mi, NumGC=16"}
+{"@timestamp":"2022-05-12T17:05:26.359+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:05:37.884+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:06:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.0Mi, Sys=14.8Mi, NumGC=17"}
+{"@timestamp":"2022-05-12T17:06:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:06:37.889+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:07:26.334+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.1Mi, Sys=14.8Mi, NumGC=17"}
+{"@timestamp":"2022-05-12T17:07:26.364+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:07:37.884+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:08:26.338+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.1Mi, Sys=14.8Mi, NumGC=18"}
+{"@timestamp":"2022-05-12T17:08:26.353+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:08:37.896+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:09:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.1Mi, Sys=14.8Mi, NumGC=18"}
+{"@timestamp":"2022-05-12T17:09:26.361+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:09:37.894+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:10:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.1Mi, Sys=14.8Mi, NumGC=19"}
+{"@timestamp":"2022-05-12T17:10:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:10:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:11:26.332+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.1Mi, Sys=14.8Mi, NumGC=19"}
+{"@timestamp":"2022-05-12T17:11:26.364+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:11:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:12:26.340+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.1Mi, Sys=14.8Mi, NumGC=20"}
+{"@timestamp":"2022-05-12T17:12:26.356+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:12:37.884+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:13:26.342+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.2Mi, Sys=14.8Mi, NumGC=20"}
+{"@timestamp":"2022-05-12T17:13:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:13:37.887+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:14:26.340+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.2Mi, Sys=14.8Mi, NumGC=21"}
+{"@timestamp":"2022-05-12T17:14:26.355+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:14:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:15:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.2Mi, Sys=14.8Mi, NumGC=21"}
+{"@timestamp":"2022-05-12T17:15:26.353+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:15:37.898+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:16:26.343+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.2Mi, Sys=14.8Mi, NumGC=22"}
+{"@timestamp":"2022-05-12T17:16:26.358+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:16:37.890+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:17:26.331+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.2Mi, Sys=14.8Mi, NumGC=22"}
+{"@timestamp":"2022-05-12T17:17:26.363+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:17:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:18:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.2Mi, Sys=14.8Mi, NumGC=23"}
+{"@timestamp":"2022-05-12T17:18:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:18:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:19:26.344+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.3Mi, Sys=14.8Mi, NumGC=23"}
+{"@timestamp":"2022-05-12T17:19:26.359+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:19:37.889+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:20:26.334+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.3Mi, Sys=14.8Mi, NumGC=24"}
+{"@timestamp":"2022-05-12T17:20:26.365+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:20:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:21:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.3Mi, Sys=14.8Mi, NumGC=24"}
+{"@timestamp":"2022-05-12T17:21:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:21:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:22:26.339+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.3Mi, Sys=14.8Mi, NumGC=25"}
+{"@timestamp":"2022-05-12T17:22:26.354+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:22:37.887+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:23:26.346+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.3Mi, Sys=14.8Mi, NumGC=25"}
+{"@timestamp":"2022-05-12T17:23:26.361+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:23:37.890+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:24:26.342+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.3Mi, Sys=14.8Mi, NumGC=26"}
+{"@timestamp":"2022-05-12T17:24:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:24:37.894+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:25:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.4Mi, Sys=14.8Mi, NumGC=26"}
+{"@timestamp":"2022-05-12T17:25:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:25:37.893+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:26:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.4Mi, Sys=14.8Mi, NumGC=27"}
+{"@timestamp":"2022-05-12T17:26:26.353+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:26:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:27:26.333+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.4Mi, Sys=14.8Mi, NumGC=27"}
+{"@timestamp":"2022-05-12T17:27:26.364+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:27:37.898+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:28:26.342+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.4Mi, Sys=14.8Mi, NumGC=28"}
+{"@timestamp":"2022-05-12T17:28:26.358+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:28:37.894+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:29:26.333+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.4Mi, Sys=14.8Mi, NumGC=28"}
+{"@timestamp":"2022-05-12T17:29:26.363+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:29:37.884+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:30:26.344+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.4Mi, Sys=14.8Mi, NumGC=29"}
+{"@timestamp":"2022-05-12T17:30:26.360+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:30:37.899+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:31:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.5Mi, Sys=14.8Mi, NumGC=29"}
+{"@timestamp":"2022-05-12T17:31:26.351+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:31:37.890+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:32:26.334+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.5Mi, Sys=14.8Mi, NumGC=30"}
+{"@timestamp":"2022-05-12T17:32:26.365+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:32:37.889+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:33:26.338+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.5Mi, Sys=14.8Mi, NumGC=30"}
+{"@timestamp":"2022-05-12T17:33:26.354+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:33:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:34:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.5Mi, Sys=14.8Mi, NumGC=31"}
+{"@timestamp":"2022-05-12T17:34:26.361+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:34:37.889+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:35:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.5Mi, Sys=14.8Mi, NumGC=31"}
+{"@timestamp":"2022-05-12T17:35:26.352+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:35:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:36:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.6Mi, Sys=14.8Mi, NumGC=32"}
+{"@timestamp":"2022-05-12T17:36:26.351+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:36:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:37:26.339+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.6Mi, Sys=14.8Mi, NumGC=32"}
+{"@timestamp":"2022-05-12T17:37:26.355+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:37:37.894+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:38:26.344+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.6Mi, Sys=14.8Mi, NumGC=33"}
+{"@timestamp":"2022-05-12T17:38:26.359+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:38:37.892+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:39:26.344+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.6Mi, Sys=14.8Mi, NumGC=33"}
+{"@timestamp":"2022-05-12T17:39:26.359+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:39:37.894+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:40:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.6Mi, Sys=14.8Mi, NumGC=34"}
+{"@timestamp":"2022-05-12T17:40:26.361+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:40:37.892+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:41:26.342+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.6Mi, Sys=14.8Mi, NumGC=34"}
+{"@timestamp":"2022-05-12T17:41:26.358+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:41:37.889+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:42:26.340+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.7Mi, Sys=14.8Mi, NumGC=35"}
+{"@timestamp":"2022-05-12T17:42:26.355+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:42:37.889+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:43:26.343+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.7Mi, Sys=14.8Mi, NumGC=35"}
+{"@timestamp":"2022-05-12T17:43:26.358+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:43:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:44:26.338+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.7Mi, Sys=14.8Mi, NumGC=36"}
+{"@timestamp":"2022-05-12T17:44:26.353+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:44:37.894+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:45:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.7Mi, Sys=14.8Mi, NumGC=36"}
+{"@timestamp":"2022-05-12T17:45:26.352+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:45:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:46:26.340+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.7Mi, Sys=14.8Mi, NumGC=37"}
+{"@timestamp":"2022-05-12T17:46:26.356+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:46:37.893+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:47:26.338+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.7Mi, Sys=14.8Mi, NumGC=37"}
+{"@timestamp":"2022-05-12T17:47:26.354+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:47:37.893+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:48:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.8Mi, Sys=14.8Mi, NumGC=38"}
+{"@timestamp":"2022-05-12T17:48:26.353+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:48:37.889+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:49:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.8Mi, Sys=14.8Mi, NumGC=38"}
+{"@timestamp":"2022-05-12T17:49:26.352+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:49:37.884+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:50:26.334+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.8Mi, Sys=14.8Mi, NumGC=39"}
+{"@timestamp":"2022-05-12T17:50:26.364+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:50:37.893+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:51:26.334+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.8Mi, Sys=14.8Mi, NumGC=39"}
+{"@timestamp":"2022-05-12T17:51:26.365+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:51:37.898+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:52:26.334+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.8Mi, Sys=14.8Mi, NumGC=40"}
+{"@timestamp":"2022-05-12T17:52:26.365+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:52:37.890+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:53:26.335+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.8Mi, Sys=14.8Mi, NumGC=40"}
+{"@timestamp":"2022-05-12T17:53:26.351+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:53:37.898+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:54:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.9Mi, Sys=14.8Mi, NumGC=41"}
+{"@timestamp":"2022-05-12T17:54:26.353+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:54:37.884+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:55:26.334+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.9Mi, Sys=14.8Mi, NumGC=41"}
+{"@timestamp":"2022-05-12T17:55:26.365+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:55:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:56:26.332+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.9Mi, Sys=14.8Mi, NumGC=42"}
+{"@timestamp":"2022-05-12T17:56:26.362+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:56:37.889+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:57:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.9Mi, Sys=14.8Mi, NumGC=42"}
+{"@timestamp":"2022-05-12T17:57:26.352+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:57:37.899+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:58:26.343+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.9Mi, Sys=14.8Mi, NumGC=43"}
+{"@timestamp":"2022-05-12T17:58:26.359+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:58:37.890+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T17:59:26.334+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.9Mi, Sys=14.8Mi, NumGC=43"}
+{"@timestamp":"2022-05-12T17:59:26.365+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T17:59:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:00:26.342+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.0Mi, Sys=14.8Mi, NumGC=44"}
+{"@timestamp":"2022-05-12T18:00:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:00:37.898+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:01:26.335+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.0Mi, Sys=14.8Mi, NumGC=44"}
+{"@timestamp":"2022-05-12T18:01:26.365+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:01:37.885+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:02:26.338+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.0Mi, Sys=14.8Mi, NumGC=45"}
+{"@timestamp":"2022-05-12T18:02:26.354+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:02:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:03:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.0Mi, Sys=14.8Mi, NumGC=45"}
+{"@timestamp":"2022-05-12T18:03:26.360+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:03:37.896+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:04:26.343+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.0Mi, Sys=14.8Mi, NumGC=46"}
+{"@timestamp":"2022-05-12T18:04:26.358+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:04:37.884+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:05:26.339+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.1Mi, Sys=14.8Mi, NumGC=46"}
+{"@timestamp":"2022-05-12T18:05:26.355+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:05:37.887+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:06:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.1Mi, Sys=14.8Mi, NumGC=47"}
+{"@timestamp":"2022-05-12T18:06:26.352+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:06:37.888+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:07:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.1Mi, Sys=14.8Mi, NumGC=47"}
+{"@timestamp":"2022-05-12T18:07:26.352+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:07:37.884+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:08:26.333+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.1Mi, Sys=14.8Mi, NumGC=48"}
+{"@timestamp":"2022-05-12T18:08:26.364+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:08:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:09:26.335+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.1Mi, Sys=14.8Mi, NumGC=48"}
+{"@timestamp":"2022-05-12T18:09:26.365+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:09:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:10:26.342+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.1Mi, Sys=14.8Mi, NumGC=49"}
+{"@timestamp":"2022-05-12T18:10:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:10:37.892+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:11:26.340+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.2Mi, Sys=14.8Mi, NumGC=49"}
+{"@timestamp":"2022-05-12T18:11:26.355+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:11:37.889+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:12:26.340+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.2Mi, Sys=14.8Mi, NumGC=50"}
+{"@timestamp":"2022-05-12T18:12:26.356+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:12:37.896+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:13:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.2Mi, Sys=14.8Mi, NumGC=50"}
+{"@timestamp":"2022-05-12T18:13:26.351+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:13:37.896+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:14:26.332+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.2Mi, Sys=14.8Mi, NumGC=51"}
+{"@timestamp":"2022-05-12T18:14:26.362+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:14:37.892+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:15:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.2Mi, Sys=14.8Mi, NumGC=51"}
+{"@timestamp":"2022-05-12T18:15:26.351+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:15:37.890+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:16:26.339+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.3Mi, Sys=14.8Mi, NumGC=52"}
+{"@timestamp":"2022-05-12T18:16:26.354+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:16:37.899+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:17:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.3Mi, Sys=14.8Mi, NumGC=52"}
+{"@timestamp":"2022-05-12T18:17:26.360+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:17:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:18:26.333+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.3Mi, Sys=14.8Mi, NumGC=53"}
+{"@timestamp":"2022-05-12T18:18:26.363+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:18:37.893+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:19:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.3Mi, Sys=14.8Mi, NumGC=53"}
+{"@timestamp":"2022-05-12T18:19:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:19:37.888+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:20:26.339+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.3Mi, Sys=14.8Mi, NumGC=54"}
+{"@timestamp":"2022-05-12T18:20:26.354+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:20:37.889+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:21:26.342+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.3Mi, Sys=14.8Mi, NumGC=54"}
+{"@timestamp":"2022-05-12T18:21:26.358+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:21:37.899+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:22:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.4Mi, Sys=14.8Mi, NumGC=55"}
+{"@timestamp":"2022-05-12T18:22:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:22:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:23:26.332+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.4Mi, Sys=14.8Mi, NumGC=55"}
+{"@timestamp":"2022-05-12T18:23:26.363+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:23:37.897+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:24:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.4Mi, Sys=14.8Mi, NumGC=56"}
+{"@timestamp":"2022-05-12T18:24:26.352+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:24:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:25:26.346+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.4Mi, Sys=14.8Mi, NumGC=56"}
+{"@timestamp":"2022-05-12T18:25:26.361+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:25:37.886+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:26:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.4Mi, Sys=14.8Mi, NumGC=57"}
+{"@timestamp":"2022-05-12T18:26:26.352+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:26:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:27:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.4Mi, Sys=14.8Mi, NumGC=57"}
+{"@timestamp":"2022-05-12T18:27:26.356+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:27:37.885+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:28:26.334+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.5Mi, Sys=14.8Mi, NumGC=58"}
+{"@timestamp":"2022-05-12T18:28:26.365+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:28:37.885+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:29:26.343+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.5Mi, Sys=14.8Mi, NumGC=58"}
+{"@timestamp":"2022-05-12T18:29:26.358+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:29:37.892+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:30:26.335+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.5Mi, Sys=14.8Mi, NumGC=59"}
+{"@timestamp":"2022-05-12T18:30:26.366+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:30:37.894+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:31:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.5Mi, Sys=14.8Mi, NumGC=59"}
+{"@timestamp":"2022-05-12T18:31:26.351+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:31:37.886+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:32:26.342+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.5Mi, Sys=14.8Mi, NumGC=60"}
+{"@timestamp":"2022-05-12T18:32:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:32:37.886+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:33:26.331+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.5Mi, Sys=14.8Mi, NumGC=60"}
+{"@timestamp":"2022-05-12T18:33:26.362+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:33:37.888+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:34:26.343+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.6Mi, Sys=14.8Mi, NumGC=61"}
+{"@timestamp":"2022-05-12T18:34:26.359+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:34:37.889+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:35:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.6Mi, Sys=14.8Mi, NumGC=61"}
+{"@timestamp":"2022-05-12T18:35:26.360+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:35:37.894+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:36:26.338+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.6Mi, Sys=14.8Mi, NumGC=62"}
+{"@timestamp":"2022-05-12T18:36:26.353+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:36:37.885+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:37:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.6Mi, Sys=14.8Mi, NumGC=62"}
+{"@timestamp":"2022-05-12T18:37:26.352+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:37:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:38:26.343+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.6Mi, Sys=14.8Mi, NumGC=63"}
+{"@timestamp":"2022-05-12T18:38:26.360+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:38:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:39:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.6Mi, Sys=14.8Mi, NumGC=63"}
+{"@timestamp":"2022-05-12T18:39:26.351+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:39:37.885+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:40:26.343+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.7Mi, Sys=14.8Mi, NumGC=64"}
+{"@timestamp":"2022-05-12T18:40:26.358+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:40:37.888+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:41:26.338+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.7Mi, Sys=14.8Mi, NumGC=64"}
+{"@timestamp":"2022-05-12T18:41:26.353+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:41:37.897+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:42:26.342+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.7Mi, Sys=14.8Mi, NumGC=65"}
+{"@timestamp":"2022-05-12T18:42:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:42:37.889+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:43:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.7Mi, Sys=14.8Mi, NumGC=65"}
+{"@timestamp":"2022-05-12T18:43:26.352+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:43:37.884+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:44:26.340+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.7Mi, Sys=14.8Mi, NumGC=66"}
+{"@timestamp":"2022-05-12T18:44:26.355+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:44:37.890+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:45:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.7Mi, Sys=14.8Mi, NumGC=66"}
+{"@timestamp":"2022-05-12T18:45:26.351+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:45:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:46:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.8Mi, Sys=14.8Mi, NumGC=67"}
+{"@timestamp":"2022-05-12T18:46:26.360+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:46:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:47:26.338+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.8Mi, Sys=14.8Mi, NumGC=67"}
+{"@timestamp":"2022-05-12T18:47:26.353+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:47:37.887+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:48:26.332+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.8Mi, Sys=14.8Mi, NumGC=68"}
+{"@timestamp":"2022-05-12T18:48:26.364+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:48:37.886+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:49:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.8Mi, Sys=14.8Mi, NumGC=68"}
+{"@timestamp":"2022-05-12T18:49:26.356+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:49:37.888+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:50:26.333+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.8Mi, Sys=14.8Mi, NumGC=69"}
+{"@timestamp":"2022-05-12T18:50:26.365+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:50:37.889+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:51:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.8Mi, Sys=14.8Mi, NumGC=69"}
+{"@timestamp":"2022-05-12T18:51:26.351+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:51:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:52:26.333+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.9Mi, Sys=14.8Mi, NumGC=70"}
+{"@timestamp":"2022-05-12T18:52:26.365+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:52:37.884+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:53:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.9Mi, Sys=14.8Mi, NumGC=70"}
+{"@timestamp":"2022-05-12T18:53:26.351+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:53:37.885+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:54:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.9Mi, Sys=14.8Mi, NumGC=71"}
+{"@timestamp":"2022-05-12T18:54:26.353+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:54:37.892+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:55:26.335+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.9Mi, Sys=14.8Mi, NumGC=71"}
+{"@timestamp":"2022-05-12T18:55:26.366+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:55:37.889+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:56:26.332+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.9Mi, Sys=14.8Mi, NumGC=72"}
+{"@timestamp":"2022-05-12T18:56:26.362+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:56:37.885+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:57:26.335+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.0Mi, Sys=14.8Mi, NumGC=72"}
+{"@timestamp":"2022-05-12T18:57:26.350+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:57:37.898+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:58:26.344+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.0Mi, Sys=14.8Mi, NumGC=73"}
+{"@timestamp":"2022-05-12T18:58:26.360+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:58:37.892+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T18:59:26.335+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.0Mi, Sys=14.8Mi, NumGC=73"}
+{"@timestamp":"2022-05-12T18:59:26.366+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T18:59:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:00:26.339+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.0Mi, Sys=14.8Mi, NumGC=74"}
+{"@timestamp":"2022-05-12T19:00:26.354+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:00:37.884+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:01:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.0Mi, Sys=14.8Mi, NumGC=74"}
+{"@timestamp":"2022-05-12T19:01:26.356+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:01:37.892+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:02:26.342+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.0Mi, Sys=14.8Mi, NumGC=75"}
+{"@timestamp":"2022-05-12T19:02:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:02:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:03:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.1Mi, Sys=14.8Mi, NumGC=75"}
+{"@timestamp":"2022-05-12T19:03:26.360+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:03:37.890+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:04:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.1Mi, Sys=14.8Mi, NumGC=76"}
+{"@timestamp":"2022-05-12T19:04:26.361+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:04:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:05:26.343+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.1Mi, Sys=14.8Mi, NumGC=76"}
+{"@timestamp":"2022-05-12T19:05:26.359+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:05:37.886+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:06:26.343+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.1Mi, Sys=14.8Mi, NumGC=77"}
+{"@timestamp":"2022-05-12T19:06:26.358+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:06:37.888+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:07:26.346+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.1Mi, Sys=14.8Mi, NumGC=77"}
+{"@timestamp":"2022-05-12T19:07:26.362+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:07:37.894+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:08:26.344+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.1Mi, Sys=14.8Mi, NumGC=78"}
+{"@timestamp":"2022-05-12T19:08:26.359+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:08:37.885+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:09:26.334+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.2Mi, Sys=14.8Mi, NumGC=78"}
+{"@timestamp":"2022-05-12T19:09:26.365+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:09:37.889+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:10:26.335+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.2Mi, Sys=14.8Mi, NumGC=79"}
+{"@timestamp":"2022-05-12T19:10:26.350+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:10:37.887+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:11:26.335+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.2Mi, Sys=14.8Mi, NumGC=79"}
+{"@timestamp":"2022-05-12T19:11:26.366+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:11:37.894+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:12:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.2Mi, Sys=14.8Mi, NumGC=80"}
+{"@timestamp":"2022-05-12T19:12:26.359+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:12:37.893+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:13:26.332+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.2Mi, Sys=14.8Mi, NumGC=80"}
+{"@timestamp":"2022-05-12T19:13:26.362+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:13:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:14:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.2Mi, Sys=14.8Mi, NumGC=81"}
+{"@timestamp":"2022-05-12T19:14:26.356+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:14:37.885+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:15:26.342+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.3Mi, Sys=14.8Mi, NumGC=81"}
+{"@timestamp":"2022-05-12T19:15:26.358+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:15:37.890+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:16:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.3Mi, Sys=14.8Mi, NumGC=82"}
+{"@timestamp":"2022-05-12T19:16:26.359+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:16:37.890+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:17:26.333+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.3Mi, Sys=14.8Mi, NumGC=82"}
+{"@timestamp":"2022-05-12T19:17:26.362+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:17:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:18:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.3Mi, Sys=14.8Mi, NumGC=83"}
+{"@timestamp":"2022-05-12T19:18:26.351+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:18:37.888+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:19:26.347+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.3Mi, Sys=14.8Mi, NumGC=83"}
+{"@timestamp":"2022-05-12T19:19:26.362+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:19:37.894+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:20:26.332+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.4Mi, Sys=14.8Mi, NumGC=84"}
+{"@timestamp":"2022-05-12T19:20:26.363+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:20:37.884+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:21:26.343+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.4Mi, Sys=14.8Mi, NumGC=84"}
+{"@timestamp":"2022-05-12T19:21:26.358+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:21:37.887+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:22:26.342+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.4Mi, Sys=14.8Mi, NumGC=85"}
+{"@timestamp":"2022-05-12T19:22:26.358+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:22:37.886+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:23:26.339+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.4Mi, Sys=14.8Mi, NumGC=85"}
+{"@timestamp":"2022-05-12T19:23:26.354+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:23:37.884+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:24:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.4Mi, Sys=14.8Mi, NumGC=86"}
+{"@timestamp":"2022-05-12T19:24:26.352+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:24:37.886+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:25:26.339+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.4Mi, Sys=14.8Mi, NumGC=86"}
+{"@timestamp":"2022-05-12T19:25:26.354+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:25:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:26:26.334+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.5Mi, Sys=14.8Mi, NumGC=87"}
+{"@timestamp":"2022-05-12T19:26:26.364+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:26:37.889+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:27:26.335+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.5Mi, Sys=14.8Mi, NumGC=87"}
+{"@timestamp":"2022-05-12T19:27:26.350+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:27:37.885+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:28:26.335+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.5Mi, Sys=14.8Mi, NumGC=88"}
+{"@timestamp":"2022-05-12T19:28:26.350+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:28:37.884+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:29:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.5Mi, Sys=14.8Mi, NumGC=88"}
+{"@timestamp":"2022-05-12T19:29:26.361+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:29:37.892+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:30:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.5Mi, Sys=14.8Mi, NumGC=89"}
+{"@timestamp":"2022-05-12T19:30:26.358+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:30:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:31:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.5Mi, Sys=14.8Mi, NumGC=89"}
+{"@timestamp":"2022-05-12T19:31:26.351+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:31:37.890+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:32:26.342+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.6Mi, Sys=14.8Mi, NumGC=90"}
+{"@timestamp":"2022-05-12T19:32:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:32:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:33:26.334+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.6Mi, Sys=14.8Mi, NumGC=90"}
+{"@timestamp":"2022-05-12T19:33:26.365+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:33:37.890+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:34:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.6Mi, Sys=14.8Mi, NumGC=91"}
+{"@timestamp":"2022-05-12T19:34:26.360+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:34:37.894+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:35:26.339+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.6Mi, Sys=14.8Mi, NumGC=91"}
+{"@timestamp":"2022-05-12T19:35:26.354+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:35:37.890+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:36:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.6Mi, Sys=14.8Mi, NumGC=92"}
+{"@timestamp":"2022-05-12T19:36:26.356+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:36:37.897+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:37:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.6Mi, Sys=14.8Mi, NumGC=92"}
+{"@timestamp":"2022-05-12T19:37:26.353+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:37:37.893+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:38:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.7Mi, Sys=14.8Mi, NumGC=93"}
+{"@timestamp":"2022-05-12T19:38:26.351+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:38:37.897+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:39:26.342+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.7Mi, Sys=14.8Mi, NumGC=93"}
+{"@timestamp":"2022-05-12T19:39:26.358+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:39:37.886+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:40:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.7Mi, Sys=14.8Mi, NumGC=94"}
+{"@timestamp":"2022-05-12T19:40:26.356+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:40:37.897+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:41:26.339+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.7Mi, Sys=14.8Mi, NumGC=94"}
+{"@timestamp":"2022-05-12T19:41:26.355+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:41:37.893+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:42:26.343+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.7Mi, Sys=14.8Mi, NumGC=95"}
+{"@timestamp":"2022-05-12T19:42:26.358+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:42:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:43:26.344+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.7Mi, Sys=14.8Mi, NumGC=95"}
+{"@timestamp":"2022-05-12T19:43:26.360+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:43:37.887+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:44:26.332+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.8Mi, Sys=14.8Mi, NumGC=96"}
+{"@timestamp":"2022-05-12T19:44:26.364+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:44:37.892+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:45:26.346+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.8Mi, Sys=14.8Mi, NumGC=96"}
+{"@timestamp":"2022-05-12T19:45:26.361+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:45:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:46:26.333+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.8Mi, Sys=14.8Mi, NumGC=97"}
+{"@timestamp":"2022-05-12T19:46:26.363+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:46:37.894+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:47:26.344+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.8Mi, Sys=14.8Mi, NumGC=97"}
+{"@timestamp":"2022-05-12T19:47:26.359+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:47:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:48:26.346+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.8Mi, Sys=14.8Mi, NumGC=98"}
+{"@timestamp":"2022-05-12T19:48:26.362+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:48:37.886+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:49:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.8Mi, Sys=14.8Mi, NumGC=98"}
+{"@timestamp":"2022-05-12T19:49:26.356+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:49:37.893+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:50:26.333+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.9Mi, Sys=14.8Mi, NumGC=99"}
+{"@timestamp":"2022-05-12T19:50:26.363+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:50:37.884+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:51:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.9Mi, Sys=14.8Mi, NumGC=99"}
+{"@timestamp":"2022-05-12T19:51:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:51:37.886+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:52:26.340+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.9Mi, Sys=14.8Mi, NumGC=100"}
+{"@timestamp":"2022-05-12T19:52:26.355+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:52:37.894+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:53:26.333+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.9Mi, Sys=14.8Mi, NumGC=100"}
+{"@timestamp":"2022-05-12T19:53:26.364+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:53:37.897+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:54:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.9Mi, Sys=14.8Mi, NumGC=101"}
+{"@timestamp":"2022-05-12T19:54:26.352+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:54:37.892+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:55:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.9Mi, Sys=14.8Mi, NumGC=101"}
+{"@timestamp":"2022-05-12T19:55:26.351+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:55:37.893+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:56:26.346+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.0Mi, Sys=14.8Mi, NumGC=102"}
+{"@timestamp":"2022-05-12T19:56:26.362+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:56:37.893+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:57:26.344+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.0Mi, Sys=14.8Mi, NumGC=102"}
+{"@timestamp":"2022-05-12T19:57:26.359+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:57:37.888+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:58:26.346+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.0Mi, Sys=14.8Mi, NumGC=103"}
+{"@timestamp":"2022-05-12T19:58:26.362+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:58:37.888+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T19:59:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.0Mi, Sys=14.8Mi, NumGC=103"}
+{"@timestamp":"2022-05-12T19:59:26.354+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T19:59:37.896+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:00:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.0Mi, Sys=14.8Mi, NumGC=104"}
+{"@timestamp":"2022-05-12T20:00:26.353+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:00:37.899+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:01:26.333+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.0Mi, Sys=14.8Mi, NumGC=104"}
+{"@timestamp":"2022-05-12T20:01:26.365+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:01:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:02:26.332+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.1Mi, Sys=14.8Mi, NumGC=105"}
+{"@timestamp":"2022-05-12T20:02:26.363+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:02:37.892+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:03:26.340+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.1Mi, Sys=14.8Mi, NumGC=105"}
+{"@timestamp":"2022-05-12T20:03:26.356+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:03:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:04:26.344+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.1Mi, Sys=14.8Mi, NumGC=106"}
+{"@timestamp":"2022-05-12T20:04:26.360+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:04:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:05:26.342+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.1Mi, Sys=14.8Mi, NumGC=106"}
+{"@timestamp":"2022-05-12T20:05:26.358+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:05:37.893+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:06:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.1Mi, Sys=14.8Mi, NumGC=107"}
+{"@timestamp":"2022-05-12T20:06:26.361+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:06:37.896+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:07:26.344+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.2Mi, Sys=14.8Mi, NumGC=107"}
+{"@timestamp":"2022-05-12T20:07:26.358+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:07:37.885+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:08:26.340+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.2Mi, Sys=14.8Mi, NumGC=108"}
+{"@timestamp":"2022-05-12T20:08:26.356+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:08:37.898+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:09:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.2Mi, Sys=14.8Mi, NumGC=108"}
+{"@timestamp":"2022-05-12T20:09:26.351+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:09:37.885+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:10:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.2Mi, Sys=14.8Mi, NumGC=109"}
+{"@timestamp":"2022-05-12T20:10:26.361+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:10:37.887+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:11:26.333+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.2Mi, Sys=14.8Mi, NumGC=109"}
+{"@timestamp":"2022-05-12T20:11:26.364+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:11:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:12:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.2Mi, Sys=14.8Mi, NumGC=110"}
+{"@timestamp":"2022-05-12T20:12:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:12:37.890+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:13:26.334+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.3Mi, Sys=14.8Mi, NumGC=110"}
+{"@timestamp":"2022-05-12T20:13:26.366+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:13:37.897+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:14:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.3Mi, Sys=14.8Mi, NumGC=111"}
+{"@timestamp":"2022-05-12T20:14:26.351+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:14:37.888+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:15:26.346+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.3Mi, Sys=14.8Mi, NumGC=111"}
+{"@timestamp":"2022-05-12T20:15:26.362+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:15:37.888+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:16:26.334+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.3Mi, Sys=14.8Mi, NumGC=112"}
+{"@timestamp":"2022-05-12T20:16:26.366+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:16:37.884+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:17:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.3Mi, Sys=14.8Mi, NumGC=112"}
+{"@timestamp":"2022-05-12T20:17:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:17:37.885+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:18:26.339+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.4Mi, Sys=14.8Mi, NumGC=113"}
+{"@timestamp":"2022-05-12T20:18:26.355+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:18:37.896+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:19:26.338+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.4Mi, Sys=14.8Mi, NumGC=113"}
+{"@timestamp":"2022-05-12T20:19:26.354+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:19:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:20:26.346+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.4Mi, Sys=14.8Mi, NumGC=114"}
+{"@timestamp":"2022-05-12T20:20:26.362+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:20:37.892+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:21:26.340+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.4Mi, Sys=14.8Mi, NumGC=114"}
+{"@timestamp":"2022-05-12T20:21:26.355+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:21:37.887+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:22:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.4Mi, Sys=14.8Mi, NumGC=115"}
+{"@timestamp":"2022-05-12T20:22:26.360+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:22:37.891+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:23:26.342+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.4Mi, Sys=14.8Mi, NumGC=115"}
+{"@timestamp":"2022-05-12T20:23:26.358+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:23:37.897+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:24:26.340+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.5Mi, Sys=14.8Mi, NumGC=116"}
+{"@timestamp":"2022-05-12T20:24:26.356+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:24:37.890+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:25:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.5Mi, Sys=14.8Mi, NumGC=116"}
+{"@timestamp":"2022-05-12T20:25:26.352+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:25:37.898+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:26:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.5Mi, Sys=14.8Mi, NumGC=117"}
+{"@timestamp":"2022-05-12T20:26:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:26:37.894+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:27:26.344+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.5Mi, Sys=14.8Mi, NumGC=117"}
+{"@timestamp":"2022-05-12T20:27:26.359+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:27:37.897+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:28:26.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.5Mi, Sys=14.8Mi, NumGC=118"}
+{"@timestamp":"2022-05-12T20:28:26.357+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:28:37.888+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:29:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.5Mi, Sys=14.8Mi, NumGC=118"}
+{"@timestamp":"2022-05-12T20:29:26.351+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:29:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:30:26.333+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.6Mi, Sys=14.8Mi, NumGC=119"}
+{"@timestamp":"2022-05-12T20:30:26.363+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:30:37.887+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:31:26.333+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.6Mi, Sys=14.8Mi, NumGC=119"}
+{"@timestamp":"2022-05-12T20:31:26.364+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:31:37.886+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:32:26.344+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.6Mi, Sys=14.8Mi, NumGC=120"}
+{"@timestamp":"2022-05-12T20:32:26.360+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:32:37.897+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:33:26.339+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.6Mi, Sys=14.8Mi, NumGC=120"}
+{"@timestamp":"2022-05-12T20:33:26.354+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:33:37.898+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:34:26.332+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.6Mi, Sys=14.8Mi, NumGC=121"}
+{"@timestamp":"2022-05-12T20:34:26.363+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:34:37.888+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:35:26.336+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.7Mi, Sys=14.8Mi, NumGC=121"}
+{"@timestamp":"2022-05-12T20:35:26.351+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:35:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:36:26.346+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.7Mi, Sys=14.8Mi, NumGC=122"}
+{"@timestamp":"2022-05-12T20:36:26.361+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:36:37.898+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:37:26.333+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.7Mi, Sys=14.8Mi, NumGC=122"}
+{"@timestamp":"2022-05-12T20:37:26.364+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:37:37.894+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:38:26.346+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.7Mi, Sys=14.8Mi, NumGC=123"}
+{"@timestamp":"2022-05-12T20:38:26.362+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:38:37.884+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:39:26.346+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.7Mi, Sys=14.8Mi, NumGC=123"}
+{"@timestamp":"2022-05-12T20:39:26.361+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:39:37.885+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:40:26.332+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.7Mi, Sys=14.8Mi, NumGC=124"}
+{"@timestamp":"2022-05-12T20:40:26.363+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:40:37.886+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:41:26.345+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.8Mi, Sys=14.8Mi, NumGC=124"}
+{"@timestamp":"2022-05-12T20:41:26.360+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:41:37.897+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:42:26.343+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.8Mi, Sys=14.8Mi, NumGC=125"}
+{"@timestamp":"2022-05-12T20:42:26.358+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:42:37.888+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:43:26.346+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.8Mi, Sys=14.8Mi, NumGC=125"}
+{"@timestamp":"2022-05-12T20:43:26.362+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:43:37.886+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:44:26.332+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.8Mi, Sys=14.8Mi, NumGC=126"}
+{"@timestamp":"2022-05-12T20:44:26.363+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:44:37.884+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:45:26.340+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.8Mi, Sys=14.8Mi, NumGC=126"}
+{"@timestamp":"2022-05-12T20:45:26.355+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:45:37.895+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:46:26.344+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.9Mi, Sys=14.8Mi, NumGC=127"}
+{"@timestamp":"2022-05-12T20:46:26.360+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:46:37.897+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:47:26.334+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.9Mi, Sys=14.8Mi, NumGC=127"}
+{"@timestamp":"2022-05-12T20:47:26.364+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:47:37.890+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:48:26.334+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.9Mi, Sys=14.8Mi, NumGC=128"}
+{"@timestamp":"2022-05-12T20:48:26.365+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:48:37.885+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T20:49:26.337+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.9Mi, Sys=14.8Mi, NumGC=128"}
+{"@timestamp":"2022-05-12T20:49:26.353+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T20:49:37.898+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T21:19:47.258+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-05-12T21:19:47.259+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-05-12T21:19:47.262+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.9Mi, Sys=14.8Mi, NumGC=129"}

+ 45 - 5
jyBXSubscribe/entity/db.go

@@ -1,7 +1,48 @@
 package entity
 
-//msyql
-type MysqlMainStruct struct {
+type MongoDB struct {
+	Main    *MainMongoDBStruct
+	Log     *LogMongoDBStruct
+	Bidding *BiddingMongoDBStruct
+}
+
+//
+type MainMongoDBStruct struct {
+	Address string `json:"address"`
+	Size    int    `json:"size"`
+	DbName  string `json:"dbName"`
+}
+
+//
+type LogMongoDBStruct struct {
+	Address  string `json:"address"`
+	Size     int    `json:"size"`
+	DbName   string `json:"dbName"`
+	UserName string `json:"userName"`
+	PassWord int64  `json:"passWord"`
+}
+
+//
+type BiddingMongoDBStruct struct {
+	Address          string `json:"address"`
+	Size             int    `json:"size"`
+	DbName           string `json:"dbName"`
+	Collection       string `json:"collection"`
+	CollectionChange string `json:"collectionChange"`
+	UserName         string `json:"userName"`
+	PassWord         string `json:"passWord"`
+}
+
+//
+type Mysql struct {
+	Main         *MysqlStruct
+	Push         *MysqlStruct
+	MemberPush   *MysqlStruct
+	EntnichePush *MysqlStruct
+}
+
+//mysql
+type MysqlStruct struct {
 	DbName       string `json:"dbName"`
 	Address      string `json:"address"`
 	UserName     string `json:"userName"`
@@ -17,9 +58,8 @@ type NsqStruct struct {
 }
 
 //redis
-type RedisStuct struct {
-	Addr    string `json:"addr"`
-	Modules string `json:"modules"`
+type RedisDBStuct struct {
+	Addr []string `json:"addr"`
 }
 
 //es

+ 1 - 0
jyBXSubscribe/go.mod

@@ -7,6 +7,7 @@ require (
 	github.com/go-sql-driver/mysql v1.6.0
 	github.com/golang/protobuf v1.5.2
 	github.com/zeromicro/go-zero v1.3.3
+	go.mongodb.org/mongo-driver v1.9.1
 	google.golang.org/grpc v1.46.0
 	google.golang.org/protobuf v1.28.0
 )

+ 15 - 0
jyBXSubscribe/go.sum

@@ -1,3 +1,4 @@
+app.yhyue.com/moapp/esv1 v0.0.0-20220414031211-3da4123e648d h1:WPsYuuptAd3UEgN+jPzpnsDe/OvcshDUUtOTZPYGSJ8=
 app.yhyue.com/moapp/esv1 v0.0.0-20220414031211-3da4123e648d/go.mod h1:91/lSD/hS+ckMVP3WdidRzDhC60lLMdyce9QHy0cSMA=
 app.yhyue.com/moapp/jybase v0.0.0-20220427020729-974c1a148186 h1:2AG+jLpFWFjhtdJHGb6xrRIFtQVHWrMyj2F71DBUozM=
 app.yhyue.com/moapp/jybase v0.0.0-20220427020729-974c1a148186/go.mod h1:qNRA0sHuYqcLoYoP8irpaWnW9YsXixe6obBIkwaXpD0=
@@ -164,6 +165,7 @@ github.com/go-sql-driver/mysql v1.4.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG
 github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
 github.com/go-sql-driver/mysql v1.6.0 h1:BCTh4TKNUYmOmMUcQ3IipzF5prigylS7XXjEkfCHuOE=
 github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
+github.com/go-stack/stack v1.8.0 h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=
 github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=
 github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0/go.mod h1:fyg7847qk6SyHyPtNmDHnmrv/HOrqktSC+C9fM+CJOE=
 github.com/gobuffalo/attrs v0.0.0-20190224210810-a9411de4debd/go.mod h1:4duuawTqi2wkkpB4ePgWMaai6/Kc6WEz83bhFwpHzj0=
@@ -228,6 +230,7 @@ github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaS
 github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw=
 github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
 github.com/golang/snappy v0.0.1/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
+github.com/golang/snappy v0.0.4 h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM=
 github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
 github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
 github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
@@ -297,6 +300,7 @@ github.com/jmespath/go-jmespath v0.4.0/go.mod h1:T8mJZnbsbmF+m6zOOFylbeCJqk5+pHW
 github.com/jmespath/go-jmespath/internal/testify v1.5.1/go.mod h1:L3OGu8Wl2/fWfCI6z80xFu9LTZmf1ZRjMHUOPmWr69U=
 github.com/jmoiron/sqlx v1.2.0/go.mod h1:1FEQNm3xlJgrMD+FBdI9+xvCksHtbpVBBw5dYhBSsks=
 github.com/joho/godotenv v1.3.0/go.mod h1:7hK45KPybAkOC6peb+G5yklZfMxEjkZhHbwpqxOKXbg=
+github.com/josharian/intern v1.0.0 h1:vlS4z54oSdjm0bgjRigI+G1HpF+tI+9rE5LLzOg8HmY=
 github.com/josharian/intern v1.0.0/go.mod h1:5DoeVV0s6jJacbCEi61lwdGj/aVlrQvzHFFd8Hwg//Y=
 github.com/jpillora/backoff v1.0.0/go.mod h1:J/6gKK9jxlEcS3zixgDgUAsiuZ7yrSoa/FX5e0EB2j4=
 github.com/json-iterator/go v1.1.6/go.mod h1:+SdeFBvtyEkXs7REEP0seUULqWtbJapLOCVDaaPEHmU=
@@ -315,6 +319,7 @@ github.com/karrick/godirwalk v1.10.3/go.mod h1:RoGL9dQei4vP9ilrpETWE8CLOZ1kiN0Lh
 github.com/kisielk/errcheck v1.5.0/go.mod h1:pFxgyoBC7bSaBwPgfKdkLd5X25qrDl4LWUI2bnpBCr8=
 github.com/kisielk/gotool v1.0.0/go.mod h1:XhKaO+MFFWcvkIS/tQcRk01m1F5IRFswLeQ+oQHNcck=
 github.com/klauspost/compress v1.9.5/go.mod h1:RyIbtBH6LamlWaDj8nUwkbUhJ87Yi3uG0guNDohfE1A=
+github.com/klauspost/compress v1.13.6 h1:P76CopJELS0TiO2mebmnzgWaajssP/EszplttgQxcgc=
 github.com/klauspost/compress v1.13.6/go.mod h1:/3/Vjq9QcHkK5uEr5lBEmyoZ1iFhe47etQ6QUkpK6sk=
 github.com/konsorten/go-windows-terminal-sequences v1.0.1/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
 github.com/konsorten/go-windows-terminal-sequences v1.0.2/go.mod h1:T0+1ngSBFLxvqU3pZ+m/2kptfBszLMUkC4ZK/EgS/cQ=
@@ -334,6 +339,7 @@ github.com/lib/pq v1.10.4/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o=
 github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc=
 github.com/mailru/easyjson v0.0.0-20190626092158-b2ccc519800e/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc=
 github.com/mailru/easyjson v0.7.6/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=
+github.com/mailru/easyjson v0.7.7 h1:UGYAvKxe3sBsEDzO8ZeWOSlIQfWFlxbzLZe7hwFURr0=
 github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJJLY9Nlc=
 github.com/markbates/oncer v0.0.0-20181203154359-bf2de49a0be2/go.mod h1:Ld9puTsIW75CHf65OeIOkyKbteujpZVXDpWK6YGZbxE=
 github.com/markbates/safe v1.0.1/go.mod h1:nAqgmRi7cY2nqMc92/bSEeQA+R4OheNU2T1kNSCBdG0=
@@ -363,6 +369,7 @@ github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI
 github.com/nxadm/tail v1.4.8 h1:nPr65rt6Y5JFSKQO7qToXr7pePgD6Gwiw05lkbyAQTE=
 github.com/nxadm/tail v1.4.8/go.mod h1:+ncqLTQzXmGhMZNUePPaPqPvBxHAIsmXswZKocGu+AU=
 github.com/olekukonko/tablewriter v0.0.5/go.mod h1:hPp6KlRPjbx+hW8ykQs1w3UBbZlj6HuIJcUGPhkA7kY=
+github.com/olivere/elastic v6.2.37+incompatible h1:UfSGJem5czY+x/LqxgeCBgjDn6St+z8OnsCuxwD3L0U=
 github.com/olivere/elastic v6.2.37+incompatible/go.mod h1:J+q1zQJTgAz9woqsbVRqGeB5G1iqDKVBWLNSYW8yfJ8=
 github.com/olivere/elastic/v7 v7.0.22/go.mod h1:VDexNy9NjmtAkrjNoI7tImv7FR4tf5zUA3ickqu5Pc8=
 github.com/onsi/ginkgo v0.0.0-20170829012221-11459a886d9c/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
@@ -450,13 +457,18 @@ github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5
 github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
 github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
 github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
+github.com/tidwall/pretty v1.0.0 h1:HsD+QiTn7sK6flMKIvNmpqz1qrpP3Ps6jOKIKMooyg4=
 github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk=
 github.com/urfave/cli/v2 v2.3.0/go.mod h1:LJmUH05zAU44vOAcrfzZQKsZbVcdbOG8rtL3/XcUArI=
+github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c=
 github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI=
+github.com/xdg-go/scram v1.0.2 h1:akYIkZ28e6A96dkWNJQu3nmCzH3YfwMPQExUYDaRv7w=
 github.com/xdg-go/scram v1.0.2/go.mod h1:1WAq6h33pAW+iRreB34OORO2Nf7qel3VV3fjBj+hCSs=
+github.com/xdg-go/stringprep v1.0.2 h1:6iq84/ryjjeRmMJwxutI51F2GIPlP5BfTvXHeYjyhBc=
 github.com/xdg-go/stringprep v1.0.2/go.mod h1:8F9zXuvzgwmyT5DUm4GUfZGDdT3W+LCvS6+da4O5kxM=
 github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I=
 github.com/xdg/stringprep v0.0.0-20180714160509-73f8eece6fdc/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y=
+github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d h1:splanxYIlg+5LfHAM6xpdFEAYOk8iySO56hMFq6uLyA=
 github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d/go.mod h1:rHwXgn7JulP+udvsHwJoVG1YGAP6VLg4y9I5dyZdqmA=
 github.com/yuin/goldmark v1.1.25/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
 github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
@@ -475,6 +487,8 @@ go.etcd.io/etcd/client/v3 v3.5.2 h1:WdnejrUtQC4nCxK0/dLTMqKOB+U5TP/2Ya0BJL+1otA=
 go.etcd.io/etcd/client/v3 v3.5.2/go.mod h1:kOOaWFFgHygyT0WlSmL8TJiXmMysO/nNUlEsSsN6W4o=
 go.mongodb.org/mongo-driver v1.5.0/go.mod h1:boiGPFqyBs5R0R5qf2ErokGRekMfwn+MqKaUyHs7wy0=
 go.mongodb.org/mongo-driver v1.9.0/go.mod h1:0sQWfOeY63QTntERDJJ/0SuKK0T1uVSgKCuAROlKEPY=
+go.mongodb.org/mongo-driver v1.9.1 h1:m078y9v7sBItkt1aaoe2YlvWEXcD263e1a4E1fBrJ1c=
+go.mongodb.org/mongo-driver v1.9.1/go.mod h1:0sQWfOeY63QTntERDJJ/0SuKK0T1uVSgKCuAROlKEPY=
 go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU=
 go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8=
 go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
@@ -611,6 +625,7 @@ golang.org/x/sync v0.0.0-20200317015054-43a5402ce75a/go.mod h1:RxMgew5VJxzue5/jJ
 golang.org/x/sync v0.0.0-20200625203802-6e8e738ad208/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
 golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
 golang.org/x/sync v0.0.0-20201207232520-09787c993a3a/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
+golang.org/x/sync v0.0.0-20210220032951-036812b2e83c h1:5KslGYwFpkhGh+Q16bwMP3cOontH8FOep7tGV86Y7SQ=
 golang.org/x/sync v0.0.0-20210220032951-036812b2e83c/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
 golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
 golang.org/x/sys v0.0.0-20180905080454-ebe1bf3edb33/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=

+ 15 - 5
jyBXSubscribe/rpc/bxsubscribe.proto

@@ -13,12 +13,21 @@ message SubscribeInfosReq {
   string  buyerClass = 7;
   string  keyWords = 8;
   string  subtype = 9;
-  string  userStatus = 10;
+  string  userType = 10;//fType:普通用户;vType:超级订阅用户;mType:大会员用户;eType:商机管理用户;
+  string  userId = 11;
+  string  entId = 12;
 }
 
 message SubscribeInfosResp {
+  int64 err_code = 1;
+  string err_msg = 2;
+  subscribeData data = 3;
+}
+
+message subscribeData{
   int64 count = 1;
-  subscribeInfo list = 2;
+  bool hasNextPage = 2;
+  repeated subscribeInfo list = 3;
 }
 
 message subscribeInfo {
@@ -28,19 +37,20 @@ message subscribeInfo {
   string buyerClass = 4;
   string subtype = 5;
   string  industry = 6;
-  string  publishTime = 7;
+  int64  publishTime = 7;
   int64 ca_index = 8;
   int64 ca_date = 9;
   int64 ca_isvisit = 10;
   int64  ca_type = 11;
   repeated string  matchKeys = 12;
-  float budget = 13;
-  float bidAmount = 14;
+  string budget = 13;
+  string bidAmount = 14;
   int64 collection = 15;
   string  buyer = 16;
   string  projectName = 17;
   string winner = 18;
   string  bidOpenTime = 19;
+  int64  ca_isvip = 20;
 }
 
 service Bxsubscribe {

+ 1 - 0
jyBXSubscribe/rpc/bxsubscribe/bxsubscribe.go

@@ -13,6 +13,7 @@ import (
 )
 
 type (
+	SubscribeData      = bxsubscribe.SubscribeData
 	SubscribeInfo      = bxsubscribe.SubscribeInfo
 	SubscribeInfosReq  = bxsubscribe.SubscribeInfosReq
 	SubscribeInfosResp = bxsubscribe.SubscribeInfosResp

+ 55 - 12
jyBXSubscribe/rpc/etc/bxsubscribe.yaml

@@ -5,17 +5,60 @@ Etcd:
   - 127.0.0.1:2379
   Key: bxsubscribe.rpc
 Webrpcport: 8014
-MysqlMain:
-  dbName: jianyu
-  address: 127.0.0.1:3366
-  userName: root
-  passWord: Topnet123
-  maxOpenConns: 5
-  maxIdleConns: 5
-Redis:
-  Host: 127.0.0.1
-  addr: 127.0.0.1:1712
-  modules: other
+Mysql:
+  Main:
+    dbName: jianyu
+    address: 127.0.0.1:3366
+    userName: root
+    passWord: Topnet123
+    maxOpenConns: 5
+    maxIdleConns: 5
+  Push:
+    dbName: jianyu
+    address: 127.0.0.1:3366
+    userName: root
+    passWord: Topnet123
+    maxOpenConns: 5
+    maxIdleConns: 5
+  MemberPush:
+    dbName: jianyu
+    address: 127.0.0.1:3366
+    userName: root
+    passWord: Topnet123
+    maxOpenConns: 5
+    maxIdleConns: 5
+  EntnichePush:
+    dbName: jianyu
+    address: 127.0.0.1:3366
+    userName: root
+    passWord: Topnet123
+    maxOpenConns: 5
+    maxIdleConns: 5
+RedisDB:
+  addr:
+    - other=127.0.0.1:1712
+    - pushcache_1=127.0.0.1:1712
+    - pushcache_2_a=127.0.0.1:1712
+    - pushcache_2_b=127.0.0.1:1712
 Es:
-  addr: http://127.0.0.1:9800
+  addr: http://127.0.0.1:9801
   size: 5
+MongoDB:
+  Main:
+    address: 127.0.0.1:27080
+    size: 5
+    dbName: qfw
+  Log:
+    address: 127.0.0.1:27090
+    size: 5
+    dbName: qfw_data
+    userName: admin
+    passWord: 123456
+  Bidding:
+    address: 127.0.0.1:27001
+    size: 5
+    dbName: qfw_data
+    collection: bidding
+    collectionChange: bidding_back
+    userName: jyDevGroup
+    passWord: jy@DevGroup

+ 107 - 24
jyBXSubscribe/rpc/init/db.go

@@ -4,53 +4,136 @@
 package init
 
 import (
-	"fmt"
-	"log"
+	"app.yhyue.com/moapp/jybase/common"
+	"github.com/zeromicro/go-zero/core/logx"
+	"strings"
 
 	"jyBXSubscribe/entity"
 
 	"app.yhyue.com/moapp/jybase/esv1"
+	"app.yhyue.com/moapp/jybase/mongodb"
 	"app.yhyue.com/moapp/jybase/mysql"
 	"app.yhyue.com/moapp/jybase/redis"
 )
 
 var (
-	Mysql *mysql.Mysql
+	MainMysql         *mysql.Mysql
+	PushMysql         *mysql.Mysql
+	MemberPushMysql   *mysql.Mysql
+	EntnichePushMysql *mysql.Mysql
+	Mgo               mongodb.MongodbSim
+	MgoLog            mongodb.MongodbSim
+	MgoBidding        mongodb.MongodbSim
 )
 
-func InitMysql(mm *entity.MysqlMainStruct) {
-	//初始化 mysql
-	if mm.Address != "" {
-		log.Println("--初始化 mysql--")
-		Mysql = &mysql.Mysql{
-			Address:      mm.Address,
-			UserName:     mm.UserName,
-			PassWord:     mm.PassWord,
-			DBName:       mm.DbName,
-			MaxOpenConns: mm.MaxOpenConns,
-			MaxIdleConns: mm.MaxIdleConns,
+//
+func MongoDBInit(em *entity.MongoDB) {
+	//初始化 mongodb
+	if em.Main.Address != "" {
+		logx.Info("--初始化 mongodb--")
+		Mgo = mongodb.MongodbSim{
+			MongodbAddr: em.Main.Address,
+			Size:        em.Main.Size,
+			DbName:      em.Main.DbName,
+		}
+		Mgo.InitPool()
+	}
+	//
+	if em.Log.Address != "" {
+		logx.Info("--初始化 mongodb log--")
+		MgoLog = mongodb.MongodbSim{
+			MongodbAddr: em.Log.Address,
+			Size:        em.Log.Size,
+			DbName:      em.Log.DbName,
+			UserName:    em.Log.UserName,
+			Password:    common.ObjToString(em.Log.PassWord),
+		}
+		MgoLog.InitPool()
+	}
+	//
+	if em.Bidding.Address != "" {
+		logx.Info("--初始化 mongodb bidding--")
+		MgoBidding = mongodb.MongodbSim{
+			MongodbAddr: em.Bidding.Address,
+			Size:        em.Bidding.Size,
+			DbName:      em.Bidding.DbName,
+			UserName:    em.Bidding.UserName,
+			Password:    em.Bidding.PassWord,
 		}
-		Mysql.Init()
+		MgoBidding.InitPool()
 	}
 }
 
 //
-func InitRedis(rm *entity.RedisStuct) {
-	//初始化 redis
-	if rm.Addr != "" {
-		if rm.Modules == "" {
-			rm.Modules = "other"
+func MysqlInit(mm *entity.Mysql) {
+	//初始化 mysql-main
+	if mm.Main.Address != "" {
+		logx.Info("--初始化 mysql--")
+		MainMysql = &mysql.Mysql{
+			Address:      mm.Main.Address,
+			UserName:     mm.Main.UserName,
+			PassWord:     mm.Main.PassWord,
+			DBName:       mm.Main.DbName,
+			MaxOpenConns: mm.Main.MaxOpenConns,
+			MaxIdleConns: mm.Main.MaxIdleConns,
+		}
+		MainMysql.Init()
+	}
+	//初始化 mysql-Push
+	if mm.Push.Address != "" {
+		logx.Info("--初始化 push mysql--")
+		PushMysql = &mysql.Mysql{
+			Address:      mm.Push.Address,
+			UserName:     mm.Push.UserName,
+			PassWord:     mm.Push.PassWord,
+			DBName:       mm.Push.DbName,
+			MaxOpenConns: mm.Push.MaxOpenConns,
+			MaxIdleConns: mm.Push.MaxIdleConns,
 		}
-		log.Println("--初始化 redis--")
-		redis.InitRedisBySize(fmt.Sprintf("%s=%s", rm.Modules, rm.Addr), 100, 30, 300)
+		PushMysql.Init()
+	}
+	//初始化 mysql-main
+	if mm.MemberPush.Address != "" {
+		logx.Info("--初始化 大会员推送 mysql--")
+		MemberPushMysql = &mysql.Mysql{
+			Address:      mm.MemberPush.Address,
+			UserName:     mm.MemberPush.UserName,
+			PassWord:     mm.MemberPush.PassWord,
+			DBName:       mm.MemberPush.DbName,
+			MaxOpenConns: mm.MemberPush.MaxOpenConns,
+			MaxIdleConns: mm.MemberPush.MaxIdleConns,
+		}
+		MemberPushMysql.Init()
+	}
+	//初始化 mysql-EntnichePush
+	if mm.EntnichePush.Address != "" {
+		logx.Info("--初始化 商机管理推送 mysql--")
+		EntnichePushMysql = &mysql.Mysql{
+			Address:      mm.EntnichePush.Address,
+			UserName:     mm.EntnichePush.UserName,
+			PassWord:     mm.EntnichePush.PassWord,
+			DBName:       mm.EntnichePush.DbName,
+			MaxOpenConns: mm.EntnichePush.MaxOpenConns,
+			MaxIdleConns: mm.EntnichePush.MaxIdleConns,
+		}
+		EntnichePushMysql.Init()
+	}
+}
+
+//
+func RedisInit(rm *entity.RedisDBStuct) {
+	//初始化 redis
+	if len(rm.Addr) > 0 {
+		logx.Info("--初始化 redis--")
+		redis.InitRedisBySize(strings.Join(rm.Addr, ","), 100, 30, 300)
 	}
 }
 
 //
-func InitEs(es *entity.EsStruct) {
+func EsInit(es *entity.EsStruct) {
 	//初始化 elasticsearch
 	if es.Addr != "" {
-		log.Println("--初始化 elasticsearch--")
+		logx.Info("--初始化 elasticsearch--")
 		elastic.InitElasticSize(es.Addr, es.Size)
 	}
 }

+ 5 - 5
jyBXSubscribe/rpc/init/init.go

@@ -20,14 +20,14 @@ var logc entity.Logc
 
 func init() {
 	conf.MustLoad(*configF, &C)
+	//初始mongodb
+	MongoDBInit(&C.MongoDB)
 	//初始化msyql
-	InitMysql(&C.MysqlMain)
-
+	MysqlInit(&C.Mysql)
 	//初始redis
-	InitRedis(&C.Redis)
-
+	RedisInit(&C.RedisDB)
 	//初始es
-	InitEs(&C.Es)
+	EsInit(&C.Es)
 	//初始化日志信息
 	conf.MustLoad(*logFile, &logc)
 	if len(logc.Level) > 0 {

+ 75 - 0
jyBXSubscribe/rpc/init/pushMapping.go

@@ -0,0 +1,75 @@
+package init
+
+import (
+	"app.yhyue.com/moapp/jybase/common"
+	"log"
+)
+
+var PushMapping = &pushMapping{}
+
+type pushMapping struct {
+	Area          map[string]int
+	City          map[string]int
+	Toptype       map[string]int
+	Subtype       map[string]int
+	Buyerclass    map[string]int
+	Subscopeclass map[string]int
+}
+
+func (p *pushMapping) Init() {
+	infotype := PushMysql.SelectBySql("select id,type,name from infotype")
+	p.Toptype = map[string]int{}
+	p.Subtype = map[string]int{}
+	p.Buyerclass = map[string]int{}
+	p.Subscopeclass = map[string]int{}
+	if infotype != nil && len(*infotype) > 0 {
+		for _, v := range *infotype {
+			id := common.IntAll(v["id"])
+			tp := common.IntAll(v["type"])
+			name := common.ObjToString(v["name"])
+			if tp == 1 {
+				p.Toptype[name] = id
+			} else if tp == 2 {
+				p.Subtype[name] = id
+			} else if tp == 3 {
+				p.Buyerclass[name] = id
+			} else if tp == 4 {
+				p.Subscopeclass[name] = id
+			}
+		}
+		if len(p.Toptype) == 0 {
+			log.Fatalln("PushMapping Toptype Init Error")
+		}
+		if len(p.Subtype) == 0 {
+			log.Fatalln("PushMapping Subtype Init Error")
+		}
+		if len(p.Buyerclass) == 0 {
+			log.Fatalln("PushMapping Buyerclass Init Error")
+		}
+		if len(p.Subscopeclass) == 0 {
+			log.Fatalln("PushMapping Subscopeclass Init Error")
+		}
+	}
+	//
+	p.Area = map[string]int{}
+	p.City = map[string]int{}
+	province := PushMysql.SelectBySql("select id,level,name from province")
+	if province != nil && len(*province) > 0 {
+		for _, v := range *province {
+			id := common.IntAll(v["id"])
+			level := common.IntAll(v["level"])
+			name := common.ObjToString(v["name"])
+			if level == 1 {
+				p.Area[name] = id
+			} else if level == 2 {
+				p.City[name] = id
+			}
+		}
+		if len(p.Area) == 0 {
+			log.Fatalln("PushMapping Area Init Error")
+		}
+		if len(p.City) == 0 {
+			log.Fatalln("PushMapping City Init Error")
+		}
+	}
+}

+ 3 - 2
jyBXSubscribe/rpc/internal/config/config.go

@@ -8,7 +8,8 @@ import (
 type Config struct {
 	zrpc.RpcServerConf
 	Webrpcport int64
-	MysqlMain  entity.MysqlMainStruct
-	Redis      entity.RedisStuct
+	Mysql      entity.Mysql
+	RedisDB    entity.RedisDBStuct
 	Es         entity.EsStruct
+	MongoDB    entity.MongoDB
 }

+ 38 - 3
jyBXSubscribe/rpc/internal/logic/getsubinfologic.go

@@ -2,11 +2,14 @@ package logic
 
 import (
 	"context"
+	"jyBXSubscribe/rpc/util"
+	"log"
 
 	"jyBXSubscribe/rpc/internal/svc"
 	"jyBXSubscribe/rpc/type/bxsubscribe"
 
 	"github.com/zeromicro/go-zero/core/logx"
+	IC "jyBXSubscribe/rpc/init"
 )
 
 type GetSubInfoLogic struct {
@@ -25,7 +28,39 @@ func NewGetSubInfoLogic(ctx context.Context, svcCtx *svc.ServiceContext) *GetSub
 
 // 获取订阅推送信息
 func (l *GetSubInfoLogic) GetSubInfo(in *bxsubscribe.SubscribeInfosReq) (*bxsubscribe.SubscribeInfosResp, error) {
-	// todo: add your logic here and delete this line
-
-	return &bxsubscribe.SubscribeInfosResp{}, nil
+	log.Println("in:", in)
+	//1、推送信息已读标识
+	//超级订阅 i_apppushunread=0
+	//大会员 i_member_apppushunread=0
+	//商机管理 i_entniche_apppushunread=0
+	spqp := &util.SubPushQueryParam{
+		Mgo_bidding:   IC.MgoBidding,                         //mongo
+		Bidding:       IC.C.MongoDB.Bidding.Collection,       //招标信息 表
+		Bidding_back:  IC.C.MongoDB.Bidding.CollectionChange, //招标信息备份数据 表名
+		UserId:        in.UserId,                             //用户id
+		PageNum:       int(in.PageNum),                       //当前页码
+		PageSize:      int(in.PageSize),                      //每页多少条数据
+		SelectTime:    in.SelectTime,                         //时间跨度
+		Area:          in.Area,                               //省份
+		City:          in.City,                               //城市
+		Buyerclass:    in.BuyerClass,                         //采购单位类型
+		Subtype:       in.Subtype,                            //信息类型
+		Subscopeclass: in.Industry,                           //行业
+		Key:           in.KeyWords,
+	}
+	if in.UserType == "mType" {
+		spqp.PushMysql = IC.MemberPushMysql
+	} else if in.UserType == "eType" {
+		spqp.PushMysql = IC.EntnichePushMysql
+	} else {
+		spqp.PushMysql = IC.PushMysql
+	}
+	hasNextPage, total, list := util.NewSubscribePush(in.UserType).Datas(spqp)
+	return &bxsubscribe.SubscribeInfosResp{
+		Data: &bxsubscribe.SubscribeData{
+			List:        list,
+			Count:       total,
+			HasNextPage: hasNextPage,
+		},
+	}, nil
 }

+ 203 - 80
jyBXSubscribe/rpc/type/bxsubscribe/bxsubscribe.pb.go

@@ -39,7 +39,9 @@ type SubscribeInfosReq struct {
 	BuyerClass string `protobuf:"bytes,7,opt,name=buyerClass,proto3" json:"buyerClass,omitempty"`
 	KeyWords   string `protobuf:"bytes,8,opt,name=keyWords,proto3" json:"keyWords,omitempty"`
 	Subtype    string `protobuf:"bytes,9,opt,name=subtype,proto3" json:"subtype,omitempty"`
-	UserStatus string `protobuf:"bytes,10,opt,name=userStatus,proto3" json:"userStatus,omitempty"`
+	UserType   string `protobuf:"bytes,10,opt,name=userType,proto3" json:"userType,omitempty"` //fType:普通用户;vType:超级订阅用户;mType:大会员用户;eType:商机管理用户;
+	UserId     string `protobuf:"bytes,11,opt,name=userId,proto3" json:"userId,omitempty"`
+	EntId      string `protobuf:"bytes,12,opt,name=entId,proto3" json:"entId,omitempty"`
 }
 
 func (x *SubscribeInfosReq) Reset() {
@@ -137,9 +139,23 @@ func (x *SubscribeInfosReq) GetSubtype() string {
 	return ""
 }
 
-func (x *SubscribeInfosReq) GetUserStatus() string {
+func (x *SubscribeInfosReq) GetUserType() string {
 	if x != nil {
-		return x.UserStatus
+		return x.UserType
+	}
+	return ""
+}
+
+func (x *SubscribeInfosReq) GetUserId() string {
+	if x != nil {
+		return x.UserId
+	}
+	return ""
+}
+
+func (x *SubscribeInfosReq) GetEntId() string {
+	if x != nil {
+		return x.EntId
 	}
 	return ""
 }
@@ -149,8 +165,9 @@ type SubscribeInfosResp struct {
 	sizeCache     protoimpl.SizeCache
 	unknownFields protoimpl.UnknownFields
 
-	Count int64          `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
-	List  *SubscribeInfo `protobuf:"bytes,2,opt,name=list,proto3" json:"list,omitempty"`
+	ErrCode int64          `protobuf:"varint,1,opt,name=err_code,json=errCode,proto3" json:"err_code,omitempty"`
+	ErrMsg  string         `protobuf:"bytes,2,opt,name=err_msg,json=errMsg,proto3" json:"err_msg,omitempty"`
+	Data    *SubscribeData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
 }
 
 func (x *SubscribeInfosResp) Reset() {
@@ -185,14 +202,84 @@ func (*SubscribeInfosResp) Descriptor() ([]byte, []int) {
 	return file_bxsubscribe_proto_rawDescGZIP(), []int{1}
 }
 
-func (x *SubscribeInfosResp) GetCount() int64 {
+func (x *SubscribeInfosResp) GetErrCode() int64 {
+	if x != nil {
+		return x.ErrCode
+	}
+	return 0
+}
+
+func (x *SubscribeInfosResp) GetErrMsg() string {
+	if x != nil {
+		return x.ErrMsg
+	}
+	return ""
+}
+
+func (x *SubscribeInfosResp) GetData() *SubscribeData {
+	if x != nil {
+		return x.Data
+	}
+	return nil
+}
+
+type SubscribeData struct {
+	state         protoimpl.MessageState
+	sizeCache     protoimpl.SizeCache
+	unknownFields protoimpl.UnknownFields
+
+	Count       int64            `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
+	HasNextPage bool             `protobuf:"varint,2,opt,name=hasNextPage,proto3" json:"hasNextPage,omitempty"`
+	List        []*SubscribeInfo `protobuf:"bytes,3,rep,name=list,proto3" json:"list,omitempty"`
+}
+
+func (x *SubscribeData) Reset() {
+	*x = SubscribeData{}
+	if protoimpl.UnsafeEnabled {
+		mi := &file_bxsubscribe_proto_msgTypes[2]
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		ms.StoreMessageInfo(mi)
+	}
+}
+
+func (x *SubscribeData) String() string {
+	return protoimpl.X.MessageStringOf(x)
+}
+
+func (*SubscribeData) ProtoMessage() {}
+
+func (x *SubscribeData) ProtoReflect() protoreflect.Message {
+	mi := &file_bxsubscribe_proto_msgTypes[2]
+	if protoimpl.UnsafeEnabled && x != nil {
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		if ms.LoadMessageInfo() == nil {
+			ms.StoreMessageInfo(mi)
+		}
+		return ms
+	}
+	return mi.MessageOf(x)
+}
+
+// Deprecated: Use SubscribeData.ProtoReflect.Descriptor instead.
+func (*SubscribeData) Descriptor() ([]byte, []int) {
+	return file_bxsubscribe_proto_rawDescGZIP(), []int{2}
+}
+
+func (x *SubscribeData) GetCount() int64 {
 	if x != nil {
 		return x.Count
 	}
 	return 0
 }
 
-func (x *SubscribeInfosResp) GetList() *SubscribeInfo {
+func (x *SubscribeData) GetHasNextPage() bool {
+	if x != nil {
+		return x.HasNextPage
+	}
+	return false
+}
+
+func (x *SubscribeData) GetList() []*SubscribeInfo {
 	if x != nil {
 		return x.List
 	}
@@ -210,25 +297,26 @@ type SubscribeInfo struct {
 	BuyerClass  string   `protobuf:"bytes,4,opt,name=buyerClass,proto3" json:"buyerClass,omitempty"`
 	Subtype     string   `protobuf:"bytes,5,opt,name=subtype,proto3" json:"subtype,omitempty"`
 	Industry    string   `protobuf:"bytes,6,opt,name=industry,proto3" json:"industry,omitempty"`
-	PublishTime string   `protobuf:"bytes,7,opt,name=publishTime,proto3" json:"publishTime,omitempty"`
+	PublishTime int64    `protobuf:"varint,7,opt,name=publishTime,proto3" json:"publishTime,omitempty"`
 	CaIndex     int64    `protobuf:"varint,8,opt,name=ca_index,json=caIndex,proto3" json:"ca_index,omitempty"`
 	CaDate      int64    `protobuf:"varint,9,opt,name=ca_date,json=caDate,proto3" json:"ca_date,omitempty"`
 	CaIsvisit   int64    `protobuf:"varint,10,opt,name=ca_isvisit,json=caIsvisit,proto3" json:"ca_isvisit,omitempty"`
 	CaType      int64    `protobuf:"varint,11,opt,name=ca_type,json=caType,proto3" json:"ca_type,omitempty"`
 	MatchKeys   []string `protobuf:"bytes,12,rep,name=matchKeys,proto3" json:"matchKeys,omitempty"`
-	Budget      float32  `protobuf:"fixed32,13,opt,name=budget,proto3" json:"budget,omitempty"`
-	BidAmount   float32  `protobuf:"fixed32,14,opt,name=bidAmount,proto3" json:"bidAmount,omitempty"`
+	Budget      string   `protobuf:"bytes,13,opt,name=budget,proto3" json:"budget,omitempty"`
+	BidAmount   string   `protobuf:"bytes,14,opt,name=bidAmount,proto3" json:"bidAmount,omitempty"`
 	Collection  int64    `protobuf:"varint,15,opt,name=collection,proto3" json:"collection,omitempty"`
 	Buyer       string   `protobuf:"bytes,16,opt,name=buyer,proto3" json:"buyer,omitempty"`
 	ProjectName string   `protobuf:"bytes,17,opt,name=projectName,proto3" json:"projectName,omitempty"`
 	Winner      string   `protobuf:"bytes,18,opt,name=winner,proto3" json:"winner,omitempty"`
 	BidOpenTime string   `protobuf:"bytes,19,opt,name=bidOpenTime,proto3" json:"bidOpenTime,omitempty"`
+	CaIsvip     int64    `protobuf:"varint,20,opt,name=ca_isvip,json=caIsvip,proto3" json:"ca_isvip,omitempty"`
 }
 
 func (x *SubscribeInfo) Reset() {
 	*x = SubscribeInfo{}
 	if protoimpl.UnsafeEnabled {
-		mi := &file_bxsubscribe_proto_msgTypes[2]
+		mi := &file_bxsubscribe_proto_msgTypes[3]
 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 		ms.StoreMessageInfo(mi)
 	}
@@ -241,7 +329,7 @@ func (x *SubscribeInfo) String() string {
 func (*SubscribeInfo) ProtoMessage() {}
 
 func (x *SubscribeInfo) ProtoReflect() protoreflect.Message {
-	mi := &file_bxsubscribe_proto_msgTypes[2]
+	mi := &file_bxsubscribe_proto_msgTypes[3]
 	if protoimpl.UnsafeEnabled && x != nil {
 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 		if ms.LoadMessageInfo() == nil {
@@ -254,7 +342,7 @@ func (x *SubscribeInfo) ProtoReflect() protoreflect.Message {
 
 // Deprecated: Use SubscribeInfo.ProtoReflect.Descriptor instead.
 func (*SubscribeInfo) Descriptor() ([]byte, []int) {
-	return file_bxsubscribe_proto_rawDescGZIP(), []int{2}
+	return file_bxsubscribe_proto_rawDescGZIP(), []int{3}
 }
 
 func (x *SubscribeInfo) GetId() string {
@@ -299,11 +387,11 @@ func (x *SubscribeInfo) GetIndustry() string {
 	return ""
 }
 
-func (x *SubscribeInfo) GetPublishTime() string {
+func (x *SubscribeInfo) GetPublishTime() int64 {
 	if x != nil {
 		return x.PublishTime
 	}
-	return ""
+	return 0
 }
 
 func (x *SubscribeInfo) GetCaIndex() int64 {
@@ -341,18 +429,18 @@ func (x *SubscribeInfo) GetMatchKeys() []string {
 	return nil
 }
 
-func (x *SubscribeInfo) GetBudget() float32 {
+func (x *SubscribeInfo) GetBudget() string {
 	if x != nil {
 		return x.Budget
 	}
-	return 0
+	return ""
 }
 
-func (x *SubscribeInfo) GetBidAmount() float32 {
+func (x *SubscribeInfo) GetBidAmount() string {
 	if x != nil {
 		return x.BidAmount
 	}
-	return 0
+	return ""
 }
 
 func (x *SubscribeInfo) GetCollection() int64 {
@@ -390,12 +478,19 @@ func (x *SubscribeInfo) GetBidOpenTime() string {
 	return ""
 }
 
+func (x *SubscribeInfo) GetCaIsvip() int64 {
+	if x != nil {
+		return x.CaIsvip
+	}
+	return 0
+}
+
 var File_bxsubscribe_proto protoreflect.FileDescriptor
 
 var file_bxsubscribe_proto_rawDesc = []byte{
 	0x0a, 0x11, 0x62, 0x78, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x2e, 0x70, 0x72,
 	0x6f, 0x74, 0x6f, 0x12, 0x0b, 0x62, 0x78, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
-	0x22, 0xa3, 0x02, 0x0a, 0x11, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x49, 0x6e,
+	0x22, 0xcd, 0x02, 0x0a, 0x11, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x49, 0x6e,
 	0x66, 0x6f, 0x73, 0x52, 0x65, 0x71, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75,
 	0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d,
 	0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01,
@@ -411,55 +506,69 @@ var file_bxsubscribe_proto_rawDesc = []byte{
 	0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x57, 0x6f, 0x72, 0x64, 0x73, 0x18, 0x08, 0x20, 0x01,
 	0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x57, 0x6f, 0x72, 0x64, 0x73, 0x12, 0x18, 0x0a, 0x07,
 	0x73, 0x75, 0x62, 0x74, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73,
-	0x75, 0x62, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x53, 0x74,
-	0x61, 0x74, 0x75, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x75, 0x73, 0x65, 0x72,
-	0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x5a, 0x0a, 0x12, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72,
-	0x69, 0x62, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x73, 0x52, 0x65, 0x73, 0x70, 0x12, 0x14, 0x0a, 0x05,
-	0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75,
-	0x6e, 0x74, 0x12, 0x2e, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
-	0x32, 0x1a, 0x2e, 0x62, 0x78, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x2e, 0x73,
-	0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69,
-	0x73, 0x74, 0x22, 0x93, 0x04, 0x0a, 0x0d, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
-	0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
-	0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x02, 0x20,
-	0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72,
-	0x65, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12, 0x1e,
-	0x0a, 0x0a, 0x62, 0x75, 0x79, 0x65, 0x72, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x18, 0x04, 0x20, 0x01,
-	0x28, 0x09, 0x52, 0x0a, 0x62, 0x75, 0x79, 0x65, 0x72, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x12, 0x18,
-	0x0a, 0x07, 0x73, 0x75, 0x62, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
-	0x07, 0x73, 0x75, 0x62, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x64, 0x75,
-	0x73, 0x74, 0x72, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e, 0x64, 0x75,
-	0x73, 0x74, 0x72, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68, 0x54,
-	0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x75, 0x62, 0x6c, 0x69,
-	0x73, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x63, 0x61, 0x5f, 0x69, 0x6e, 0x64,
-	0x65, 0x78, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x63, 0x61, 0x49, 0x6e, 0x64, 0x65,
-	0x78, 0x12, 0x17, 0x0a, 0x07, 0x63, 0x61, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x09, 0x20, 0x01,
-	0x28, 0x03, 0x52, 0x06, 0x63, 0x61, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x61,
-	0x5f, 0x69, 0x73, 0x76, 0x69, 0x73, 0x69, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
-	0x63, 0x61, 0x49, 0x73, 0x76, 0x69, 0x73, 0x69, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x63, 0x61, 0x5f,
-	0x74, 0x79, 0x70, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x61, 0x54, 0x79,
-	0x70, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x73, 0x18,
-	0x0c, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x73,
-	0x12, 0x16, 0x0a, 0x06, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x02,
-	0x52, 0x06, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x62, 0x69, 0x64, 0x41,
-	0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x02, 0x52, 0x09, 0x62, 0x69, 0x64,
-	0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65, 0x63,
-	0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x6f, 0x6c, 0x6c,
-	0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x62, 0x75, 0x79, 0x65, 0x72, 0x18,
-	0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x62, 0x75, 0x79, 0x65, 0x72, 0x12, 0x20, 0x0a, 0x0b,
-	0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x11, 0x20, 0x01, 0x28,
-	0x09, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x16,
-	0x0a, 0x06, 0x77, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06,
-	0x77, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x12, 0x20, 0x0a, 0x0b, 0x62, 0x69, 0x64, 0x4f, 0x70, 0x65,
-	0x6e, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x62, 0x69, 0x64,
-	0x4f, 0x70, 0x65, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x32, 0x5c, 0x0a, 0x0b, 0x42, 0x78, 0x73, 0x75,
-	0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x12, 0x4d, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x53, 0x75,
-	0x62, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1e, 0x2e, 0x62, 0x78, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
-	0x69, 0x62, 0x65, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x49, 0x6e, 0x66,
-	0x6f, 0x73, 0x52, 0x65, 0x71, 0x1a, 0x1f, 0x2e, 0x62, 0x78, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
-	0x69, 0x62, 0x65, 0x2e, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x49, 0x6e, 0x66,
-	0x6f, 0x73, 0x52, 0x65, 0x73, 0x70, 0x42, 0x0f, 0x5a, 0x0d, 0x2e, 0x2f, 0x62, 0x78, 0x73, 0x75,
-	0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+	0x75, 0x62, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x54, 0x79,
+	0x70, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x54, 0x79,
+	0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x0b, 0x20, 0x01,
+	0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e,
+	0x74, 0x49, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64,
+	0x22, 0x78, 0x0a, 0x12, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x49, 0x6e, 0x66,
+	0x6f, 0x73, 0x52, 0x65, 0x73, 0x70, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x72, 0x72, 0x5f, 0x63, 0x6f,
+	0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x65, 0x72, 0x72, 0x43, 0x6f, 0x64,
+	0x65, 0x12, 0x17, 0x0a, 0x07, 0x65, 0x72, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01,
+	0x28, 0x09, 0x52, 0x06, 0x65, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x2e, 0x0a, 0x04, 0x64, 0x61,
+	0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x62, 0x78, 0x73, 0x75, 0x62,
+	0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
+	0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x77, 0x0a, 0x0d, 0x73, 0x75,
+	0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a, 0x05, 0x63,
+	0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e,
+	0x74, 0x12, 0x20, 0x0a, 0x0b, 0x68, 0x61, 0x73, 0x4e, 0x65, 0x78, 0x74, 0x50, 0x61, 0x67, 0x65,
+	0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x68, 0x61, 0x73, 0x4e, 0x65, 0x78, 0x74, 0x50,
+	0x61, 0x67, 0x65, 0x12, 0x2e, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x03, 0x28,
+	0x0b, 0x32, 0x1a, 0x2e, 0x62, 0x78, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x2e,
+	0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c,
+	0x69, 0x73, 0x74, 0x22, 0xae, 0x04, 0x0a, 0x0d, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62,
+	0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
+	0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x02,
+	0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x61,
+	0x72, 0x65, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12,
+	0x1e, 0x0a, 0x0a, 0x62, 0x75, 0x79, 0x65, 0x72, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x18, 0x04, 0x20,
+	0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x75, 0x79, 0x65, 0x72, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x12,
+	0x18, 0x0a, 0x07, 0x73, 0x75, 0x62, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
+	0x52, 0x07, 0x73, 0x75, 0x62, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x64,
+	0x75, 0x73, 0x74, 0x72, 0x79, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e, 0x64,
+	0x75, 0x73, 0x74, 0x72, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x75, 0x62, 0x6c, 0x69, 0x73, 0x68,
+	0x54, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x70, 0x75, 0x62, 0x6c,
+	0x69, 0x73, 0x68, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x63, 0x61, 0x5f, 0x69, 0x6e,
+	0x64, 0x65, 0x78, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x63, 0x61, 0x49, 0x6e, 0x64,
+	0x65, 0x78, 0x12, 0x17, 0x0a, 0x07, 0x63, 0x61, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x09, 0x20,
+	0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x61, 0x44, 0x61, 0x74, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x63,
+	0x61, 0x5f, 0x69, 0x73, 0x76, 0x69, 0x73, 0x69, 0x74, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52,
+	0x09, 0x63, 0x61, 0x49, 0x73, 0x76, 0x69, 0x73, 0x69, 0x74, 0x12, 0x17, 0x0a, 0x07, 0x63, 0x61,
+	0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x63, 0x61, 0x54,
+	0x79, 0x70, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x4b, 0x65, 0x79, 0x73,
+	0x18, 0x0c, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x4b, 0x65, 0x79,
+	0x73, 0x12, 0x16, 0x0a, 0x06, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x18, 0x0d, 0x20, 0x01, 0x28,
+	0x09, 0x52, 0x06, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x62, 0x69, 0x64,
+	0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x62, 0x69,
+	0x64, 0x41, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x6f, 0x6c, 0x6c, 0x65,
+	0x63, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x6f, 0x6c,
+	0x6c, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x62, 0x75, 0x79, 0x65, 0x72,
+	0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x62, 0x75, 0x79, 0x65, 0x72, 0x12, 0x20, 0x0a,
+	0x0b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x11, 0x20, 0x01,
+	0x28, 0x09, 0x52, 0x0b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x4e, 0x61, 0x6d, 0x65, 0x12,
+	0x16, 0x0a, 0x06, 0x77, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52,
+	0x06, 0x77, 0x69, 0x6e, 0x6e, 0x65, 0x72, 0x12, 0x20, 0x0a, 0x0b, 0x62, 0x69, 0x64, 0x4f, 0x70,
+	0x65, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x13, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x62, 0x69,
+	0x64, 0x4f, 0x70, 0x65, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x63, 0x61, 0x5f,
+	0x69, 0x73, 0x76, 0x69, 0x70, 0x18, 0x14, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x63, 0x61, 0x49,
+	0x73, 0x76, 0x69, 0x70, 0x32, 0x5c, 0x0a, 0x0b, 0x42, 0x78, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
+	0x69, 0x62, 0x65, 0x12, 0x4d, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x53, 0x75, 0x62, 0x49, 0x6e, 0x66,
+	0x6f, 0x12, 0x1e, 0x2e, 0x62, 0x78, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x2e,
+	0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x73, 0x52, 0x65,
+	0x71, 0x1a, 0x1f, 0x2e, 0x62, 0x78, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x2e,
+	0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x73, 0x52, 0x65,
+	0x73, 0x70, 0x42, 0x0f, 0x5a, 0x0d, 0x2e, 0x2f, 0x62, 0x78, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72,
+	0x69, 0x62, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
 }
 
 var (
@@ -474,21 +583,23 @@ func file_bxsubscribe_proto_rawDescGZIP() []byte {
 	return file_bxsubscribe_proto_rawDescData
 }
 
-var file_bxsubscribe_proto_msgTypes = make([]protoimpl.MessageInfo, 3)
+var file_bxsubscribe_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
 var file_bxsubscribe_proto_goTypes = []interface{}{
 	(*SubscribeInfosReq)(nil),  // 0: bxsubscribe.SubscribeInfosReq
 	(*SubscribeInfosResp)(nil), // 1: bxsubscribe.SubscribeInfosResp
-	(*SubscribeInfo)(nil),      // 2: bxsubscribe.subscribeInfo
+	(*SubscribeData)(nil),      // 2: bxsubscribe.subscribeData
+	(*SubscribeInfo)(nil),      // 3: bxsubscribe.subscribeInfo
 }
 var file_bxsubscribe_proto_depIdxs = []int32{
-	2, // 0: bxsubscribe.SubscribeInfosResp.list:type_name -> bxsubscribe.subscribeInfo
-	0, // 1: bxsubscribe.Bxsubscribe.GetSubInfo:input_type -> bxsubscribe.SubscribeInfosReq
-	1, // 2: bxsubscribe.Bxsubscribe.GetSubInfo:output_type -> bxsubscribe.SubscribeInfosResp
-	2, // [2:3] is the sub-list for method output_type
-	1, // [1:2] is the sub-list for method input_type
-	1, // [1:1] is the sub-list for extension type_name
-	1, // [1:1] is the sub-list for extension extendee
-	0, // [0:1] is the sub-list for field type_name
+	2, // 0: bxsubscribe.SubscribeInfosResp.data:type_name -> bxsubscribe.subscribeData
+	3, // 1: bxsubscribe.subscribeData.list:type_name -> bxsubscribe.subscribeInfo
+	0, // 2: bxsubscribe.Bxsubscribe.GetSubInfo:input_type -> bxsubscribe.SubscribeInfosReq
+	1, // 3: bxsubscribe.Bxsubscribe.GetSubInfo:output_type -> bxsubscribe.SubscribeInfosResp
+	3, // [3:4] is the sub-list for method output_type
+	2, // [2:3] is the sub-list for method input_type
+	2, // [2:2] is the sub-list for extension type_name
+	2, // [2:2] is the sub-list for extension extendee
+	0, // [0:2] is the sub-list for field type_name
 }
 
 func init() { file_bxsubscribe_proto_init() }
@@ -522,6 +633,18 @@ func file_bxsubscribe_proto_init() {
 			}
 		}
 		file_bxsubscribe_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
+			switch v := v.(*SubscribeData); i {
+			case 0:
+				return &v.state
+			case 1:
+				return &v.sizeCache
+			case 2:
+				return &v.unknownFields
+			default:
+				return nil
+			}
+		}
+		file_bxsubscribe_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
 			switch v := v.(*SubscribeInfo); i {
 			case 0:
 				return &v.state
@@ -540,7 +663,7 @@ func file_bxsubscribe_proto_init() {
 			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
 			RawDescriptor: file_bxsubscribe_proto_rawDesc,
 			NumEnums:      0,
-			NumMessages:   3,
+			NumMessages:   4,
 			NumExtensions: 0,
 			NumServices:   1,
 		},

+ 643 - 0
jyBXSubscribe/rpc/util/push.go

@@ -0,0 +1,643 @@
+package util
+
+import (
+	"app.yhyue.com/moapp/jybase/common"
+	"app.yhyue.com/moapp/jybase/date"
+	"app.yhyue.com/moapp/jybase/encrypt"
+	"app.yhyue.com/moapp/jybase/esv1"
+	"app.yhyue.com/moapp/jybase/mongodb"
+	"app.yhyue.com/moapp/jybase/mysql"
+	"app.yhyue.com/moapp/jybase/redis"
+	"encoding/json"
+	"fmt"
+	"github.com/zeromicro/go-zero/core/logx"
+	"go.mongodb.org/mongo-driver/bson/primitive"
+	IC "jyBXSubscribe/rpc/init"
+	"jyBXSubscribe/rpc/type/bxsubscribe"
+	"strconv"
+	"strings"
+	"time"
+)
+
+//
+const (
+	pageSize            = 50
+	pageSizes           = 10
+	AllSubPushCacheSize = 250
+	query               = `{"query":{"terms":{"_id":["%s"]}},"_source":["_id","area", "publishtime", "s_subscopeclass", "subtype", "title", "toptype", "type", "buyerclass","bidamount","budget","projectname","buyer","bidopentime","s_winner"],"from":0,"size":%d}`
+	mongodb_fields      = `{"_id":1,"area":1,"publishtime":1,"s_subscopeclass":1,"subtype":1,"title":1,"toptype":1,"type":1, "buyerclass":1,"budget":1,"bidamount":1,"s_winner":1,"bidopentime":1,"buyer":1,"projectname":1}`
+
+	SubFreeFlag  = "fType"
+	SubVipFlag   = "vType"
+	MemberFlag   = "mType"
+	EntnicheFlag = "eType"
+	threeDay     = 172800
+)
+
+var aboutDbMsg map[string]*AboutDbMsg = map[string]*AboutDbMsg{
+	SubFreeFlag:  &AboutDbMsg{"pushsubscribe", "subpush"},
+	SubVipFlag:   &AboutDbMsg{"pushsubscribe", "subpush"},
+	MemberFlag:   &AboutDbMsg{"pushmember", "memberpush"},
+	EntnicheFlag: &AboutDbMsg{"pushentniche", "pushentniche"},
+}
+
+type AboutDbMsg struct {
+	MysqlTable   string
+	RedisKeyFlag string
+}
+
+type SubPush struct {
+	Date  string
+	Datas []*bxsubscribe.SubscribeInfo
+	Count int64
+}
+
+type PushCa struct {
+	Date   int64
+	InfoId string
+	Visit  int
+	Index  int64
+	Keys   []string
+	Type   int
+	Isvip  int
+}
+
+//查询参数
+type SubPushQueryParam struct {
+	Mgo_bidding   mongodb.MongodbSim //
+	Bidding       string             //
+	Bidding_back  string             //
+	PushMysql     *mysql.Mysql       //
+	UserId        string             //用户id
+	PageNum       int                //页面
+	PageSize      int                //每页数量
+	SelectTime    string             //时间
+	Area          string             //区域
+	City          string             //城市
+	Buyerclass    string             //采购单位行业
+	Subtype       string             //信息类型 二级分类
+	Subscopeclass string             //信息行业
+	Key           string             //订阅词
+	Export        bool               //导出
+	EntId         int
+}
+
+func (spqp *SubPushQueryParam) IsEmpty() bool {
+	return spqp.SelectTime == "" && spqp.Area == "" && spqp.City == "" && spqp.Buyerclass == "" && spqp.Subscopeclass == "" && spqp.Subtype == "" && spqp.Key == ""
+}
+
+type subscribePush struct {
+	ModuleFlag string
+}
+
+func NewSubscribePush(module ...string) *subscribePush {
+	m := ""
+	if len(module) > 0 {
+		m = module[0]
+	}
+	return &subscribePush{m}
+}
+
+//从pushcache_2_a中取
+func (h *subscribePush) GetTodayCache(userId string) (*SubPush, error) {
+	pc_a, err := redis.GetNewBytes("pushcache_2_b", h.todayKey(userId))
+	if err != nil {
+		return nil, err
+	}
+	if pc_a == nil {
+		return nil, nil
+	}
+	var p *SubPush
+	if err := json.Unmarshal(*pc_a, &p); err != nil {
+		return nil, err
+	}
+	return p, nil
+}
+
+//往pushcache_2_a中放
+func (h *subscribePush) PutTodayCache(userId string, pc_a *SubPush) {
+	redis.Put("pushcache_2_b", h.todayKey(userId), pc_a, threeDay)
+}
+
+//获取redis key
+func (s *subscribePush) todayKey(userId string) string {
+	return fmt.Sprintf("%s_%s", aboutDbMsg[s.ModuleFlag].RedisKeyFlag, userId)
+}
+func (s *subscribePush) allKey(userId string) string {
+	logx.Info(fmt.Sprintf("all_%s_%s", aboutDbMsg[s.ModuleFlag].RedisKeyFlag, userId))
+	return fmt.Sprintf("all_%s_%s", aboutDbMsg[s.ModuleFlag].RedisKeyFlag, userId)
+}
+
+//历史推送记录中单条信息格式化
+func (s *subscribePush) InfoFormat(p *PushCa, info *map[string]interface{}) *bxsubscribe.SubscribeInfo {
+	area := common.ObjToString((*info)["area"])
+	if area == "A" {
+		area = "全国"
+	}
+	industry := common.ObjToString((*info)["s_subscopeclass"])
+	scs := strings.Split(industry, ",")
+	if len(scs) > 0 {
+		industry = scs[0]
+		if industry != "" {
+			iss := strings.Split(industry, "_")
+			if len(iss) > 0 {
+				industry = iss[0]
+			}
+		}
+	}
+	infotype := common.ObjToString((*info)["subtype"])
+	if infotype == "" {
+		infotype = common.ObjToString((*info)["toptype"])
+	}
+	if infotype == "" {
+		infotype = common.ObjToString((*info)["type"])
+		if infotype == "tender" {
+			infotype = "招标"
+		} else if infotype == "bid" {
+			infotype = "中标"
+		}
+	}
+	_id := p.InfoId
+	if _id == "" {
+		_id = common.ObjToString((*info)["_id"])
+	}
+	return &bxsubscribe.SubscribeInfo{
+		Id:          encrypt.EncodeArticleId2ByCheck(_id),
+		Title:       common.ObjToString((*info)["title"]),
+		Area:        area,
+		BuyerClass:  common.ObjToString((*info)["buyerclass"]),
+		Subtype:     infotype,
+		Industry:    industry,
+		PublishTime: common.Int64All((*info)["publishtime"]),
+		CaIndex:     p.Index,
+		CaDate:      p.Date,
+		CaIsvisit:   int64(p.Visit),
+		CaIsvip:     int64(p.Isvip),
+		CaType:      int64(p.Type),
+		MatchKeys:   p.Keys,
+		Budget:      common.ObjToString((*info)["budget"]),
+		BidAmount:   common.ObjToString((*info)["bidamount"]),
+		Buyer:       common.ObjToString((*info)["buyer"]),
+		ProjectName: common.ObjToString((*info)["projectname"]),
+		Winner:      common.ObjToString((*info)["s_winner"]),
+		BidOpenTime: common.ObjToString((*info)["bidopentime"]),
+	}
+}
+
+func (s *subscribePush) Datas(spqp *SubPushQueryParam) (hasNextPage bool, total int64, result []*bxsubscribe.SubscribeInfo) {
+	logx.Info(spqp.UserId, s.ModuleFlag, "subscribePush query param:", "SelectTime", spqp.SelectTime, "Area", spqp.Area, "City", spqp.City, "Subtype", spqp.Subtype, "Subscopeclass", spqp.Subscopeclass, "Buyerclass", spqp.Buyerclass, "Key", spqp.Key, "PageNum", spqp.PageNum)
+	if spqp.UserId == "" {
+		return
+	}
+	if spqp.PageNum < 1 {
+		spqp.PageNum = 1
+	}
+	if spqp.PageSize < 1 || spqp.PageSize > pageSize {
+		if !spqp.Export {
+			spqp.PageSize = pageSize
+		} else { //数据导出查询20000条限制
+			if spqp.PageSize < 1 || spqp.PageSize > 20000 {
+				spqp.PageSize = 20000
+			}
+		}
+	}
+	starttime, endtime := int64(0), int64(0)
+	st, et := "", ""
+	now := time.Now()
+	logx.Info(4444)
+	if spqp.SelectTime == "today" { //今天
+		starttime = time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, time.Local).Unix()
+	} else if spqp.SelectTime == "yesterday" { //昨天
+		starttime = time.Date(now.Year(), now.Month(), now.Day()-1, 0, 0, 0, 0, time.Local).Unix()
+		endtime = time.Date(now.Year(), now.Month(), now.Day(), 0, 0, 0, 0, time.Local).Unix()
+	} else if spqp.SelectTime == "lately-7" { //最近7天
+		starttime = time.Date(now.Year(), now.Month(), now.Day()-7, 0, 0, 0, 0, time.Local).Unix()
+	} else if spqp.SelectTime == "lately-30" { //最近30天
+		starttime = time.Date(now.Year(), now.Month(), now.Day()-30, 0, 0, 0, 0, time.Local).Unix()
+	} else if spqp.SelectTime == "lastyear" { //去年
+		starttime = time.Date(now.Year()-1, 1, 1, 0, 0, 0, 0, time.Local).Unix()
+		endtime = time.Date(now.Year()-1, 12, 31, 23, 59, 59, 0, time.Local).Unix()
+	} else if len(strings.Split(spqp.SelectTime, "_")) == 2 {
+		st = strings.Split(spqp.SelectTime, "_")[0]
+		starttime, _ = strconv.ParseInt(st, 0, 64)
+		et = strings.Split(spqp.SelectTime, "_")[1]
+		endtime, _ = strconv.ParseInt(et, 0, 64)
+		if endtime > 0 {
+			etTime := time.Unix(endtime, 0)
+			endtime = time.Date(etTime.Year(), etTime.Month(), etTime.Day(), 23, 59, 59, 0, time.Local).Unix()
+		}
+	}
+	logx.Info(2222)
+	nowFormat := date.NowFormat(date.Date_Short_Layout)
+	start := (spqp.PageNum - 1) * spqp.PageSize
+	end := start + spqp.PageSize
+	//时间是今天,没有别的过滤条件
+	if nowFormat == date.FormatDateByInt64(&starttime, date.Date_Short_Layout) && spqp.Area == "" && spqp.City == "" && spqp.Buyerclass == "" && spqp.Subscopeclass == "" && spqp.Subtype == "" && spqp.Key == "" {
+
+		logx.Info("a1")
+		subPush, err := s.GetTodayCache(spqp.UserId)
+		if err != nil {
+			logx.Info(spqp.UserId, "GetTodayCache Error", err)
+		}
+		if err != nil || subPush == nil || subPush.Date != nowFormat || len(subPush.Datas) == 0 {
+			list, countSearch := s.getDatasFromMysql(spqp, starttime, endtime, spqp.PageSize, false)
+			subPush = &SubPush{
+				Date:  nowFormat,
+				Datas: list,
+				Count: countSearch,
+			}
+			s.PutTodayCache(spqp.UserId, subPush)
+		}
+		length := len(subPush.Datas)
+		if end > length {
+			end = length
+		}
+		if start < length {
+			result = subPush.Datas[start:end]
+		}
+		total = int64(length)
+	} else if spqp.IsEmpty() && (spqp.PageNum-1)*spqp.PageSize <= 250 { //全部,没有过滤条件 之前缓存5页*50条=250
+		logx.Info("a2")
+		allCache, err := s.GetAllCache(spqp.UserId)
+		if err != nil {
+			logx.Info(spqp.UserId, "GetAllCache Error", err)
+		}
+		if err != nil || allCache == nil || allCache.Date != nowFormat || len(allCache.Datas) == 0 {
+			logx.Info("a3")
+			spqp.PageNum = 1
+			logx.Info(1111)
+			list, countSearch := s.getDatasFromMysql(spqp, starttime, endtime, AllSubPushCacheSize, true)
+			allCache = &SubPush{
+				Date:  nowFormat,
+				Datas: list,
+				Count: countSearch,
+			}
+			s.PutAllCache(spqp.UserId, allCache)
+		}
+		length := len(allCache.Datas)
+		if end > length {
+			end = length
+		}
+		if start < length {
+			result = allCache.Datas[start:end]
+		}
+		total = allCache.Count
+	} else {
+		logx.Info("a4")
+		result, total = s.getDatasFromMysql(spqp, starttime, endtime, spqp.PageSize, true)
+	}
+	logx.Info("-------------------------------------------------", len(result))
+	if result == nil {
+		result = []*bxsubscribe.SubscribeInfo{}
+	}
+	hasNextPage = len(result) >= spqp.PageSize
+	return
+}
+
+//
+func (s *subscribePush) getDatasFromMysql(spqp *SubPushQueryParam, starttime, endtime int64, size int, isLimit bool) (result []*bxsubscribe.SubscribeInfo, count int64) {
+	querys := []string{fmt.Sprintf("userid='%s'", spqp.UserId)}
+	//时间
+	if starttime > 0 && endtime > 0 {
+		querys = append(querys, fmt.Sprintf("date>=%d and date<=%d", starttime, endtime))
+	} else if starttime > 0 && endtime == 0 {
+		querys = append(querys, fmt.Sprintf("date>=%d", starttime))
+	} else if starttime == 0 && endtime > 0 {
+		querys = append(querys, fmt.Sprintf("date<=%d", endtime))
+	}
+	if spqp.Area != "" || spqp.City != "" {
+		var sqlAreaCity = ""
+		//城市
+		city := []string{}
+		for _, v := range strings.Split(spqp.City, ",") {
+			if IC.PushMapping.City[v] > 0 {
+				city = append(city, fmt.Sprint(IC.PushMapping.City[v]))
+			} else {
+				city = append(city, "-1")
+			}
+		}
+		if len(city) == 1 {
+			city = append(city, "9999")
+		}
+		if len(city) > 0 {
+			sqlAreaCity = fmt.Sprintf("city in (%s)", strings.Join(city, ","))
+		}
+		//区域
+		var sqlArea = ""
+		area := []string{}
+		for _, v := range strings.Split(spqp.Area, ",") {
+			if IC.PushMapping.Area[v] > 0 {
+				area = append(area, fmt.Sprint(IC.PushMapping.Area[v]))
+			} else {
+				area = append(area, "-1")
+			}
+		}
+		if len(area) == 1 {
+			area = append(area, "9999")
+		}
+		if len(area) > 0 {
+			sqlArea = fmt.Sprintf("area in (%s)", strings.Join(area, ","))
+		}
+		if sqlAreaCity != "" && sqlArea != "" {
+			sqlAreaCity = "( " + sqlAreaCity + " or " + sqlArea + " )"
+		} else if sqlAreaCity == "" && sqlArea != "" {
+			sqlAreaCity = sqlArea
+		}
+		if sqlAreaCity != "" {
+			querys = append(querys, sqlAreaCity)
+		}
+	}
+	//采购单位行业
+	if spqp.Buyerclass != "" {
+		buyerclass := []string{}
+		for _, v := range strings.Split(spqp.Buyerclass, ",") {
+			buyerclass = append(buyerclass, fmt.Sprint(IC.PushMapping.Buyerclass[v]))
+		}
+		if len(buyerclass) == 1 {
+			buyerclass = append(buyerclass, "9999")
+		}
+		if len(buyerclass) > 0 {
+			querys = append(querys, fmt.Sprintf("buyerclass in (%s)", strings.Join(buyerclass, ",")))
+		}
+	}
+	//信息类型
+	if spqp.Subtype != "" {
+		subtype := []string{}
+		for _, v := range strings.Split(spqp.Subtype, ",") {
+			subtype = append(subtype, fmt.Sprint(IC.PushMapping.Subtype[v]))
+		}
+		if len(subtype) == 1 {
+			subtype = append(subtype, "9999")
+		}
+		if len(subtype) > 0 {
+			querys = append(querys, fmt.Sprintf("subtype in (%s)", strings.Join(subtype, ",")))
+		}
+	}
+	//信息行业
+	if spqp.Subscopeclass != "" {
+		find_in_set := []string{}
+		for _, v := range strings.Split(spqp.Subscopeclass, ",") {
+			find_in_set = append(find_in_set, fmt.Sprintf("find_in_set('%d',subscopeclass)", IC.PushMapping.Subscopeclass[v]))
+		}
+		if len(find_in_set) == 1 {
+			querys = append(querys, find_in_set[0])
+		} else if len(find_in_set) > 1 {
+			querys = append(querys, fmt.Sprintf("(%s)", strings.Join(find_in_set, " or ")))
+		}
+	}
+	//关键词
+	if spqp.Key != "" {
+		find_in_set := []string{}
+		for _, v := range strings.Split(spqp.Key, ",") {
+			find_in_set = append(find_in_set, fmt.Sprintf("find_in_set('%s',replace(replace(matchkeys,'+',','),' ',','))", v))
+		}
+		if len(find_in_set) == 1 {
+			querys = append(querys, find_in_set[0])
+		} else if len(find_in_set) > 1 {
+			querys = append(querys, fmt.Sprintf("(%s)", strings.Join(find_in_set, " or ")))
+		}
+	}
+	searchSql := fmt.Sprintf(" from %s where %s order by id desc", aboutDbMsg[s.ModuleFlag].MysqlTable, strings.Join(querys, " and "))
+	fmt.Println("searchSql", searchSql)
+	//查询总数
+	count = spqp.PushMysql.CountBySql(fmt.Sprintf("select count(id)" + searchSql))
+	logx.Info("count:", count, "---", s.ModuleFlag)
+	findSql := "select id,date,infoid,isvisit,matchkeys,type"
+	if s.ModuleFlag != MemberFlag {
+		if s.ModuleFlag == EntnicheFlag {
+
+		} else {
+			findSql += ",isvip"
+		}
+
+	}
+
+	findSql += searchSql
+	if isLimit {
+		findSql += fmt.Sprintf(" limit %d,%d", (spqp.PageNum-1)*size, size)
+	}
+
+	logx.Info(spqp.UserId, "subscribePush query sql:", findSql)
+	list := spqp.PushMysql.SelectBySql(findSql)
+	logx.Info("list:", list)
+	if list != nil && len(*list) > 0 {
+		pushCas := s.GetJyPushs(*list)
+		result = s.GetInfoByIds(spqp.Mgo_bidding, spqp.Bidding, spqp.Bidding_back, pushCas)
+	} else {
+		result = []*bxsubscribe.SubscribeInfo{}
+	}
+	logx.Info("------ooooo----:", len(result))
+	return
+}
+
+//根据id取内容
+func (s *subscribePush) GetInfoByIds(Mgo_bidding mongodb.MongodbSim, bidding, bidding_back string, pushCas []*PushCa) []*bxsubscribe.SubscribeInfo {
+	array := make([]*bxsubscribe.SubscribeInfo, len(pushCas))
+	if len(pushCas) == 0 {
+		return array
+	}
+	m := map[string]bool{}
+	ids := []string{}
+	for _, v := range pushCas {
+		if m[v.InfoId] {
+			continue
+		}
+		m[v.InfoId] = true
+		ids = append(ids, v.InfoId)
+	}
+	infos := map[string]map[string]interface{}{}
+	//redis
+
+	es_ids := []string{}
+	for _, v := range ids {
+		info_i := redis.Get("pushcache_1", fmt.Sprintf("info_%s", v))
+		if info_i != nil {
+			info_m, _ := info_i.(map[string]interface{})
+			info_m["_id"] = v
+			infos[v] = info_m
+		} else {
+			es_ids = append(es_ids, v)
+		}
+	}
+	logx.Info("es_ids:", es_ids)
+	//elasticsearch
+	if len(es_ids) > 0 {
+		list := elastic.Get("bidding", "bidding", fmt.Sprintf(query, strings.Join(es_ids, `","`), len(es_ids)))
+		if list != nil {
+			for _, v := range *list {
+				_id := common.ObjToString(v["_id"])
+				infos[_id] = v
+			}
+		}
+	}
+	//mongodb bidding
+	mgo_ids := []primitive.ObjectID{}
+	for _, v := range es_ids {
+		if infos[v] == nil {
+			_id, _ := primitive.ObjectIDFromHex(v)
+			mgo_ids = append(mgo_ids, _id)
+		}
+	}
+	if len(mgo_ids) > 0 {
+		list, ok := Mgo_bidding.Find(bidding, map[string]interface{}{"_id": map[string]interface{}{"$in": mgo_ids}}, nil, mongodb_fields, false, -1, -1)
+		if ok && *list != nil {
+			for _, v := range *list {
+				_id := mongodb.BsonIdToSId(v["_id"])
+				v["_id"] = _id
+				infos[_id] = v
+			}
+		}
+	}
+	//mongodb bidding_back
+	mgo_back_ids := []primitive.ObjectID{}
+	for _, v := range mgo_ids {
+		if infos[mongodb.BsonIdToSId(v)] == nil {
+			mgo_back_ids = append(mgo_back_ids, v)
+		}
+	}
+	if len(mgo_back_ids) > 0 {
+		list, ok := Mgo_bidding.Find(bidding_back, map[string]interface{}{"_id": map[string]interface{}{"$in": mgo_back_ids}}, nil, mongodb_fields, false, -1, -1)
+		if ok && *list != nil {
+			for _, v := range *list {
+				_id := mongodb.BsonIdToSId(v["_id"])
+				v["_id"] = _id
+				infos[_id] = v
+			}
+		}
+	}
+	//
+	for k, v := range pushCas {
+		info := infos[v.InfoId]
+		if info == nil {
+			info = map[string]interface{}{}
+		}
+		array[k] = s.InfoFormat(v, &info)
+	}
+	return array
+}
+
+//获取历史推送
+func (s *subscribePush) GetJyPushs(datas []map[string]interface{}) (pushCas []*PushCa) {
+	pushCas = []*PushCa{}
+	for _, v := range datas {
+		keys := []string{}
+		if matchkeys := common.ObjToString(v["matchkeys"]); matchkeys != "" {
+			keys = strings.Split(matchkeys, " ")
+		}
+		pushCas = append(pushCas, &PushCa{
+			Date:   common.Int64All(v["date"]),
+			InfoId: common.ObjToString(v["infoid"]),
+			Visit:  common.IntAll(v["isvisit"]),
+			Index:  common.Int64All(v["id"]),
+			Keys:   keys,
+			Type:   common.IntAll(v["type"]),
+			Isvip:  common.IntAll(v["isvip"]),
+		})
+	}
+	return
+}
+
+//查看全部列表缓存
+func (s *subscribePush) PutAllCache(userId string, datas *SubPush) {
+	redis.Put("pushcache_2_a", s.allKey(userId), datas, threeDay)
+}
+
+func (s *subscribePush) GetAllCache(userId string) (*SubPush, error) {
+	return s.GetCache("pushcache_2_a", s.allKey(userId))
+}
+
+func (s *subscribePush) GetCache(code, key string) (*SubPush, error) {
+	pc_a, err := redis.GetNewBytes(code, key)
+	if err != nil {
+		return nil, err
+	}
+	if pc_a == nil {
+		return nil, nil
+	}
+	var p *SubPush
+	if err := json.Unmarshal(*pc_a, &p); err != nil {
+		return nil, err
+	}
+	return p, nil
+}
+
+//是否收藏
+func (s *subscribePush) MakeCollection(userId string, m *mysql.Mysql, list []*bxsubscribe.SubscribeInfo) {
+	if list == nil || len(list) == 0 {
+		return
+	}
+	param := []interface{}{userId}
+	wh := []string{}
+	for _, v := range list {
+		array := encrypt.DecodeArticleId2ByCheck(v.Id)
+		if len(array) == 1 && array[0] != "" {
+			param = append(param, array[0])
+			wh = append(wh, "?")
+		}
+	}
+	if len(wh) > 0 {
+		result := m.SelectBySql(`select bid from bdcollection where userid=? and bid in (`+strings.Join(wh, ",")+`)`, param...)
+		bid_map := map[string]bool{}
+		if result != nil {
+			for _, v := range *result {
+				bid_map[encrypt.EncodeArticleId2ByCheck(common.ObjToString(v["bid"]))] = true
+			}
+		}
+		for _, v := range list {
+			if bid_map[v.Id] {
+				v.Collection = 1
+			}
+		}
+	}
+}
+
+//仅移动端首页使用,历史推送7天信息
+func (s *subscribePush) sevenDayKey(userId string) string {
+	return fmt.Sprintf("7day_subpush_%s", userId)
+}
+
+func (s *subscribePush) PutSevenDayCache(userId string, datas []*bxsubscribe.SubscribeInfo) {
+	redis.Put("pushcache_2_a", s.sevenDayKey(userId), SubPush{Datas: datas}, 7*24*60*60)
+}
+
+//从pushcache_2_a中取
+func (s *subscribePush) GetSevenDayCache(userId string) ([]*bxsubscribe.SubscribeInfo, error) {
+	allPush, _ := s.GetCache("pushcache_2_a", s.sevenDayKey(userId))
+	if allPush != nil && allPush.Datas != nil && len(allPush.Datas) > 0 {
+		return allPush.Datas, nil
+	}
+	return nil, nil
+}
+
+//历史推送记录中单条信息格式化
+func InfoFormats(info map[string]interface{}, tmp map[string]interface{}) map[string]interface{} {
+	area := common.ObjToString(info["area"])
+	if area == "A" {
+		area = "全国"
+	}
+	industry := common.ObjToString(info["s_subscopeclass"])
+	scs := strings.Split(industry, ",")
+	if len(scs) > 0 {
+		industry = scs[0]
+		if industry != "" {
+			iss := strings.Split(industry, "_")
+			if len(iss) > 0 {
+				industry = iss[0]
+			}
+		}
+	}
+	infotype := common.ObjToString(info["subtype"])
+	if infotype == "" {
+		infotype = common.ObjToString(info["toptype"])
+	}
+	if infotype == "" {
+		infotype = common.ObjToString(info["type"])
+		if infotype == "tender" {
+			infotype = "招标"
+		} else if infotype == "bid" {
+			infotype = "中标"
+		}
+	}
+	info["type"] = infotype
+	return info
+}

部分文件因文件數量過多而無法顯示