瀏覽代碼

fenzhihebing

123456 2 年之前
父節點
當前提交
a6bb682dc2
共有 30 個文件被更改,包括 926 次插入8316 次删除
  1. 3 0
      jyBXSubscribe/api/bxsubscribe.api
  2. 14 14
      jyBXSubscribe/api/bxsubscribe.go
  3. 28 0
      jyBXSubscribe/api/internal/handler/byPushHistoryHandler.go
  4. 5 0
      jyBXSubscribe/api/internal/handler/routes.go
  5. 62 0
      jyBXSubscribe/api/internal/logic/byPushHistoryLogic.go
  6. 3 0
      jyBXSubscribe/api/internal/logic/someInfoLogic.go
  7. 1 0
      jyBXSubscribe/api/internal/types/types.go
  8. 0 93
      jyBXSubscribe/api/logs/access.log
  9. 0 43
      jyBXSubscribe/api/logs/access.log-2022-05-12
  10. 0 131
      jyBXSubscribe/api/logs/access.log-2022-09-08
  11. 0 4
      jyBXSubscribe/api/logs/error.log
  12. 0 2
      jyBXSubscribe/api/logs/error.log-2022-05-12
  13. 0 4
      jyBXSubscribe/api/logs/error.log-2022-08-29
  14. 0 2
      jyBXSubscribe/api/logs/error.log-2022-09-08
  15. 0 0
      jyBXSubscribe/api/logs/severe.log
  16. 0 1
      jyBXSubscribe/api/logs/slow.log
  17. 0 49
      jyBXSubscribe/api/logs/slow.log-2022-09-08
  18. 0 3278
      jyBXSubscribe/api/logs/stat.log
  19. 0 2015
      jyBXSubscribe/api/logs/stat.log-2022-05-12
  20. 0 430
      jyBXSubscribe/api/logs/stat.log-2022-08-29
  21. 0 2080
      jyBXSubscribe/api/logs/stat.log-2022-09-08
  22. 9 0
      jyBXSubscribe/rpc/bxsubscribe.proto
  23. 9 0
      jyBXSubscribe/rpc/bxsubscribe/bxsubscribe.go
  24. 1 1
      jyBXSubscribe/rpc/etc/db.yaml
  25. 113 0
      jyBXSubscribe/rpc/internal/logic/bypushhistorylogic.go
  26. 6 0
      jyBXSubscribe/rpc/internal/server/bxsubscribeserver.go
  27. 190 169
      jyBXSubscribe/rpc/model/push.go
  28. 389 0
      jyBXSubscribe/rpc/type/bxsubscribe/bxsubscribe.pb.go
  29. 72 0
      jyBXSubscribe/rpc/type/bxsubscribe/bxsubscribe_grpc.pb.go
  30. 21 0
      jyBXSubscribe/rpc/util/util.go

+ 3 - 0
jyBXSubscribe/api/bxsubscribe.api

@@ -29,6 +29,7 @@ type (
 		UserType   string `path:"userType,default=fType,options=fType|vType|mType|eType"` //fType:普通用户;vType:超级订阅用户;mType:大会员用户;eType:商机管理用户;
 		NewUserId  int64  `header:"newUserId"`
 		IsEnt      bool   `json:"isEnt,optional"`
+		SelectIds  string `json:"selectIds,optional"`
 	}
 	//
 	someInfoReq {
@@ -67,4 +68,6 @@ service bxsubscribe-api {
 	post /jybx/subscribe/:userType/someInfo(someInfoReq) returns (commonResp)
 	@handler subscribeUpdate
 	post /jybx/subscribe/:userType/update(subscribeUpdateReq) returns (commonResp)
+	@handler ByPushHistory
+	post /jybx/subscribe/:userType/byPushHistory(subscribeReq) returns (commonResp)
 }

+ 14 - 14
jyBXSubscribe/api/bxsubscribe.go

@@ -1,25 +1,25 @@
 package main
 
 import (
-	"app.yhyue.com/moapp/jybase/endless"
-	"bp.jydev.jianyu360.cn/BaseService/gateway/core/node"
-	"fmt"
-	"log"
-	"net/http"
-	"os"
-	"os/signal"
-	"syscall"
+        "app.yhyue.com/moapp/jybase/endless"
+        "bp.jydev.jianyu360.cn/BaseService/gateway/core/node"
+        "fmt"
+        "log"
+        "net/http"
+        "os"
+        "os/signal"
+        "syscall"
 
-	"jyBXSubscribe/api/internal/handler"
-	"jyBXSubscribe/api/internal/svc"
+        "jyBXSubscribe/api/internal/handler"
+        "jyBXSubscribe/api/internal/svc"
 
-	MC "app.yhyue.com/moapp/jybase/common"
-	"github.com/zeromicro/go-zero/rest"
-	IC "jyBXSubscribe/api/init"
+        MC "app.yhyue.com/moapp/jybase/common"
+        "github.com/zeromicro/go-zero/rest"
+        IC "jyBXSubscribe/api/init"
 )
 
 func main() {
-	//注册代理服务
+        //注册代理服务
 	closeNotify, err := node.NewNode(IC.C.Gateway.Etcd...).Register(IC.C.Gateway.ServerCode, MC.InterfaceToStr(IC.C.Port))
 	if err != nil {
 		panic(err)

+ 28 - 0
jyBXSubscribe/api/internal/handler/byPushHistoryHandler.go

@@ -0,0 +1,28 @@
+package handler
+
+import (
+	"net/http"
+
+	"github.com/zeromicro/go-zero/rest/httpx"
+	"jyBXSubscribe/api/internal/logic"
+	"jyBXSubscribe/api/internal/svc"
+	"jyBXSubscribe/api/internal/types"
+)
+
+func ByPushHistoryHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
+	return func(w http.ResponseWriter, r *http.Request) {
+		var req types.SubscribeReq
+		if err := httpx.Parse(r, &req); err != nil {
+			httpx.Error(w, err)
+			return
+		}
+
+		l := logic.NewByPushHistoryLogic(r.Context(), svcCtx)
+		resp, err := l.ByPushHistory(&req)
+		if err != nil {
+			httpx.Error(w, err)
+		} else {
+			httpx.OkJson(w, resp)
+		}
+	}
+}

+ 5 - 0
jyBXSubscribe/api/internal/handler/routes.go

@@ -27,6 +27,11 @@ func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
 				Path:    "/jybx/subscribe/:userType/update",
 				Handler: subscribeUpdateHandler(serverCtx),
 			},
+			{
+				Method:  http.MethodPost,
+				Path:    "/jybx/subscribe/:userType/byPushHistory",
+				Handler: ByPushHistoryHandler(serverCtx),
+			},
 		},
 	)
 }

+ 62 - 0
jyBXSubscribe/api/internal/logic/byPushHistoryLogic.go

@@ -0,0 +1,62 @@
+package logic
+
+import (
+	"context"
+	"jyBXSubscribe/rpc/type/bxsubscribe"
+
+	"jyBXSubscribe/api/internal/svc"
+	"jyBXSubscribe/api/internal/types"
+
+	"github.com/zeromicro/go-zero/core/logx"
+)
+
+type ByPushHistoryLogic struct {
+	logx.Logger
+	ctx    context.Context
+	svcCtx *svc.ServiceContext
+}
+
+func NewByPushHistoryLogic(ctx context.Context, svcCtx *svc.ServiceContext) *ByPushHistoryLogic {
+	return &ByPushHistoryLogic{
+		Logger: logx.WithContext(ctx),
+		ctx:    ctx,
+		svcCtx: svcCtx,
+	}
+}
+
+func (l *ByPushHistoryLogic) ByPushHistory(req *types.SubscribeReq) (resp *types.CommonResp, err error) {
+	res, err := l.svcCtx.Suscribe.ByPushHistory(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,
+		Price:      req.Price,
+		FileExists: req.FileExists,
+		UserId:     req.UserId,
+		EntId:      req.EntId,
+		EntUserId:  req.EntUserId,
+		DeptId:     req.DeptId,
+		NewUserId:  req.NewUserId,
+		IsEnt:      req.IsEnt,
+		SelectIds:  req.SelectIds,
+	})
+	if err != nil {
+		return &types.CommonResp{
+			Err_code: res.ErrorCode,
+			Err_msg:  res.ErrorMsg,
+			Data:     nil,
+		}, nil
+	}
+	return &types.CommonResp{
+		Err_code: res.ErrorCode,
+		Err_msg:  res.ErrorMsg,
+		Data:     res.Data,
+	}, nil
+	return
+}

+ 3 - 0
jyBXSubscribe/api/internal/logic/someInfoLogic.go

@@ -1,7 +1,9 @@
 package logic
 
 import (
+	"app.yhyue.com/moapp/jybase/encrypt"
 	"context"
+	"fmt"
 	"net/http"
 
 	"jyBXSubscribe/api/internal/svc"
@@ -42,6 +44,7 @@ func (l *SomeInfoLogic) SomeInfo(req *types.SomeInfoReq) (resp *types.CommonResp
 		}, nil
 	}
 	logx.Info("-----------:", res.Data)
+	res.Data.UserId = encrypt.EncodeArticleId2ByCheck(fmt.Sprint(req.NewUserId))
 	return &types.CommonResp{
 		Err_code: res.ErrCode,
 		Err_msg:  res.ErrMsg,

+ 1 - 0
jyBXSubscribe/api/internal/types/types.go

@@ -21,6 +21,7 @@ type SubscribeReq struct {
 	UserType   string `path:"userType,default=fType,options=fType|vType|mType|eType"` //fType:普通用户;vType:超级订阅用户;mType:大会员用户;eType:商机管理用户;
 	NewUserId  int64  `header:"newUserId"`
 	IsEnt      bool   `json:"isEnt,optional"`
+	SelectIds  string `json:"selectIds,optional"`
 }
 
 type SomeInfoReq struct {

+ 0 - 93
jyBXSubscribe/api/logs/access.log

@@ -1,93 +0,0 @@
-<<<<<<< HEAD
-{"@timestamp":"2022-09-09T08:45:11.260+08:00","level":"info","duration":"153.9ms","content":"[HTTP] POST - 200 - /jybx/subscribe/fType/list - 127.0.0.1:49848 - ApiPOST Runtime +https://www.apipost.cn","trace":"17617ced98c38358b04c6b746160c73a","span":"90a102578f08965c"}
-{"@timestamp":"2022-09-09T08:47:48.897+08:00","level":"info","duration":"8003.6ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1 pageSize:10 userType:\"fType\" userId:\"6233ea2675219e035e762a90\" newUserId:73535 - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"f2c49ee2698f57ccc27869513ec6919c","span":"70e9fab2332f4275"}
-{"@timestamp":"2022-09-09T08:50:32.109+08:00","level":"info","duration":"7189.2ms","content":"[HTTP] POST - 200 - /jybx/subscribe/fType/list - 127.0.0.1:50420 - ApiPOST Runtime +https://www.apipost.cn","trace":"25e126eef180472c5e8b9422b0cbdb36","span":"920098e3e5cc0601"}
-{"@timestamp":"2022-09-09T08:51:04.894+08:00","level":"info","duration":"101.9ms","content":"[HTTP] POST - 200 - /jybx/subscribe/fType/list - 127.0.0.1:50543 - ApiPOST Runtime +https://www.apipost.cn","trace":"d948c3f88c00e16a078b2923067a29a1","span":"52b9a944606ac184"}
-{"@timestamp":"2022-09-09T08:51:15.635+08:00","level":"info","duration":"8015.4ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1 pageSize:10 userType:\"fType\" userId:\"6233ea2675219e035e762a90\" newUserId:73535 - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"f5bede20531308c846c9b72b766dde9e","span":"74467bed308e764a"}
-{"@timestamp":"2022-09-09T08:51:19.506+08:00","level":"info","duration":"6.8ms","content":"[HTTP] POST - 200 - /jybx/subscribe/fType/list - 127.0.0.1:50554 - ApiPOST Runtime +https://www.apipost.cn","trace":"f31a4ccf966ba2a5fa750e87c017af4e","span":"bc9b4b5865ee08ee"}
-{"@timestamp":"2022-09-09T08:51:56.604+08:00","level":"info","duration":"19.8ms","content":"[HTTP] POST - 200 - /jybx/subscribe/mType/list - 127.0.0.1:50595 - ApiPOST Runtime +https://www.apipost.cn","trace":"4b4ce52d7209f3d19f58fe8bef9d6303","span":"a2002724081a55d8"}
-{"@timestamp":"2022-09-09T08:52:58.303+08:00","level":"info","duration":"8007.4ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1 pageSize:10 userType:\"mType\" userId:\"6233ea2675219e035e762a90\" newUserId:73535 - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"a38b3c5035f620f3dbe205ea34e97015","span":"261e1b2a8372ad4c"}
-{"@timestamp":"2022-09-09T09:16:13.725+08:00","level":"info","duration":"0.0ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1 pageSize:10 userType:\"fType\" userId:\"6233ea2675219e035e762a90\" newUserId:73535 - rpc error: code = Unavailable desc = last connection error: connection error: desc = \"transport: Error while dialing dial tcp 192.168.137.1:8001: connectex: No connection could be made because the target machine actively refused it.\"; last resolver error: produced zero addresses","trace":"ae3f073292fcf3ae08daf39482ebb8bf","span":"eb2d88bdd2d1f72a"}
-{"@timestamp":"2022-09-09T09:32:10.561+08:00","level":"info","content":"-----------:hasKey:true isOnTail:2"}
-{"@timestamp":"2022-09-09T09:32:10.561+08:00","level":"info","duration":"9.9ms","content":"[HTTP] POST - 200 - /jybx/subscribe/fType/someInfo - 127.0.0.1:52651 - ApiPOST Runtime +https://www.apipost.cn","trace":"a98e303a9ab2d5a71d8a4e7ca27f63b3","span":"7eeaf126230c2847"}
-{"@timestamp":"2022-09-09T13:29:49.503+08:00","level":"info","duration":"0.0ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1 pageSize:100 userType:\"vType\" userId:\"6233ea2675219e035e762a90\" newUserId:73535 - rpc error: code = Unavailable desc = last connection error: connection error: desc = \"transport: Error while dialing dial tcp 192.168.40.101:8001: connectex: No connection could be made because the target machine actively refused it.\"; last resolver error: produced zero addresses","trace":"5c795ff7d6001ab3d0c3520d5976658d","span":"102f935aee65219d"}
-{"@timestamp":"2022-09-09T13:29:56.842+08:00","level":"info","duration":"13.5ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/list - 127.0.0.1:64413 - ApiPOST Runtime +https://www.apipost.cn","trace":"9f615ccaeaef135c1eeb11703da21414","span":"f7fbf16a646bb8a7"}
-{"@timestamp":"2022-09-09T13:30:20.039+08:00","level":"info","duration":"8011.4ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1 pageSize:100 userType:\"vType\" userId:\"6233ea2675219e035e762a90\" newUserId:73535 - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"1dd5f9aa361b8037f5e04189014fbb24","span":"23765332d0dbffdb"}
-{"@timestamp":"2022-09-09T13:33:48.839+08:00","level":"info","duration":"8006.9ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1 pageSize:100 userType:\"vType\" userId:\"6233ea2675219e035e762a90\" newUserId:73535 - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"c8e0539c1ebea27504d126f75e6963e8","span":"57eb196d29c2499c"}
-{"@timestamp":"2022-09-09T13:35:38.229+08:00","level":"info","duration":"5.9ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/list - 127.0.0.1:64706 - ApiPOST Runtime +https://www.apipost.cn","trace":"c01ef867a95497f07e68a65ce1d6419d","span":"9cc37fd804ade7c0"}
-{"@timestamp":"2022-09-09T13:35:49.316+08:00","level":"info","duration":"2171.6ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/list - 127.0.0.1:64746 - ApiPOST Runtime +https://www.apipost.cn","trace":"f3a53fd95509b0981e39a67aaa560d36","span":"00366144f66c2f52"}
-{"@timestamp":"2022-09-09T13:36:30.674+08:00","level":"info","duration":"8011.8ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1 pageSize:100 userType:\"vType\" userId:\"6233ea2675219e035e762a90\" newUserId:73535 - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"4aca9c1c8daeb890f9c7df8ecd58145b","span":"f94fc33f46274000"}
-{"@timestamp":"2022-09-09T13:36:50.626+08:00","level":"info","duration":"8013.7ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1 pageSize:100 userType:\"vType\" userId:\"6233ea2675219e035e762a90\" newUserId:73535 - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"82f8ad23f0466bcb5170c5532099298b","span":"58342a008a80fb9f"}
-{"@timestamp":"2022-09-09T13:37:18.183+08:00","level":"info","duration":"40.3ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/list - 127.0.0.1:64813 - ApiPOST Runtime +https://www.apipost.cn","trace":"2511bf8ff46336a547cef6c7fc9d5efc","span":"9bc337bbcb3805b4"}
-{"@timestamp":"2022-09-09T13:37:46.320+08:00","level":"info","duration":"39.7ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/list - 127.0.0.1:64844 - ApiPOST Runtime +https://www.apipost.cn","trace":"a35dae8d7f8f70e55f92416343ce411e","span":"ffee4ff3b8a9b48b"}
-{"@timestamp":"2022-09-09T13:39:04.037+08:00","level":"info","duration":"8001.3ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1 pageSize:100 userType:\"vType\" userId:\"6233ea2675219e035e762a90\" newUserId:73535 - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"cf5adb964957e0e4a5855f9ab7bdc657","span":"2669e22d15fd7f7b"}
-{"@timestamp":"2022-09-09T13:40:14.177+08:00","level":"info","duration":"6.6ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/list - 127.0.0.1:64936 - ApiPOST Runtime +https://www.apipost.cn","trace":"76f5a1ba002d77758b2a54db0aac44f0","span":"1a8f36c89e62eafe"}
-{"@timestamp":"2022-09-09T13:49:11.509+08:00","level":"info","duration":"6393.6ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/list - 127.0.0.1:65493 - ApiPOST Runtime +https://www.apipost.cn","trace":"80a38e3345de24e670c2609e2c6864d9","span":"187768ad41a49fa7"}
-{"@timestamp":"2022-09-09T13:49:57.198+08:00","level":"info","duration":"8009.1ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1 pageSize:100 userType:\"vType\" userId:\"6233ea2675219e035e762a90\" newUserId:73535 - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"22d0ac805ad84d14af158b4eacb0d977","span":"8443b2009c2c1f28"}
-{"@timestamp":"2022-09-09T13:50:54.140+08:00","level":"info","duration":"5.6ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/list - 127.0.0.1:49219 - ApiPOST Runtime +https://www.apipost.cn","trace":"cba675cb7374b6a27546ef4ed1ab2a73","span":"018ecd30bf92d380"}
-{"@timestamp":"2022-09-09T13:57:25.396+08:00","level":"info","duration":"6646.0ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/list - 127.0.0.1:49519 - ApiPOST Runtime +https://www.apipost.cn","trace":"c7ebb6bbfa2b78c11cb2815484152954","span":"f37850f69e5205e3"}
-{"@timestamp":"2022-09-09T13:58:33.608+08:00","level":"info","duration":"8006.9ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1 pageSize:100 userType:\"vType\" userId:\"6233ea2675219e035e762a90\" newUserId:73535 - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"f0314cf5f2b2df77208dd89701cb1efc","span":"c24d2eb8b1cf7887"}
-{"@timestamp":"2022-09-09T13:59:54.521+08:00","level":"info","duration":"8013.8ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1 pageSize:100 userType:\"vType\" userId:\"6233ea2675219e035e762a90\" newUserId:73535 - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"a25742746b333e14c360cc7527dfe71a","span":"93e0034aee1b6b8e"}
-{"@timestamp":"2022-09-09T13:59:58.287+08:00","level":"info","duration":"5.8ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/list - 127.0.0.1:49623 - ApiPOST Runtime +https://www.apipost.cn","trace":"1c41dfd3945eda1448e85af4c0052749","span":"28da2b037fa455c9"}
-{"@timestamp":"2022-09-09T14:11:25.943+08:00","level":"info","duration":"4119.6ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/list - 127.0.0.1:50189 - ApiPOST Runtime +https://www.apipost.cn","trace":"8eb8926b85a80d389760efed5945edb6","span":"ed29b88554b4edde"}
-{"@timestamp":"2022-09-09T14:16:24.577+08:00","level":"info","duration":"8009.2ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubSomeInfo - appId:\"10000\" userId:\"6233ea2675219e035e762a90\" userType:\"vType\" newUserId:73535 - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"99b8562691e7804da2ce75a4ae68bcd1","span":"0a7db58de36d33fc"}
-{"@timestamp":"2022-09-13T09:18:43.209+08:00","level":"info","content":"info--日志记录"}
-{"@timestamp":"2022-09-13T09:18:43.209+08:00","level":"info","content":"error--日志记录"}
-{"@timestamp":"2022-09-13T09:19:23.132+08:00","level":"info","duration":"8003.4ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1  pageSize:100  userType:\"vType\"  userId:\"61f3a3c746af8f8a5c513175\"  newUserId:73116 - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"783ee76821d2878578789322d49dac76","span":"f4efaf04ea1b5a3b"}
-{"@timestamp":"2022-09-13T09:19:36.098+08:00","level":"info","duration":"5311.8ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/list - 127.0.0.1:61338 - ApiPOST Runtime +https://www.apipost.cn","trace":"9b9d99e86313dce536b84f2b1e1a8722","span":"05d2a1cc40ca3390"}
-{"@timestamp":"2022-09-13T09:20:00.512+08:00","level":"info","duration":"5983.3ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/list - 127.0.0.1:61353 - ApiPOST Runtime +https://www.apipost.cn","trace":"0e39a93f84d0df67b402270ebfd26db4","span":"abb500df2f9b2dde"}
-{"@timestamp":"2022-09-13T09:21:06.047+08:00","level":"info","duration":"8014.0ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1  pageSize:100  userType:\"vType\"  userId:\"61f3a3c746af8f8a5c513175\"  newUserId:73116 - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"0d066e377bc89d5dd6167b34ea1d3baf","span":"32aba5fd8f8c48b5"}
-{"@timestamp":"2022-09-13T09:22:56.430+08:00","level":"info","duration":"0.0ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1  pageSize:100  userType:\"vType\"  userId:\"61f3a3c746af8f8a5c513175\"  newUserId:73116 - rpc error: code = Unavailable desc = last resolver error: produced zero addresses","trace":"6b60aaeb9b4f79b89d2ead22260b5f4d","span":"8744686c35186475"}
-{"@timestamp":"2022-09-13T09:22:59.311+08:00","level":"info","duration":"0.0ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1  pageSize:100  userType:\"vType\"  userId:\"61f3a3c746af8f8a5c513175\"  newUserId:73116 - rpc error: code = Unavailable desc = last resolver error: produced zero addresses","trace":"3bd6febbc16b32337c10dcf98cdaf35a","span":"a61ffc10aa9f6cc4"}
-{"@timestamp":"2022-09-13T09:23:07.163+08:00","level":"info","content":"info--日志记录"}
-{"@timestamp":"2022-09-13T09:23:07.163+08:00","level":"info","content":"error--日志记录"}
-{"@timestamp":"2022-09-13T09:23:40.306+08:00","level":"info","content":"info--日志记录"}
-{"@timestamp":"2022-09-13T09:23:40.306+08:00","level":"info","content":"error--日志记录"}
-{"@timestamp":"2022-09-13T09:23:52.366+08:00","level":"info","duration":"8002.6ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1  pageSize:100  userType:\"vType\"  userId:\"61f3a3c746af8f8a5c513175\"  newUserId:73116 - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"5ce0feacac5f9d2d1a3ef9f3e285beb9","span":"826fd6fee308a248"}
-{"@timestamp":"2022-09-13T09:24:08.088+08:00","level":"info","duration":"8015.1ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1  pageSize:100  userType:\"vType\"  userId:\"61f3a3c746af8f8a5c513175\"  newUserId:73116 - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"5f9a5cb29d88af5e5c55249022bb9c18","span":"5dfa423d434a4f94"}
-{"@timestamp":"2022-09-13T09:26:09.441+08:00","level":"info","duration":"8010.4ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1  pageSize:100  userType:\"vType\"  userId:\"61f3a3c746af8f8a5c513175\"  newUserId:73116 - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"abd146ab3ef45b61c56f8a3b2628e6f7","span":"8ab5453b51b822f4"}
-{"@timestamp":"2022-09-13T09:26:29.474+08:00","level":"info","duration":"2263.8ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/list - 127.0.0.1:61681 - ApiPOST Runtime +https://www.apipost.cn","trace":"0b1f3bd3f82b838fdc4c550ce5098652","span":"f811678518d5436e"}
-{"@timestamp":"2022-09-13T09:26:46.364+08:00","level":"info","duration":"8014.6ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1  pageSize:100  userType:\"vType\"  userId:\"61f3a3c746af8f8a5c513175\"  newUserId:73116 - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"546dfe6eb4eed1c8c0014ba93270cf07","span":"6140940e0bdbb513"}
-{"@timestamp":"2022-09-13T09:28:19.884+08:00","level":"info","duration":"1093.1ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/list - 127.0.0.1:61764 - ApiPOST Runtime +https://www.apipost.cn","trace":"17a0cd65975438160ba92204752b639d","span":"65fe37076dfc73ba"}
-{"@timestamp":"2022-09-13T16:50:38.827+08:00","level":"info","duration":"60.1ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/list - 127.0.0.1:53463 - ApiPOST Runtime +https://www.apipost.cn","trace":"ec42e765602d0a5cc8900a38414a052f","span":"908fcf05e8cbed63"}
-{"@timestamp":"2022-09-13T16:51:25.478+08:00","level":"info","duration":"8015.0ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1  pageSize:100  userType:\"vType\"  userId:\"61f3a3c746af8f8a5c513175\"  newUserId:73116 - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"929ffbad04789e328631bcf1cd482bca","span":"47cf900c2ae3b01f"}
-{"@timestamp":"2022-09-13T16:51:44.944+08:00","level":"info","content":"info--日志记录"}
-{"@timestamp":"2022-09-13T16:51:44.944+08:00","level":"info","content":"error--日志记录"}
-{"@timestamp":"2022-09-13T16:51:56.297+08:00","level":"info","duration":"8012.2ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1  pageSize:100  userType:\"vType\"  userId:\"61f3a3c746af8f8a5c513175\"  newUserId:73116 - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"52870c0a018da898f140d010184fe234","span":"1e7882f670c90566"}
-{"@timestamp":"2022-09-13T16:52:02.311+08:00","level":"info","content":"info--日志记录"}
-{"@timestamp":"2022-09-13T16:52:02.311+08:00","level":"info","content":"error--日志记录"}
-{"@timestamp":"2022-09-13T16:52:39.371+08:00","level":"info","content":"info--日志记录"}
-{"@timestamp":"2022-09-13T16:52:39.371+08:00","level":"info","content":"error--日志记录"}
-{"@timestamp":"2022-09-13T16:54:55.467+08:00","level":"info","duration":"0.0ms","content":"fail - discov:/127.0.0.1:2379/bxsubscribe.rpc/bxsubscribe.Bxsubscribe/GetSubList - pageNum:1  pageSize:100  userType:\"vType\"  userId:\"61f3a3c746af8f8a5c513175\"  newUserId:73116 - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"1d7ae02f0e7dd14b9dbd5e810b5dbd9a","span":"781f9552a443071f"}
-=======
-{"@timestamp":"2022-08-29T18:13:40.224+08:00","level":"info","content":"info--日志记录"}
-{"@timestamp":"2022-08-29T18:13:40.224+08:00","level":"info","content":"error--日志记录"}
-{"@timestamp":"2022-08-29T18:15:17.285+08:00","level":"info","duration":"0.7ms","content":"[HTTP] POST - 400 - /jybx/subscribe/vType/update - 127.0.0.1:58617 - PostmanRuntime/7.26.8","trace":"22d7f6fb0fec9c0ce573ee55e17ac26f","span":"02bbc02426c5373e"}
-{"@timestamp":"2022-08-29T18:16:36.879+08:00","level":"info","content":"info--日志记录"}
-{"@timestamp":"2022-08-29T18:16:36.879+08:00","level":"info","content":"error--日志记录"}
-{"@timestamp":"2022-08-29T18:16:39.300+08:00","level":"info","duration":"2.4ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/update - 127.0.0.1:58847 - PostmanRuntime/7.26.8","trace":"09c2199d4b942aa27281a48429a647d1","span":"113e1b7579d473b2"}
-{"@timestamp":"2022-08-29T18:19:29.554+08:00","level":"info","content":"info--日志记录"}
-{"@timestamp":"2022-08-29T18:19:29.554+08:00","level":"info","content":"error--日志记录"}
-{"@timestamp":"2022-08-29T18:19:31.645+08:00","level":"info","duration":"6.4ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/update - 127.0.0.1:59333 - PostmanRuntime/7.26.8","trace":"20586d51a67336c351fc30c7aae83e34","span":"fe88f451d4f42222"}
-{"@timestamp":"2022-08-29T18:20:01.371+08:00","level":"info","duration":"2.9ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/update - 127.0.0.1:59333 - PostmanRuntime/7.26.8","trace":"1bdabdc8c9bebb5714fd2d378a0d69a5","span":"8c4c44f41d4ebc36"}
-{"@timestamp":"2022-08-29T18:21:57.202+08:00","level":"info","duration":"3.8ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/update - 127.0.0.1:59333 - PostmanRuntime/7.26.8","trace":"7da82a9cecfd4f3bfb7348082cf0d9ff","span":"78110b2fc8f344cb"}
-{"@timestamp":"2022-08-29T18:22:14.016+08:00","level":"info","duration":"3.6ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/update - 127.0.0.1:59333 - PostmanRuntime/7.26.8","trace":"dd011cd695fef38179c23d0f57ae9de3","span":"b12f98b22561b4ef"}
-{"@timestamp":"2022-08-29T18:23:50.966+08:00","level":"info","content":"info--日志记录"}
-{"@timestamp":"2022-08-29T18:23:50.966+08:00","level":"info","content":"error--日志记录"}
-{"@timestamp":"2022-08-29T18:23:53.617+08:00","level":"info","duration":"6.8ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/update - 127.0.0.1:59961 - PostmanRuntime/7.26.8","trace":"db1a345037ca36cbc6cb3785722d3c34","span":"a638cf96dff50696"}
-{"@timestamp":"2022-08-29T18:25:02.690+08:00","level":"info","duration":"6.4ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/update - 127.0.0.1:59961 - PostmanRuntime/7.26.8","trace":"1f4a34f816dbfe7c21c72793705a620f","span":"455ab9fa0fedeafc"}
-{"@timestamp":"2022-08-29T18:31:59.291+08:00","level":"info","content":"info--日志记录"}
-{"@timestamp":"2022-08-29T18:31:59.291+08:00","level":"info","content":"error--日志记录"}
-{"@timestamp":"2022-08-29T18:32:01.602+08:00","level":"info","duration":"2.0ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/update - 127.0.0.1:61395 - PostmanRuntime/7.26.8","trace":"f935e43e6a1bb1199b25c76520973d41","span":"5396d7180a852bd6"}
-{"@timestamp":"2022-08-29T18:40:48.215+08:00","level":"info","content":"info--日志记录"}
-{"@timestamp":"2022-08-29T18:40:48.215+08:00","level":"info","content":"error--日志记录"}
-{"@timestamp":"2022-08-29T18:40:54.434+08:00","level":"info","duration":"2.1ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/update - 127.0.0.1:62806 - PostmanRuntime/7.26.8","trace":"693866bd249e07b58335609cb890547c","span":"bf8cdbf53b09dec1"}
-{"@timestamp":"2022-08-29T18:41:46.220+08:00","level":"info","content":"info--日志记录"}
-{"@timestamp":"2022-08-29T18:41:46.220+08:00","level":"info","content":"error--日志记录"}
-{"@timestamp":"2022-08-29T18:41:48.197+08:00","level":"info","duration":"1.2ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/update - 127.0.0.1:62952 - PostmanRuntime/7.26.8","trace":"268f4271bd85fc030638bf6c5b131117","span":"57dfe7b7a874f60c"}
-{"@timestamp":"2022-08-29T19:32:57.157+08:00","level":"info","content":"info--日志记录"}
-{"@timestamp":"2022-08-29T19:32:57.157+08:00","level":"info","content":"error--日志记录"}
-{"@timestamp":"2022-08-29T19:34:12.928+08:00","level":"info","content":"info--日志记录"}
-{"@timestamp":"2022-08-29T19:34:12.928+08:00","level":"info","content":"error--日志记录"}
-{"@timestamp":"2022-08-29T19:34:15.830+08:00","level":"info","duration":"5.3ms","content":"[HTTP] POST - 200 - /jybx/subscribe/vType/update - 127.0.0.1:54214 - PostmanRuntime/7.26.8","trace":"a832b54aaa3a012c27295ed053ccea32","span":"2b079e9db7873f2d"}
->>>>>>> origin/feature/v1.1.5

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

@@ -1,43 +0,0 @@
-{"@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"}

File diff suppressed because it is too large
+ 0 - 131
jyBXSubscribe/api/logs/access.log-2022-09-08


File diff suppressed because it is too large
+ 0 - 4
jyBXSubscribe/api/logs/error.log


File diff suppressed because it is too large
+ 0 - 2
jyBXSubscribe/api/logs/error.log-2022-05-12


+ 0 - 4
jyBXSubscribe/api/logs/error.log-2022-08-29

@@ -1,4 +0,0 @@
-{"@timestamp":"2022-08-29T18:18:55.220+08:00","level":"error","content":"discovbuilder.go:34 bad resolver state"}
-{"@timestamp":"2022-08-29T18:24:54.444+08:00","level":"error","content":"discovbuilder.go:34 bad resolver state"}
-{"@timestamp":"2022-08-29T23:44:51.129+08:00","level":"error","content":"discovbuilder.go:34 bad resolver state"}
-{"@timestamp":"2022-08-29T23:44:51.433+08:00","level":"error","content":"NewReigster.go:111 etcdserver: requested lease not found"}

File diff suppressed because it is too large
+ 0 - 2
jyBXSubscribe/api/logs/error.log-2022-09-08


+ 0 - 0
jyBXSubscribe/api/logs/severe.log


File diff suppressed because it is too large
+ 0 - 1
jyBXSubscribe/api/logs/slow.log


File diff suppressed because it is too large
+ 0 - 49
jyBXSubscribe/api/logs/slow.log-2022-09-08


+ 0 - 3278
jyBXSubscribe/api/logs/stat.log

@@ -1,3278 +0,0 @@
-{"@timestamp":"2022-09-09T08:05:23.520+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:05:23.526+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=55.6Mi, Sys=22.4Mi, NumGC=134"}
-{"@timestamp":"2022-09-09T08:05:23.526+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:05:26.832+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.2Mi, TotalAlloc=56.4Mi, Sys=22.4Mi, NumGC=135"}
-{"@timestamp":"2022-09-09T08:05:26.832+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:05:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:06:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.2Mi, TotalAlloc=57.3Mi, Sys=22.4Mi, NumGC=135"}
-{"@timestamp":"2022-09-09T08:06:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:06:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:07:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=57.5Mi, Sys=22.4Mi, NumGC=136"}
-{"@timestamp":"2022-09-09T08:07:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:07:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:08:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=57.8Mi, Sys=22.4Mi, NumGC=136"}
-{"@timestamp":"2022-09-09T08:08:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:08:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:09:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=58.0Mi, Sys=22.4Mi, NumGC=137"}
-{"@timestamp":"2022-09-09T08:09:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:09:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:10:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=58.2Mi, Sys=22.4Mi, NumGC=137"}
-{"@timestamp":"2022-09-09T08:10:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:10:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:11:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=58.4Mi, Sys=22.4Mi, NumGC=138"}
-{"@timestamp":"2022-09-09T08:11:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:11:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:12:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=58.6Mi, Sys=22.4Mi, NumGC=138"}
-{"@timestamp":"2022-09-09T08:12:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:12:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:13:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=58.8Mi, Sys=22.4Mi, NumGC=139"}
-{"@timestamp":"2022-09-09T08:13:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:13:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:14:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=59.1Mi, Sys=22.4Mi, NumGC=139"}
-{"@timestamp":"2022-09-09T08:14:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:14:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:15:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=59.3Mi, Sys=22.4Mi, NumGC=140"}
-{"@timestamp":"2022-09-09T08:15:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:15:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:16:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=59.5Mi, Sys=22.4Mi, NumGC=140"}
-{"@timestamp":"2022-09-09T08:16:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:16:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:17:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=59.7Mi, Sys=22.4Mi, NumGC=141"}
-{"@timestamp":"2022-09-09T08:17:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:17:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:18:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=59.9Mi, Sys=22.4Mi, NumGC=141"}
-{"@timestamp":"2022-09-09T08:18:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:18:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:19:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=60.1Mi, Sys=22.4Mi, NumGC=142"}
-{"@timestamp":"2022-09-09T08:19:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:19:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:20:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=60.3Mi, Sys=22.4Mi, NumGC=142"}
-{"@timestamp":"2022-09-09T08:20:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:20:37.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:21:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=60.6Mi, Sys=22.4Mi, NumGC=143"}
-{"@timestamp":"2022-09-09T08:21:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:21:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:22:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=60.8Mi, Sys=22.4Mi, NumGC=143"}
-{"@timestamp":"2022-09-09T08:22:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:22:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:23:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=61.0Mi, Sys=22.4Mi, NumGC=144"}
-{"@timestamp":"2022-09-09T08:23:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:23:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:24:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=61.2Mi, Sys=22.4Mi, NumGC=144"}
-{"@timestamp":"2022-09-09T08:24:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:24:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:25:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=61.4Mi, Sys=22.4Mi, NumGC=145"}
-{"@timestamp":"2022-09-09T08:25:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:25:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:26:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=61.6Mi, Sys=22.4Mi, NumGC=145"}
-{"@timestamp":"2022-09-09T08:26:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:26:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:27:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=61.9Mi, Sys=22.4Mi, NumGC=146"}
-{"@timestamp":"2022-09-09T08:27:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:27:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:28:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=62.1Mi, Sys=22.4Mi, NumGC=146"}
-{"@timestamp":"2022-09-09T08:28:26.831+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:28:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:29:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=62.3Mi, Sys=22.4Mi, NumGC=147"}
-{"@timestamp":"2022-09-09T08:29:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:29:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:30:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=62.5Mi, Sys=22.4Mi, NumGC=147"}
-{"@timestamp":"2022-09-09T08:30:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:30:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:31:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=62.7Mi, Sys=22.4Mi, NumGC=148"}
-{"@timestamp":"2022-09-09T08:31:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:31:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:32:26.765+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=63.0Mi, Sys=22.4Mi, NumGC=148"}
-{"@timestamp":"2022-09-09T08:32:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:32:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:33:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=63.2Mi, Sys=22.4Mi, NumGC=149"}
-{"@timestamp":"2022-09-09T08:33:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:33:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:34:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=63.4Mi, Sys=22.4Mi, NumGC=149"}
-{"@timestamp":"2022-09-09T08:34:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:34:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:35:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=63.6Mi, Sys=22.4Mi, NumGC=150"}
-{"@timestamp":"2022-09-09T08:35:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:35:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:36:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=63.8Mi, Sys=22.4Mi, NumGC=150"}
-{"@timestamp":"2022-09-09T08:36:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:36:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:37:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=64.0Mi, Sys=22.4Mi, NumGC=151"}
-{"@timestamp":"2022-09-09T08:37:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:37:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:38:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=64.3Mi, Sys=22.4Mi, NumGC=151"}
-{"@timestamp":"2022-09-09T08:38:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:38:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:39:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=64.5Mi, Sys=22.4Mi, NumGC=152"}
-{"@timestamp":"2022-09-09T08:39:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:39:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:40:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=64.7Mi, Sys=22.4Mi, NumGC=152"}
-{"@timestamp":"2022-09-09T08:40:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:40:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:41:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=64.9Mi, Sys=22.4Mi, NumGC=153"}
-{"@timestamp":"2022-09-09T08:41:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:41:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:42:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=65.1Mi, Sys=22.4Mi, NumGC=153"}
-{"@timestamp":"2022-09-09T08:42:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:42:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:43:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=65.3Mi, Sys=22.4Mi, NumGC=154"}
-{"@timestamp":"2022-09-09T08:43:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:43:37.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:44:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=65.6Mi, Sys=22.4Mi, NumGC=154"}
-{"@timestamp":"2022-09-09T08:44:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:44:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:45:11.260+08:00","level":"stat","content":"p2c - conn: 192.168.137.1:8001, load: 12385, reqs: 1"}
-{"@timestamp":"2022-09-09T08:45:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=66.0Mi, Sys=22.4Mi, NumGC=155"}
-{"@timestamp":"2022-09-09T08:45:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-09T08:45:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 153.0ms, med: 153.9ms, 90th: 153.9ms, 99th: 153.9ms, 99.9th: 153.9ms"}
-{"@timestamp":"2022-09-09T08:46:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.9Mi, TotalAlloc=66.3Mi, Sys=22.4Mi, NumGC=155"}
-{"@timestamp":"2022-09-09T08:46:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:46:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:47:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=66.5Mi, Sys=22.4Mi, NumGC=156"}
-{"@timestamp":"2022-09-09T08:47:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:47:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:47:48.897+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89462, reqs: 1"}
-{"@timestamp":"2022-09-09T08:48:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.9Mi, TotalAlloc=66.9Mi, Sys=22.4Mi, NumGC=156"}
-{"@timestamp":"2022-09-09T08:48:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:48:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8004.0ms, med: 8004.5ms, 90th: 8004.5ms, 99th: 8004.5ms, 99.9th: 8004.5ms"}
-{"@timestamp":"2022-09-09T08:49:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=67.2Mi, Sys=22.4Mi, NumGC=157"}
-{"@timestamp":"2022-09-09T08:49:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:49:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:50:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.9Mi, TotalAlloc=67.5Mi, Sys=22.4Mi, NumGC=157"}
-{"@timestamp":"2022-09-09T08:50:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:50:32.109+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 84783, reqs: 1"}
-{"@timestamp":"2022-09-09T08:50:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 7189.0ms, med: 7189.2ms, 90th: 7189.2ms, 99th: 7189.2ms, 99.9th: 7189.2ms"}
-{"@timestamp":"2022-09-09T08:51:19.506+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 2508, reqs: 1"}
-{"@timestamp":"2022-09-09T08:51:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=68.3Mi, Sys=22.4Mi, NumGC=158"}
-{"@timestamp":"2022-09-09T08:51:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 3, pass: 3, drop: 0"}
-{"@timestamp":"2022-09-09T08:51:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.1/s, drops: 0, avg time: 2707.7ms, med: 8015.4ms, 90th: 8015.4ms, 99th: 8015.4ms, 99.9th: 8015.4ms"}
-{"@timestamp":"2022-09-09T08:52:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=68.6Mi, Sys=22.4Mi, NumGC=158"}
-{"@timestamp":"2022-09-09T08:52:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-09T08:52:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 19.0ms, med: 19.8ms, 90th: 19.8ms, 99th: 19.8ms, 99.9th: 19.8ms"}
-{"@timestamp":"2022-09-09T08:52:58.303+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89390, reqs: 2"}
-{"@timestamp":"2022-09-09T08:53:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=68.9Mi, Sys=22.4Mi, NumGC=159"}
-{"@timestamp":"2022-09-09T08:53:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:53:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8007.0ms, med: 8007.4ms, 90th: 8007.4ms, 99th: 8007.4ms, 99.9th: 8007.4ms"}
-{"@timestamp":"2022-09-09T08:54:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=69.1Mi, Sys=22.4Mi, NumGC=159"}
-{"@timestamp":"2022-09-09T08:54:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:54:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:55:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=69.4Mi, Sys=22.4Mi, NumGC=160"}
-{"@timestamp":"2022-09-09T08:55:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:55:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:56:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=69.6Mi, Sys=22.4Mi, NumGC=160"}
-{"@timestamp":"2022-09-09T08:56:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:56:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:57:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=69.8Mi, Sys=22.4Mi, NumGC=161"}
-{"@timestamp":"2022-09-09T08:57:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:57:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:58:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=70.0Mi, Sys=22.4Mi, NumGC=161"}
-{"@timestamp":"2022-09-09T08:58:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:58:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T08:59:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=70.2Mi, Sys=22.4Mi, NumGC=162"}
-{"@timestamp":"2022-09-09T08:59:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T08:59:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:00:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=70.5Mi, Sys=22.4Mi, NumGC=162"}
-{"@timestamp":"2022-09-09T09:00:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:00:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:01:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=70.7Mi, Sys=22.4Mi, NumGC=163"}
-{"@timestamp":"2022-09-09T09:01:26.831+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:01:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:02:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=70.9Mi, Sys=22.4Mi, NumGC=163"}
-{"@timestamp":"2022-09-09T09:02:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:02:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:03:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=71.1Mi, Sys=22.4Mi, NumGC=164"}
-{"@timestamp":"2022-09-09T09:03:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:03:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:04:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=71.3Mi, Sys=22.4Mi, NumGC=164"}
-{"@timestamp":"2022-09-09T09:04:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:04:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:05:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=71.5Mi, Sys=22.4Mi, NumGC=165"}
-{"@timestamp":"2022-09-09T09:05:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:05:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:06:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=71.8Mi, Sys=22.4Mi, NumGC=165"}
-{"@timestamp":"2022-09-09T09:06:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:06:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:07:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=72.0Mi, Sys=22.4Mi, NumGC=166"}
-{"@timestamp":"2022-09-09T09:07:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:07:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:08:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=72.2Mi, Sys=22.4Mi, NumGC=166"}
-{"@timestamp":"2022-09-09T09:08:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:08:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:09:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=72.4Mi, Sys=22.4Mi, NumGC=167"}
-{"@timestamp":"2022-09-09T09:09:26.831+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:09:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:10:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=72.6Mi, Sys=22.4Mi, NumGC=167"}
-{"@timestamp":"2022-09-09T09:10:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:10:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:11:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=72.8Mi, Sys=22.4Mi, NumGC=168"}
-{"@timestamp":"2022-09-09T09:11:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:11:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:12:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=73.1Mi, Sys=22.4Mi, NumGC=168"}
-{"@timestamp":"2022-09-09T09:12:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:12:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:13:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=73.3Mi, Sys=22.4Mi, NumGC=169"}
-{"@timestamp":"2022-09-09T09:13:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:13:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:14:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=73.5Mi, Sys=22.4Mi, NumGC=169"}
-{"@timestamp":"2022-09-09T09:14:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:14:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:15:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=73.7Mi, Sys=22.4Mi, NumGC=170"}
-{"@timestamp":"2022-09-09T09:15:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:15:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:16:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=74.1Mi, Sys=22.4Mi, NumGC=170"}
-{"@timestamp":"2022-09-09T09:16:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-09T09:16:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:17:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=74.3Mi, Sys=22.4Mi, NumGC=171"}
-{"@timestamp":"2022-09-09T09:17:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:17:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:18:26.765+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=74.5Mi, Sys=22.4Mi, NumGC=171"}
-{"@timestamp":"2022-09-09T09:18:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:18:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:19:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=74.7Mi, Sys=22.4Mi, NumGC=172"}
-{"@timestamp":"2022-09-09T09:19:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:19:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:20:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=74.9Mi, Sys=22.4Mi, NumGC=172"}
-{"@timestamp":"2022-09-09T09:20:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:20:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:21:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=75.2Mi, Sys=22.4Mi, NumGC=173"}
-{"@timestamp":"2022-09-09T09:21:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:21:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:22:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=75.4Mi, Sys=22.4Mi, NumGC=173"}
-{"@timestamp":"2022-09-09T09:22:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:22:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:23:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.4Mi, TotalAlloc=75.6Mi, Sys=22.4Mi, NumGC=174"}
-{"@timestamp":"2022-09-09T09:23:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:23:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:24:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=75.8Mi, Sys=22.4Mi, NumGC=174"}
-{"@timestamp":"2022-09-09T09:24:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:24:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:25:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=76.0Mi, Sys=22.4Mi, NumGC=175"}
-{"@timestamp":"2022-09-09T09:25:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:25:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:26:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=76.2Mi, Sys=22.4Mi, NumGC=175"}
-{"@timestamp":"2022-09-09T09:26:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:26:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:27:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=76.5Mi, Sys=22.4Mi, NumGC=176"}
-{"@timestamp":"2022-09-09T09:27:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:27:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:28:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=76.7Mi, Sys=22.4Mi, NumGC=176"}
-{"@timestamp":"2022-09-09T09:28:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:28:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:29:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.4Mi, TotalAlloc=76.9Mi, Sys=22.4Mi, NumGC=177"}
-{"@timestamp":"2022-09-09T09:29:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:29:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:30:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=77.1Mi, Sys=22.4Mi, NumGC=177"}
-{"@timestamp":"2022-09-09T09:30:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:30:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:31:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=77.4Mi, Sys=22.4Mi, NumGC=178"}
-{"@timestamp":"2022-09-09T09:31:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:31:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:32:10.561+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 3144, reqs: 1"}
-{"@timestamp":"2022-09-09T09:32:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.9Mi, TotalAlloc=77.8Mi, Sys=22.4Mi, NumGC=178"}
-{"@timestamp":"2022-09-09T09:32:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-09T09:32:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 9.0ms, med: 9.9ms, 90th: 9.9ms, 99th: 9.9ms, 99.9th: 9.9ms"}
-{"@timestamp":"2022-09-09T09:33:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=78.0Mi, Sys=22.4Mi, NumGC=179"}
-{"@timestamp":"2022-09-09T09:33:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:33:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:34:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.9Mi, TotalAlloc=78.2Mi, Sys=22.4Mi, NumGC=179"}
-{"@timestamp":"2022-09-09T09:34:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:34:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:35:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=78.4Mi, Sys=22.4Mi, NumGC=180"}
-{"@timestamp":"2022-09-09T09:35:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:35:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:36:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=78.7Mi, Sys=22.4Mi, NumGC=180"}
-{"@timestamp":"2022-09-09T09:36:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:36:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:37:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=78.9Mi, Sys=22.4Mi, NumGC=181"}
-{"@timestamp":"2022-09-09T09:37:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:37:37.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:38:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=79.1Mi, Sys=22.4Mi, NumGC=181"}
-{"@timestamp":"2022-09-09T09:38:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:38:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:39:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=79.3Mi, Sys=22.4Mi, NumGC=182"}
-{"@timestamp":"2022-09-09T09:39:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:39:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:40:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=79.5Mi, Sys=22.4Mi, NumGC=182"}
-{"@timestamp":"2022-09-09T09:40:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:40:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:41:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=79.7Mi, Sys=22.4Mi, NumGC=183"}
-{"@timestamp":"2022-09-09T09:41:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:41:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:42:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=80.0Mi, Sys=22.4Mi, NumGC=183"}
-{"@timestamp":"2022-09-09T09:42:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:42:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:43:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=80.2Mi, Sys=22.4Mi, NumGC=184"}
-{"@timestamp":"2022-09-09T09:43:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:43:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:44:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=80.4Mi, Sys=22.4Mi, NumGC=184"}
-{"@timestamp":"2022-09-09T09:44:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:44:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:45:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=80.6Mi, Sys=22.4Mi, NumGC=185"}
-{"@timestamp":"2022-09-09T09:45:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:45:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:46:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=80.8Mi, Sys=22.4Mi, NumGC=185"}
-{"@timestamp":"2022-09-09T09:46:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:46:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:47:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=81.0Mi, Sys=22.4Mi, NumGC=186"}
-{"@timestamp":"2022-09-09T09:47:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:47:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:48:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=81.3Mi, Sys=22.4Mi, NumGC=186"}
-{"@timestamp":"2022-09-09T09:48:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:48:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:49:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=81.5Mi, Sys=22.4Mi, NumGC=187"}
-{"@timestamp":"2022-09-09T09:49:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:49:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:50:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=81.7Mi, Sys=22.4Mi, NumGC=187"}
-{"@timestamp":"2022-09-09T09:50:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:50:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:51:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=81.9Mi, Sys=22.4Mi, NumGC=188"}
-{"@timestamp":"2022-09-09T09:51:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:51:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:52:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=82.1Mi, Sys=22.4Mi, NumGC=188"}
-{"@timestamp":"2022-09-09T09:52:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:52:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:53:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=82.4Mi, Sys=22.4Mi, NumGC=189"}
-{"@timestamp":"2022-09-09T09:53:26.831+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:53:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:54:26.749+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=82.6Mi, Sys=22.4Mi, NumGC=189"}
-{"@timestamp":"2022-09-09T09:54:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:54:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:55:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=82.8Mi, Sys=22.4Mi, NumGC=190"}
-{"@timestamp":"2022-09-09T09:55:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:55:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:56:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=83.0Mi, Sys=22.4Mi, NumGC=190"}
-{"@timestamp":"2022-09-09T09:56:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:56:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:57:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=83.2Mi, Sys=22.4Mi, NumGC=191"}
-{"@timestamp":"2022-09-09T09:57:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:57:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:58:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=83.4Mi, Sys=22.4Mi, NumGC=191"}
-{"@timestamp":"2022-09-09T09:58:26.831+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:58:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T09:59:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=83.7Mi, Sys=22.4Mi, NumGC=192"}
-{"@timestamp":"2022-09-09T09:59:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T09:59:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:00:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=83.9Mi, Sys=22.4Mi, NumGC=192"}
-{"@timestamp":"2022-09-09T10:00:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:00:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:01:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=84.1Mi, Sys=22.4Mi, NumGC=193"}
-{"@timestamp":"2022-09-09T10:01:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:01:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:02:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=84.3Mi, Sys=22.4Mi, NumGC=193"}
-{"@timestamp":"2022-09-09T10:02:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:02:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:03:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=84.5Mi, Sys=22.4Mi, NumGC=194"}
-{"@timestamp":"2022-09-09T10:03:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:03:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:04:26.765+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=84.7Mi, Sys=22.4Mi, NumGC=194"}
-{"@timestamp":"2022-09-09T10:04:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:04:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:05:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=84.9Mi, Sys=22.4Mi, NumGC=195"}
-{"@timestamp":"2022-09-09T10:05:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:05:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:06:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=85.2Mi, Sys=22.4Mi, NumGC=195"}
-{"@timestamp":"2022-09-09T10:06:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:06:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:07:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=85.4Mi, Sys=22.4Mi, NumGC=196"}
-{"@timestamp":"2022-09-09T10:07:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:07:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:08:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=85.6Mi, Sys=22.4Mi, NumGC=196"}
-{"@timestamp":"2022-09-09T10:08:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:08:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:09:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=85.8Mi, Sys=22.4Mi, NumGC=197"}
-{"@timestamp":"2022-09-09T10:09:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:09:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:10:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=86.0Mi, Sys=22.4Mi, NumGC=197"}
-{"@timestamp":"2022-09-09T10:10:26.831+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:10:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:11:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=86.2Mi, Sys=22.4Mi, NumGC=198"}
-{"@timestamp":"2022-09-09T10:11:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:11:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:12:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=86.5Mi, Sys=22.4Mi, NumGC=198"}
-{"@timestamp":"2022-09-09T10:12:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:12:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:13:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=86.7Mi, Sys=22.4Mi, NumGC=199"}
-{"@timestamp":"2022-09-09T10:13:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:13:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:14:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=86.9Mi, Sys=22.4Mi, NumGC=199"}
-{"@timestamp":"2022-09-09T10:14:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:14:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:15:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=87.1Mi, Sys=22.4Mi, NumGC=200"}
-{"@timestamp":"2022-09-09T10:15:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:15:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:16:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=87.3Mi, Sys=22.4Mi, NumGC=200"}
-{"@timestamp":"2022-09-09T10:16:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:16:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:17:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=87.6Mi, Sys=22.4Mi, NumGC=201"}
-{"@timestamp":"2022-09-09T10:17:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:17:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:18:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=87.8Mi, Sys=22.4Mi, NumGC=201"}
-{"@timestamp":"2022-09-09T10:18:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:18:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:19:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=88.0Mi, Sys=22.4Mi, NumGC=202"}
-{"@timestamp":"2022-09-09T10:19:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:19:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:20:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=88.2Mi, Sys=22.4Mi, NumGC=202"}
-{"@timestamp":"2022-09-09T10:20:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:20:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:21:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=88.4Mi, Sys=22.4Mi, NumGC=203"}
-{"@timestamp":"2022-09-09T10:21:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:21:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:22:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=88.6Mi, Sys=22.4Mi, NumGC=203"}
-{"@timestamp":"2022-09-09T10:22:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:22:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:23:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=88.9Mi, Sys=22.4Mi, NumGC=204"}
-{"@timestamp":"2022-09-09T10:23:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:23:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:24:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=89.1Mi, Sys=22.4Mi, NumGC=204"}
-{"@timestamp":"2022-09-09T10:24:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:24:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:25:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=89.3Mi, Sys=22.4Mi, NumGC=205"}
-{"@timestamp":"2022-09-09T10:25:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:25:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:26:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=89.5Mi, Sys=22.4Mi, NumGC=205"}
-{"@timestamp":"2022-09-09T10:26:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:26:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:27:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=89.7Mi, Sys=22.4Mi, NumGC=206"}
-{"@timestamp":"2022-09-09T10:27:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:27:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:28:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=89.9Mi, Sys=22.4Mi, NumGC=206"}
-{"@timestamp":"2022-09-09T10:28:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:28:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:29:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=90.2Mi, Sys=22.4Mi, NumGC=207"}
-{"@timestamp":"2022-09-09T10:29:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:29:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:30:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=90.4Mi, Sys=22.4Mi, NumGC=207"}
-{"@timestamp":"2022-09-09T10:30:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:30:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:31:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=90.6Mi, Sys=22.4Mi, NumGC=208"}
-{"@timestamp":"2022-09-09T10:31:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:31:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:32:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=90.8Mi, Sys=22.4Mi, NumGC=208"}
-{"@timestamp":"2022-09-09T10:32:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:32:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:33:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=91.0Mi, Sys=22.4Mi, NumGC=209"}
-{"@timestamp":"2022-09-09T10:33:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:33:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:34:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=91.2Mi, Sys=22.4Mi, NumGC=209"}
-{"@timestamp":"2022-09-09T10:34:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:34:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:35:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=91.5Mi, Sys=22.4Mi, NumGC=210"}
-{"@timestamp":"2022-09-09T10:35:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:35:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:36:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=91.7Mi, Sys=22.4Mi, NumGC=210"}
-{"@timestamp":"2022-09-09T10:36:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:36:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:37:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=91.9Mi, Sys=22.4Mi, NumGC=211"}
-{"@timestamp":"2022-09-09T10:37:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:37:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:38:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=92.1Mi, Sys=22.4Mi, NumGC=211"}
-{"@timestamp":"2022-09-09T10:38:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:38:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:39:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=92.4Mi, Sys=22.4Mi, NumGC=212"}
-{"@timestamp":"2022-09-09T10:39:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:39:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:40:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=92.6Mi, Sys=22.4Mi, NumGC=212"}
-{"@timestamp":"2022-09-09T10:40:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:40:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:41:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=92.9Mi, Sys=22.4Mi, NumGC=213"}
-{"@timestamp":"2022-09-09T10:41:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:41:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:42:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=93.3Mi, Sys=22.4Mi, NumGC=213"}
-{"@timestamp":"2022-09-09T10:42:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:42:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:43:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=93.5Mi, Sys=22.4Mi, NumGC=214"}
-{"@timestamp":"2022-09-09T10:43:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:43:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:44:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=93.8Mi, Sys=22.4Mi, NumGC=214"}
-{"@timestamp":"2022-09-09T10:44:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:44:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:45:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=94.1Mi, Sys=22.4Mi, NumGC=215"}
-{"@timestamp":"2022-09-09T10:45:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:45:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:46:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=94.3Mi, Sys=22.4Mi, NumGC=215"}
-{"@timestamp":"2022-09-09T10:46:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:46:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:47:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=94.6Mi, Sys=22.4Mi, NumGC=216"}
-{"@timestamp":"2022-09-09T10:47:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:47:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:48:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.9Mi, TotalAlloc=95.0Mi, Sys=22.4Mi, NumGC=216"}
-{"@timestamp":"2022-09-09T10:48:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:48:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:49:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=95.2Mi, Sys=22.4Mi, NumGC=217"}
-{"@timestamp":"2022-09-09T10:49:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:49:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:50:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=95.4Mi, Sys=22.4Mi, NumGC=217"}
-{"@timestamp":"2022-09-09T10:50:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:50:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:51:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=95.8Mi, Sys=22.4Mi, NumGC=218"}
-{"@timestamp":"2022-09-09T10:51:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:51:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:52:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=96.0Mi, Sys=22.4Mi, NumGC=218"}
-{"@timestamp":"2022-09-09T10:52:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:52:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:53:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=96.2Mi, Sys=22.4Mi, NumGC=219"}
-{"@timestamp":"2022-09-09T10:53:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:53:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:54:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=96.4Mi, Sys=22.4Mi, NumGC=219"}
-{"@timestamp":"2022-09-09T10:54:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:54:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:55:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=96.6Mi, Sys=22.4Mi, NumGC=220"}
-{"@timestamp":"2022-09-09T10:55:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:55:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:56:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=96.8Mi, Sys=22.4Mi, NumGC=220"}
-{"@timestamp":"2022-09-09T10:56:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:56:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:57:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=97.1Mi, Sys=22.4Mi, NumGC=221"}
-{"@timestamp":"2022-09-09T10:57:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:57:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:58:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=97.3Mi, Sys=22.4Mi, NumGC=221"}
-{"@timestamp":"2022-09-09T10:58:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:58:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T10:59:26.765+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=97.5Mi, Sys=22.4Mi, NumGC=222"}
-{"@timestamp":"2022-09-09T10:59:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T10:59:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:00:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=97.7Mi, Sys=22.4Mi, NumGC=222"}
-{"@timestamp":"2022-09-09T11:00:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:00:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:01:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=97.9Mi, Sys=22.4Mi, NumGC=223"}
-{"@timestamp":"2022-09-09T11:01:26.831+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:01:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:02:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=98.1Mi, Sys=22.4Mi, NumGC=223"}
-{"@timestamp":"2022-09-09T11:02:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:02:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:03:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=98.4Mi, Sys=22.4Mi, NumGC=224"}
-{"@timestamp":"2022-09-09T11:03:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:03:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:04:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=98.6Mi, Sys=22.4Mi, NumGC=224"}
-{"@timestamp":"2022-09-09T11:04:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:04:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:05:26.765+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=98.8Mi, Sys=22.4Mi, NumGC=225"}
-{"@timestamp":"2022-09-09T11:05:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:05:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:06:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=99.0Mi, Sys=22.4Mi, NumGC=225"}
-{"@timestamp":"2022-09-09T11:06:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:06:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:07:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=99.2Mi, Sys=22.4Mi, NumGC=226"}
-{"@timestamp":"2022-09-09T11:07:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:07:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:08:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=99.4Mi, Sys=22.4Mi, NumGC=226"}
-{"@timestamp":"2022-09-09T11:08:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:08:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:09:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=99.7Mi, Sys=22.4Mi, NumGC=227"}
-{"@timestamp":"2022-09-09T11:09:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:09:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:10:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=99.9Mi, Sys=22.4Mi, NumGC=227"}
-{"@timestamp":"2022-09-09T11:10:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:10:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:11:26.765+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=100.1Mi, Sys=22.4Mi, NumGC=228"}
-{"@timestamp":"2022-09-09T11:11:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:11:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:12:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=100.3Mi, Sys=22.4Mi, NumGC=228"}
-{"@timestamp":"2022-09-09T11:12:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:12:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:13:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=100.5Mi, Sys=22.4Mi, NumGC=229"}
-{"@timestamp":"2022-09-09T11:13:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:13:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:14:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=100.7Mi, Sys=22.4Mi, NumGC=229"}
-{"@timestamp":"2022-09-09T11:14:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:14:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:15:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=101.0Mi, Sys=22.4Mi, NumGC=230"}
-{"@timestamp":"2022-09-09T11:15:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:15:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:16:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=101.2Mi, Sys=22.4Mi, NumGC=230"}
-{"@timestamp":"2022-09-09T11:16:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:16:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:17:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=101.4Mi, Sys=22.4Mi, NumGC=231"}
-{"@timestamp":"2022-09-09T11:17:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:17:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:18:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=101.6Mi, Sys=22.4Mi, NumGC=231"}
-{"@timestamp":"2022-09-09T11:18:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:18:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:19:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=101.8Mi, Sys=22.4Mi, NumGC=232"}
-{"@timestamp":"2022-09-09T11:19:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:19:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:20:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=102.0Mi, Sys=22.4Mi, NumGC=232"}
-{"@timestamp":"2022-09-09T11:20:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:20:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:21:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=102.3Mi, Sys=22.4Mi, NumGC=233"}
-{"@timestamp":"2022-09-09T11:21:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:21:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:22:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=102.5Mi, Sys=22.4Mi, NumGC=233"}
-{"@timestamp":"2022-09-09T11:22:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:22:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:23:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=102.7Mi, Sys=22.4Mi, NumGC=234"}
-{"@timestamp":"2022-09-09T11:23:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:23:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:24:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=102.9Mi, Sys=22.4Mi, NumGC=234"}
-{"@timestamp":"2022-09-09T11:24:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:24:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:25:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=103.1Mi, Sys=22.4Mi, NumGC=235"}
-{"@timestamp":"2022-09-09T11:25:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:25:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:26:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=103.3Mi, Sys=22.4Mi, NumGC=235"}
-{"@timestamp":"2022-09-09T11:26:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:26:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:27:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=103.5Mi, Sys=22.4Mi, NumGC=236"}
-{"@timestamp":"2022-09-09T11:27:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:27:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:28:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=103.8Mi, Sys=22.4Mi, NumGC=236"}
-{"@timestamp":"2022-09-09T11:28:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:28:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:29:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=104.0Mi, Sys=22.4Mi, NumGC=237"}
-{"@timestamp":"2022-09-09T11:29:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:29:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:30:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=104.2Mi, Sys=22.4Mi, NumGC=237"}
-{"@timestamp":"2022-09-09T11:30:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:30:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:31:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=104.4Mi, Sys=22.4Mi, NumGC=238"}
-{"@timestamp":"2022-09-09T11:31:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:31:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:32:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=104.6Mi, Sys=22.4Mi, NumGC=238"}
-{"@timestamp":"2022-09-09T11:32:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:32:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:33:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=104.8Mi, Sys=22.4Mi, NumGC=239"}
-{"@timestamp":"2022-09-09T11:33:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:33:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:34:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=105.1Mi, Sys=22.4Mi, NumGC=239"}
-{"@timestamp":"2022-09-09T11:34:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:34:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:35:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=105.3Mi, Sys=22.4Mi, NumGC=240"}
-{"@timestamp":"2022-09-09T11:35:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:35:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:36:26.765+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=105.5Mi, Sys=22.4Mi, NumGC=240"}
-{"@timestamp":"2022-09-09T11:36:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:36:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:37:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=105.7Mi, Sys=22.4Mi, NumGC=241"}
-{"@timestamp":"2022-09-09T11:37:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:37:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:38:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=105.9Mi, Sys=22.4Mi, NumGC=241"}
-{"@timestamp":"2022-09-09T11:38:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:38:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:39:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=106.2Mi, Sys=22.4Mi, NumGC=242"}
-{"@timestamp":"2022-09-09T11:39:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:39:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:40:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=106.4Mi, Sys=22.4Mi, NumGC=242"}
-{"@timestamp":"2022-09-09T11:40:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:40:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:41:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=106.6Mi, Sys=22.4Mi, NumGC=243"}
-{"@timestamp":"2022-09-09T11:41:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:41:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:42:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=106.8Mi, Sys=22.4Mi, NumGC=243"}
-{"@timestamp":"2022-09-09T11:42:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:42:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:43:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=107.0Mi, Sys=22.4Mi, NumGC=244"}
-{"@timestamp":"2022-09-09T11:43:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:43:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:44:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=107.2Mi, Sys=22.4Mi, NumGC=244"}
-{"@timestamp":"2022-09-09T11:44:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:44:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:45:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=107.4Mi, Sys=22.4Mi, NumGC=245"}
-{"@timestamp":"2022-09-09T11:45:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:45:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:46:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=107.7Mi, Sys=22.4Mi, NumGC=245"}
-{"@timestamp":"2022-09-09T11:46:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:46:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:47:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=107.9Mi, Sys=22.4Mi, NumGC=246"}
-{"@timestamp":"2022-09-09T11:47:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:47:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:48:26.765+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=108.1Mi, Sys=22.4Mi, NumGC=246"}
-{"@timestamp":"2022-09-09T11:48:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:48:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:49:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=108.3Mi, Sys=22.4Mi, NumGC=247"}
-{"@timestamp":"2022-09-09T11:49:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:49:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:50:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=108.5Mi, Sys=22.4Mi, NumGC=247"}
-{"@timestamp":"2022-09-09T11:50:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:50:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:51:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=108.7Mi, Sys=22.4Mi, NumGC=248"}
-{"@timestamp":"2022-09-09T11:51:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:51:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:52:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=109.0Mi, Sys=22.4Mi, NumGC=248"}
-{"@timestamp":"2022-09-09T11:52:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:52:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:53:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=109.2Mi, Sys=22.4Mi, NumGC=249"}
-{"@timestamp":"2022-09-09T11:53:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:53:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:54:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=109.4Mi, Sys=22.4Mi, NumGC=249"}
-{"@timestamp":"2022-09-09T11:54:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:54:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:55:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=109.6Mi, Sys=22.4Mi, NumGC=250"}
-{"@timestamp":"2022-09-09T11:55:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:55:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:56:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=109.8Mi, Sys=22.4Mi, NumGC=250"}
-{"@timestamp":"2022-09-09T11:56:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:56:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:57:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=110.0Mi, Sys=22.4Mi, NumGC=251"}
-{"@timestamp":"2022-09-09T11:57:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:57:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:58:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=110.3Mi, Sys=22.4Mi, NumGC=251"}
-{"@timestamp":"2022-09-09T11:58:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:58:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T11:59:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=110.5Mi, Sys=22.4Mi, NumGC=252"}
-{"@timestamp":"2022-09-09T11:59:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T11:59:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:00:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=110.7Mi, Sys=22.4Mi, NumGC=252"}
-{"@timestamp":"2022-09-09T12:00:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:00:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:01:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=110.9Mi, Sys=22.4Mi, NumGC=253"}
-{"@timestamp":"2022-09-09T12:01:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:01:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:02:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=111.1Mi, Sys=22.4Mi, NumGC=253"}
-{"@timestamp":"2022-09-09T12:02:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:02:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:03:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=111.3Mi, Sys=22.4Mi, NumGC=254"}
-{"@timestamp":"2022-09-09T12:03:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:03:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:04:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=111.5Mi, Sys=22.4Mi, NumGC=254"}
-{"@timestamp":"2022-09-09T12:04:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:04:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:05:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=111.8Mi, Sys=22.4Mi, NumGC=255"}
-{"@timestamp":"2022-09-09T12:05:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:05:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:06:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=112.0Mi, Sys=22.4Mi, NumGC=255"}
-{"@timestamp":"2022-09-09T12:06:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:06:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:07:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=112.2Mi, Sys=22.4Mi, NumGC=256"}
-{"@timestamp":"2022-09-09T12:07:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:07:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:08:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=112.4Mi, Sys=22.4Mi, NumGC=256"}
-{"@timestamp":"2022-09-09T12:08:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:08:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:09:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=112.6Mi, Sys=22.4Mi, NumGC=257"}
-{"@timestamp":"2022-09-09T12:09:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:09:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:10:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=112.8Mi, Sys=22.4Mi, NumGC=257"}
-{"@timestamp":"2022-09-09T12:10:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:10:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:11:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=113.1Mi, Sys=22.4Mi, NumGC=258"}
-{"@timestamp":"2022-09-09T12:11:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:11:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:12:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=113.3Mi, Sys=22.4Mi, NumGC=258"}
-{"@timestamp":"2022-09-09T12:12:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:12:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:13:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=113.5Mi, Sys=22.4Mi, NumGC=259"}
-{"@timestamp":"2022-09-09T12:13:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:13:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:14:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=113.7Mi, Sys=22.4Mi, NumGC=259"}
-{"@timestamp":"2022-09-09T12:14:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:14:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:15:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=113.9Mi, Sys=22.4Mi, NumGC=260"}
-{"@timestamp":"2022-09-09T12:15:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:15:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:16:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=114.1Mi, Sys=22.4Mi, NumGC=260"}
-{"@timestamp":"2022-09-09T12:16:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:16:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:17:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=114.4Mi, Sys=22.4Mi, NumGC=261"}
-{"@timestamp":"2022-09-09T12:17:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:17:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:18:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=114.6Mi, Sys=22.4Mi, NumGC=261"}
-{"@timestamp":"2022-09-09T12:18:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:18:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:19:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=114.8Mi, Sys=22.4Mi, NumGC=262"}
-{"@timestamp":"2022-09-09T12:19:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:19:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:20:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=115.0Mi, Sys=22.4Mi, NumGC=262"}
-{"@timestamp":"2022-09-09T12:20:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:20:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:21:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=115.2Mi, Sys=22.4Mi, NumGC=263"}
-{"@timestamp":"2022-09-09T12:21:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:21:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:22:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=115.4Mi, Sys=22.4Mi, NumGC=263"}
-{"@timestamp":"2022-09-09T12:22:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:22:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:23:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=115.6Mi, Sys=22.4Mi, NumGC=264"}
-{"@timestamp":"2022-09-09T12:23:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:23:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:24:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=115.9Mi, Sys=22.4Mi, NumGC=264"}
-{"@timestamp":"2022-09-09T12:24:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:24:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:25:28.856+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=116.1Mi, Sys=22.4Mi, NumGC=265"}
-{"@timestamp":"2022-09-09T12:25:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:25:39.464+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:26:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=116.3Mi, Sys=22.4Mi, NumGC=265"}
-{"@timestamp":"2022-09-09T12:26:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:26:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:27:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=116.5Mi, Sys=22.4Mi, NumGC=266"}
-{"@timestamp":"2022-09-09T12:27:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:27:39.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:28:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=116.7Mi, Sys=22.4Mi, NumGC=266"}
-{"@timestamp":"2022-09-09T12:28:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:28:39.473+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:29:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=116.9Mi, Sys=22.4Mi, NumGC=267"}
-{"@timestamp":"2022-09-09T12:29:28.928+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:29:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:30:28.863+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=117.1Mi, Sys=22.4Mi, NumGC=267"}
-{"@timestamp":"2022-09-09T12:30:28.926+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:30:39.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:31:28.862+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=117.4Mi, Sys=22.4Mi, NumGC=268"}
-{"@timestamp":"2022-09-09T12:31:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:31:39.462+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:32:28.858+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=117.6Mi, Sys=22.4Mi, NumGC=268"}
-{"@timestamp":"2022-09-09T12:32:28.934+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:32:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:33:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=117.8Mi, Sys=22.4Mi, NumGC=269"}
-{"@timestamp":"2022-09-09T12:33:28.921+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:33:39.466+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:34:28.863+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=118.0Mi, Sys=22.4Mi, NumGC=269"}
-{"@timestamp":"2022-09-09T12:34:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:34:39.466+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:35:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=118.2Mi, Sys=22.4Mi, NumGC=270"}
-{"@timestamp":"2022-09-09T12:35:28.928+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:35:39.473+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:36:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=118.4Mi, Sys=22.4Mi, NumGC=270"}
-{"@timestamp":"2022-09-09T12:36:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:36:39.473+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:37:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=118.7Mi, Sys=22.4Mi, NumGC=271"}
-{"@timestamp":"2022-09-09T12:37:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:37:39.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:38:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=118.9Mi, Sys=22.4Mi, NumGC=271"}
-{"@timestamp":"2022-09-09T12:38:28.928+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:38:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:39:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=119.1Mi, Sys=22.4Mi, NumGC=272"}
-{"@timestamp":"2022-09-09T12:39:28.926+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:39:39.473+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:40:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=119.3Mi, Sys=22.4Mi, NumGC=272"}
-{"@timestamp":"2022-09-09T12:40:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:40:39.464+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:41:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=119.5Mi, Sys=22.4Mi, NumGC=273"}
-{"@timestamp":"2022-09-09T12:41:28.932+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:41:39.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:42:28.858+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=119.7Mi, Sys=22.4Mi, NumGC=273"}
-{"@timestamp":"2022-09-09T12:42:28.934+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:42:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:43:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=119.9Mi, Sys=22.4Mi, NumGC=274"}
-{"@timestamp":"2022-09-09T12:43:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:43:39.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:44:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=120.2Mi, Sys=22.4Mi, NumGC=274"}
-{"@timestamp":"2022-09-09T12:44:28.921+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:44:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:45:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=120.4Mi, Sys=22.4Mi, NumGC=275"}
-{"@timestamp":"2022-09-09T12:45:28.921+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:45:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:46:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=120.6Mi, Sys=22.4Mi, NumGC=275"}
-{"@timestamp":"2022-09-09T12:46:28.935+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:46:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:47:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=120.8Mi, Sys=22.4Mi, NumGC=276"}
-{"@timestamp":"2022-09-09T12:47:28.930+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:47:39.464+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:48:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=121.0Mi, Sys=22.4Mi, NumGC=276"}
-{"@timestamp":"2022-09-09T12:48:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:48:39.473+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:49:28.865+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=121.2Mi, Sys=22.4Mi, NumGC=277"}
-{"@timestamp":"2022-09-09T12:49:28.927+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:49:39.464+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:50:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=121.5Mi, Sys=22.4Mi, NumGC=277"}
-{"@timestamp":"2022-09-09T12:50:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:50:39.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:51:28.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=121.7Mi, Sys=22.4Mi, NumGC=278"}
-{"@timestamp":"2022-09-09T12:51:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:51:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:52:28.865+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=121.9Mi, Sys=22.4Mi, NumGC=278"}
-{"@timestamp":"2022-09-09T12:52:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:52:39.464+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:53:28.865+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=122.1Mi, Sys=22.4Mi, NumGC=279"}
-{"@timestamp":"2022-09-09T12:53:28.927+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:53:39.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:54:28.862+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=122.3Mi, Sys=22.4Mi, NumGC=279"}
-{"@timestamp":"2022-09-09T12:54:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:54:39.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:55:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=122.5Mi, Sys=22.4Mi, NumGC=280"}
-{"@timestamp":"2022-09-09T12:55:28.928+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:55:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:56:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=122.7Mi, Sys=22.4Mi, NumGC=280"}
-{"@timestamp":"2022-09-09T12:56:28.921+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:56:39.466+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:57:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=123.0Mi, Sys=22.4Mi, NumGC=281"}
-{"@timestamp":"2022-09-09T12:57:28.928+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:57:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:58:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=123.2Mi, Sys=22.4Mi, NumGC=281"}
-{"@timestamp":"2022-09-09T12:58:28.935+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:58:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T12:59:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=123.4Mi, Sys=22.4Mi, NumGC=282"}
-{"@timestamp":"2022-09-09T12:59:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T12:59:39.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:00:28.856+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=123.6Mi, Sys=22.4Mi, NumGC=282"}
-{"@timestamp":"2022-09-09T13:00:28.934+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:00:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:01:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=123.8Mi, Sys=22.4Mi, NumGC=283"}
-{"@timestamp":"2022-09-09T13:01:28.926+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:01:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:02:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=124.0Mi, Sys=22.4Mi, NumGC=283"}
-{"@timestamp":"2022-09-09T13:02:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:02:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:03:28.862+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=124.3Mi, Sys=22.4Mi, NumGC=284"}
-{"@timestamp":"2022-09-09T13:03:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:03:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:04:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=124.5Mi, Sys=22.4Mi, NumGC=284"}
-{"@timestamp":"2022-09-09T13:04:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:04:39.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:05:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=124.7Mi, Sys=22.4Mi, NumGC=285"}
-{"@timestamp":"2022-09-09T13:05:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:05:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:06:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=124.9Mi, Sys=22.4Mi, NumGC=285"}
-{"@timestamp":"2022-09-09T13:06:28.927+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:06:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:07:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=125.1Mi, Sys=22.4Mi, NumGC=286"}
-{"@timestamp":"2022-09-09T13:07:28.928+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:07:39.473+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:08:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=125.3Mi, Sys=22.4Mi, NumGC=286"}
-{"@timestamp":"2022-09-09T13:08:28.927+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:08:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:09:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=125.6Mi, Sys=22.4Mi, NumGC=287"}
-{"@timestamp":"2022-09-09T13:09:28.934+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:09:39.462+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:10:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=125.8Mi, Sys=22.4Mi, NumGC=287"}
-{"@timestamp":"2022-09-09T13:10:28.920+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:10:39.473+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:11:28.863+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=126.0Mi, Sys=22.4Mi, NumGC=288"}
-{"@timestamp":"2022-09-09T13:11:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:11:39.466+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:12:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=126.2Mi, Sys=22.4Mi, NumGC=288"}
-{"@timestamp":"2022-09-09T13:12:28.934+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:12:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:13:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=126.4Mi, Sys=22.4Mi, NumGC=289"}
-{"@timestamp":"2022-09-09T13:13:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:13:39.473+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:14:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=126.6Mi, Sys=22.4Mi, NumGC=289"}
-{"@timestamp":"2022-09-09T13:14:28.932+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:14:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:15:28.862+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=126.8Mi, Sys=22.4Mi, NumGC=290"}
-{"@timestamp":"2022-09-09T13:15:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:15:39.475+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:16:28.865+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=127.1Mi, Sys=22.4Mi, NumGC=290"}
-{"@timestamp":"2022-09-09T13:16:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:16:39.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:17:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=127.3Mi, Sys=22.4Mi, NumGC=291"}
-{"@timestamp":"2022-09-09T13:17:28.928+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:17:39.462+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:18:28.863+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=127.5Mi, Sys=22.4Mi, NumGC=291"}
-{"@timestamp":"2022-09-09T13:18:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:18:39.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:19:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=127.7Mi, Sys=22.4Mi, NumGC=292"}
-{"@timestamp":"2022-09-09T13:19:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:19:39.466+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:20:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=127.9Mi, Sys=22.4Mi, NumGC=292"}
-{"@timestamp":"2022-09-09T13:20:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:20:39.473+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:21:28.858+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=128.1Mi, Sys=22.4Mi, NumGC=293"}
-{"@timestamp":"2022-09-09T13:21:28.934+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:21:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:22:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=128.4Mi, Sys=22.4Mi, NumGC=293"}
-{"@timestamp":"2022-09-09T13:22:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:22:39.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:23:28.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=128.6Mi, Sys=22.4Mi, NumGC=294"}
-{"@timestamp":"2022-09-09T13:23:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:23:39.473+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:24:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=128.8Mi, Sys=22.4Mi, NumGC=294"}
-{"@timestamp":"2022-09-09T13:24:28.930+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:24:39.459+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:25:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=129.0Mi, Sys=22.4Mi, NumGC=295"}
-{"@timestamp":"2022-09-09T13:25:28.921+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:25:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:26:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=129.2Mi, Sys=22.4Mi, NumGC=295"}
-{"@timestamp":"2022-09-09T13:26:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:26:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:27:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=129.4Mi, Sys=22.4Mi, NumGC=296"}
-{"@timestamp":"2022-09-09T13:27:28.935+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:27:39.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:28:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=129.6Mi, Sys=22.4Mi, NumGC=296"}
-{"@timestamp":"2022-09-09T13:28:28.920+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:28:39.461+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:29:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.5Mi, TotalAlloc=129.9Mi, Sys=22.4Mi, NumGC=297"}
-{"@timestamp":"2022-09-09T13:29:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:29:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:29:56.842+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 3604, reqs: 1"}
-{"@timestamp":"2022-09-09T13:30:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.3Mi, TotalAlloc=130.7Mi, Sys=22.4Mi, NumGC=297"}
-{"@timestamp":"2022-09-09T13:30:28.932+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 3, pass: 2, drop: 0"}
-{"@timestamp":"2022-09-09T13:30:39.461+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.1/s, drops: 0, avg time: 2674.7ms, med: 8011.4ms, 90th: 8011.4ms, 99th: 8011.4ms, 99.9th: 8011.4ms"}
-{"@timestamp":"2022-09-09T13:31:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=131.0Mi, Sys=22.4Mi, NumGC=298"}
-{"@timestamp":"2022-09-09T13:31:28.932+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:31:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:32:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=131.2Mi, Sys=22.4Mi, NumGC=298"}
-{"@timestamp":"2022-09-09T13:32:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:32:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:33:28.862+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=131.4Mi, Sys=22.4Mi, NumGC=299"}
-{"@timestamp":"2022-09-09T13:33:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:33:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:33:48.839+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89481, reqs: 1"}
-{"@timestamp":"2022-09-09T13:34:28.854+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.1Mi, TotalAlloc=131.9Mi, Sys=22.4Mi, NumGC=299"}
-{"@timestamp":"2022-09-09T13:34:28.932+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:34:39.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8006.0ms, med: 8006.9ms, 90th: 8006.9ms, 99th: 8006.9ms, 99.9th: 8006.9ms"}
-{"@timestamp":"2022-09-09T13:35:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=132.3Mi, Sys=22.4Mi, NumGC=300"}
-{"@timestamp":"2022-09-09T13:35:28.928+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:35:38.229+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 2432, reqs: 1"}
-{"@timestamp":"2022-09-09T13:35:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 5.0ms, med: 5.9ms, 90th: 5.9ms, 99th: 5.9ms, 99.9th: 5.9ms"}
-{"@timestamp":"2022-09-09T13:36:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.3Mi, TotalAlloc=132.9Mi, Sys=22.4Mi, NumGC=300"}
-{"@timestamp":"2022-09-09T13:36:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 3, pass: 2, drop: 0"}
-{"@timestamp":"2022-09-09T13:36:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 5091.5ms, med: 8011.8ms, 90th: 8011.8ms, 99th: 8011.8ms, 99.9th: 8011.8ms"}
-{"@timestamp":"2022-09-09T13:36:50.626+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89438, reqs: 3"}
-{"@timestamp":"2022-09-09T13:37:18.183+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 6308, reqs: 1"}
-{"@timestamp":"2022-09-09T13:37:28.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.9Mi, TotalAlloc=133.6Mi, Sys=22.4Mi, NumGC=301"}
-{"@timestamp":"2022-09-09T13:37:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-09T13:37:39.466+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 4027.0ms, med: 8014.2ms, 90th: 8014.2ms, 99th: 8014.2ms, 99.9th: 8014.2ms"}
-{"@timestamp":"2022-09-09T13:38:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.3Mi, TotalAlloc=134.0Mi, Sys=22.4Mi, NumGC=301"}
-{"@timestamp":"2022-09-09T13:38:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-09T13:38:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 39.0ms, med: 39.2ms, 90th: 39.2ms, 99th: 39.2ms, 99.9th: 39.2ms"}
-{"@timestamp":"2022-09-09T13:39:04.037+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89450, reqs: 1"}
-{"@timestamp":"2022-09-09T13:39:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=134.4Mi, Sys=22.4Mi, NumGC=302"}
-{"@timestamp":"2022-09-09T13:39:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:39:39.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8001.0ms, med: 8001.9ms, 90th: 8001.9ms, 99th: 8001.9ms, 99.9th: 8001.9ms"}
-{"@timestamp":"2022-09-09T13:40:14.177+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 2578, reqs: 1"}
-{"@timestamp":"2022-09-09T13:40:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.2Mi, TotalAlloc=135.0Mi, Sys=22.4Mi, NumGC=302"}
-{"@timestamp":"2022-09-09T13:40:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-09T13:40:39.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 6.0ms, med: 6.6ms, 90th: 6.6ms, 99th: 6.6ms, 99.9th: 6.6ms"}
-{"@timestamp":"2022-09-09T13:41:28.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=135.2Mi, Sys=22.4Mi, NumGC=303"}
-{"@timestamp":"2022-09-09T13:41:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:41:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:42:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.9Mi, TotalAlloc=135.4Mi, Sys=22.4Mi, NumGC=303"}
-{"@timestamp":"2022-09-09T13:42:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:42:39.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:43:28.856+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=135.6Mi, Sys=22.4Mi, NumGC=304"}
-{"@timestamp":"2022-09-09T13:43:28.934+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:43:39.461+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:44:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=135.8Mi, Sys=22.4Mi, NumGC=304"}
-{"@timestamp":"2022-09-09T13:44:28.932+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:44:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:45:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=136.1Mi, Sys=22.4Mi, NumGC=305"}
-{"@timestamp":"2022-09-09T13:45:28.930+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:45:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:46:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=136.3Mi, Sys=22.4Mi, NumGC=305"}
-{"@timestamp":"2022-09-09T13:46:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:46:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:47:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=136.5Mi, Sys=22.4Mi, NumGC=306"}
-{"@timestamp":"2022-09-09T13:47:28.934+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:47:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:48:28.856+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=136.7Mi, Sys=22.4Mi, NumGC=306"}
-{"@timestamp":"2022-09-09T13:48:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:48:39.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:49:11.509+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 79953, reqs: 1"}
-{"@timestamp":"2022-09-09T13:49:28.869+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=137.2Mi, Sys=22.4Mi, NumGC=307"}
-{"@timestamp":"2022-09-09T13:49:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-09T13:49:39.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 6393.0ms, med: 6393.6ms, 90th: 6393.6ms, 99th: 6393.6ms, 99.9th: 6393.6ms"}
-{"@timestamp":"2022-09-09T13:50:28.863+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.1Mi, TotalAlloc=137.6Mi, Sys=22.4Mi, NumGC=307"}
-{"@timestamp":"2022-09-09T13:50:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:50:39.461+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8009.0ms, med: 8009.1ms, 90th: 8009.1ms, 99th: 8009.1ms, 99.9th: 8009.1ms"}
-{"@timestamp":"2022-09-09T13:50:54.140+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 2362, reqs: 1"}
-{"@timestamp":"2022-09-09T13:51:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=138.1Mi, Sys=22.4Mi, NumGC=308"}
-{"@timestamp":"2022-09-09T13:51:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-09T13:51:39.473+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 5.0ms, med: 5.6ms, 90th: 5.6ms, 99th: 5.6ms, 99.9th: 5.6ms"}
-{"@timestamp":"2022-09-09T13:52:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=138.3Mi, Sys=22.4Mi, NumGC=308"}
-{"@timestamp":"2022-09-09T13:52:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:52:39.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:53:28.865+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=138.5Mi, Sys=22.4Mi, NumGC=309"}
-{"@timestamp":"2022-09-09T13:53:28.926+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:53:39.461+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:54:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=138.7Mi, Sys=22.4Mi, NumGC=309"}
-{"@timestamp":"2022-09-09T13:54:28.930+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:54:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:55:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=138.9Mi, Sys=22.4Mi, NumGC=310"}
-{"@timestamp":"2022-09-09T13:55:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:55:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:56:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=139.2Mi, Sys=22.4Mi, NumGC=310"}
-{"@timestamp":"2022-09-09T13:56:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:56:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:57:25.396+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 81516, reqs: 1"}
-{"@timestamp":"2022-09-09T13:57:28.870+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=139.6Mi, Sys=22.4Mi, NumGC=311"}
-{"@timestamp":"2022-09-09T13:57:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-09T13:57:39.464+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 6645.0ms, med: 6645.5ms, 90th: 6645.5ms, 99th: 6645.5ms, 99.9th: 6645.5ms"}
-{"@timestamp":"2022-09-09T13:58:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=139.9Mi, Sys=22.4Mi, NumGC=311"}
-{"@timestamp":"2022-09-09T13:58:28.930+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:58:33.608+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89472, reqs: 1"}
-{"@timestamp":"2022-09-09T13:58:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8007.0ms, med: 8007.4ms, 90th: 8007.4ms, 99th: 8007.4ms, 99.9th: 8007.4ms"}
-{"@timestamp":"2022-09-09T13:59:28.863+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=140.2Mi, Sys=22.4Mi, NumGC=312"}
-{"@timestamp":"2022-09-09T13:59:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T13:59:39.464+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T13:59:54.521+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89519, reqs: 1"}
-{"@timestamp":"2022-09-09T13:59:58.287+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 2300, reqs: 1"}
-{"@timestamp":"2022-09-09T14:00:28.858+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.3Mi, TotalAlloc=141.0Mi, Sys=22.4Mi, NumGC=312"}
-{"@timestamp":"2022-09-09T14:00:28.934+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-09T14:00:39.473+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 4009.5ms, med: 8013.8ms, 90th: 8013.8ms, 99th: 8013.8ms, 99.9th: 8013.8ms"}
-{"@timestamp":"2022-09-09T14:01:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=141.2Mi, Sys=22.4Mi, NumGC=313"}
-{"@timestamp":"2022-09-09T14:01:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:01:39.462+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:02:28.862+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=141.4Mi, Sys=22.4Mi, NumGC=313"}
-{"@timestamp":"2022-09-09T14:02:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:02:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:03:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=141.6Mi, Sys=22.4Mi, NumGC=314"}
-{"@timestamp":"2022-09-09T14:03:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:03:39.473+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:04:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=141.8Mi, Sys=22.4Mi, NumGC=314"}
-{"@timestamp":"2022-09-09T14:04:28.934+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:04:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:05:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=142.1Mi, Sys=22.4Mi, NumGC=315"}
-{"@timestamp":"2022-09-09T14:05:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:05:39.461+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:06:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=142.3Mi, Sys=22.4Mi, NumGC=315"}
-{"@timestamp":"2022-09-09T14:06:28.930+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:06:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:07:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=142.5Mi, Sys=22.4Mi, NumGC=316"}
-{"@timestamp":"2022-09-09T14:07:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:07:39.475+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:08:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=142.7Mi, Sys=22.4Mi, NumGC=316"}
-{"@timestamp":"2022-09-09T14:08:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:08:39.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:09:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=142.9Mi, Sys=22.4Mi, NumGC=317"}
-{"@timestamp":"2022-09-09T14:09:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:09:39.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:10:28.865+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=143.2Mi, Sys=22.4Mi, NumGC=317"}
-{"@timestamp":"2022-09-09T14:10:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:10:39.466+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:11:25.943+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 64176, reqs: 1"}
-{"@timestamp":"2022-09-09T14:11:28.854+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=143.6Mi, Sys=22.4Mi, NumGC=318"}
-{"@timestamp":"2022-09-09T14:11:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-09T14:11:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 4119.0ms, med: 4119.6ms, 90th: 4119.6ms, 99th: 4119.6ms, 99.9th: 4119.6ms"}
-{"@timestamp":"2022-09-09T14:12:28.869+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.9Mi, TotalAlloc=143.8Mi, Sys=22.4Mi, NumGC=318"}
-{"@timestamp":"2022-09-09T14:12:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:12:39.473+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:13:28.854+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=144.1Mi, Sys=22.4Mi, NumGC=319"}
-{"@timestamp":"2022-09-09T14:13:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:13:39.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:14:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=144.3Mi, Sys=22.4Mi, NumGC=319"}
-{"@timestamp":"2022-09-09T14:14:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:14:39.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:15:28.862+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.6Mi, TotalAlloc=144.5Mi, Sys=22.4Mi, NumGC=320"}
-{"@timestamp":"2022-09-09T14:15:28.930+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:15:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:16:24.577+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89494, reqs: 1"}
-{"@timestamp":"2022-09-09T14:16:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=144.9Mi, Sys=22.4Mi, NumGC=320"}
-{"@timestamp":"2022-09-09T14:16:28.920+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:16:39.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8009.0ms, med: 8009.2ms, 90th: 8009.2ms, 99th: 8009.2ms, 99.9th: 8009.2ms"}
-{"@timestamp":"2022-09-09T14:17:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.2Mi, TotalAlloc=145.1Mi, Sys=22.4Mi, NumGC=320"}
-{"@timestamp":"2022-09-09T14:17:28.930+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:17:39.461+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:18:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=145.3Mi, Sys=22.4Mi, NumGC=321"}
-{"@timestamp":"2022-09-09T14:18:28.926+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:18:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:19:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=145.5Mi, Sys=22.4Mi, NumGC=321"}
-{"@timestamp":"2022-09-09T14:19:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:19:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:20:28.865+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=145.7Mi, Sys=22.4Mi, NumGC=322"}
-{"@timestamp":"2022-09-09T14:20:28.927+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:20:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:21:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.9Mi, TotalAlloc=146.0Mi, Sys=22.4Mi, NumGC=322"}
-{"@timestamp":"2022-09-09T14:21:28.935+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:21:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:22:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=146.2Mi, Sys=22.4Mi, NumGC=323"}
-{"@timestamp":"2022-09-09T14:22:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:22:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:23:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.9Mi, TotalAlloc=146.4Mi, Sys=22.4Mi, NumGC=323"}
-{"@timestamp":"2022-09-09T14:23:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:23:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:24:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.7Mi, TotalAlloc=146.6Mi, Sys=22.4Mi, NumGC=324"}
-{"@timestamp":"2022-09-09T14:24:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:24:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:25:28.865+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=146.9Mi, Sys=22.4Mi, NumGC=324"}
-{"@timestamp":"2022-09-09T14:25:28.928+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:25:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:26:28.863+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=147.2Mi, Sys=22.4Mi, NumGC=325"}
-{"@timestamp":"2022-09-09T14:26:28.927+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:26:39.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:27:28.856+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=147.4Mi, Sys=22.4Mi, NumGC=325"}
-{"@timestamp":"2022-09-09T14:27:28.920+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:27:39.461+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:28:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=147.6Mi, Sys=22.4Mi, NumGC=326"}
-{"@timestamp":"2022-09-09T14:28:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:28:39.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:29:28.856+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=147.8Mi, Sys=22.4Mi, NumGC=326"}
-{"@timestamp":"2022-09-09T14:29:28.936+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:29:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:30:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=148.0Mi, Sys=22.4Mi, NumGC=327"}
-{"@timestamp":"2022-09-09T14:30:28.921+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:30:39.464+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:31:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=148.2Mi, Sys=22.4Mi, NumGC=327"}
-{"@timestamp":"2022-09-09T14:31:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:31:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:32:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=148.5Mi, Sys=22.4Mi, NumGC=328"}
-{"@timestamp":"2022-09-09T14:32:28.930+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:32:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:33:28.865+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=148.7Mi, Sys=22.4Mi, NumGC=328"}
-{"@timestamp":"2022-09-09T14:33:28.926+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:33:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:34:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=148.9Mi, Sys=22.4Mi, NumGC=329"}
-{"@timestamp":"2022-09-09T14:34:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:34:39.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:35:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=149.1Mi, Sys=22.4Mi, NumGC=329"}
-{"@timestamp":"2022-09-09T14:35:28.930+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:35:39.462+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:36:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=149.3Mi, Sys=22.4Mi, NumGC=330"}
-{"@timestamp":"2022-09-09T14:36:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:36:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:37:28.856+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=149.5Mi, Sys=22.4Mi, NumGC=330"}
-{"@timestamp":"2022-09-09T14:37:28.934+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:37:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:38:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=149.8Mi, Sys=22.4Mi, NumGC=331"}
-{"@timestamp":"2022-09-09T14:38:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:38:39.461+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:39:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=150.0Mi, Sys=22.4Mi, NumGC=331"}
-{"@timestamp":"2022-09-09T14:39:28.926+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:39:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:40:28.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=150.2Mi, Sys=22.4Mi, NumGC=332"}
-{"@timestamp":"2022-09-09T14:40:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:40:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:41:28.865+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=150.4Mi, Sys=22.4Mi, NumGC=332"}
-{"@timestamp":"2022-09-09T14:41:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:41:39.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:42:28.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=150.6Mi, Sys=22.4Mi, NumGC=333"}
-{"@timestamp":"2022-09-09T14:42:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:42:39.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:43:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=150.8Mi, Sys=22.4Mi, NumGC=333"}
-{"@timestamp":"2022-09-09T14:43:28.921+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:43:39.466+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:44:28.863+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=151.1Mi, Sys=22.4Mi, NumGC=334"}
-{"@timestamp":"2022-09-09T14:44:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:44:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:45:28.858+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=151.3Mi, Sys=22.4Mi, NumGC=334"}
-{"@timestamp":"2022-09-09T14:45:28.935+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:45:39.459+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:46:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=151.5Mi, Sys=22.4Mi, NumGC=335"}
-{"@timestamp":"2022-09-09T14:46:28.927+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:46:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:47:28.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=151.7Mi, Sys=22.4Mi, NumGC=335"}
-{"@timestamp":"2022-09-09T14:47:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:47:39.473+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:48:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=151.9Mi, Sys=22.4Mi, NumGC=336"}
-{"@timestamp":"2022-09-09T14:48:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:48:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:49:28.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=152.1Mi, Sys=22.4Mi, NumGC=336"}
-{"@timestamp":"2022-09-09T14:49:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:49:39.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:50:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.9Mi, TotalAlloc=152.5Mi, Sys=22.4Mi, NumGC=337"}
-{"@timestamp":"2022-09-09T14:50:28.932+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:50:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:51:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.3Mi, TotalAlloc=152.9Mi, Sys=22.4Mi, NumGC=337"}
-{"@timestamp":"2022-09-09T14:51:28.932+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:51:39.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:52:28.862+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=153.1Mi, Sys=22.4Mi, NumGC=338"}
-{"@timestamp":"2022-09-09T14:52:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:52:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:53:28.865+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=153.3Mi, Sys=22.4Mi, NumGC=338"}
-{"@timestamp":"2022-09-09T14:53:28.927+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:53:39.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:54:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=153.5Mi, Sys=22.4Mi, NumGC=339"}
-{"@timestamp":"2022-09-09T14:54:28.932+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:54:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:55:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=153.7Mi, Sys=22.4Mi, NumGC=339"}
-{"@timestamp":"2022-09-09T14:55:28.921+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:55:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:56:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=153.9Mi, Sys=22.4Mi, NumGC=340"}
-{"@timestamp":"2022-09-09T14:56:28.928+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:56:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:57:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=154.2Mi, Sys=22.4Mi, NumGC=340"}
-{"@timestamp":"2022-09-09T14:57:28.934+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:57:39.466+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:58:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=154.4Mi, Sys=22.4Mi, NumGC=341"}
-{"@timestamp":"2022-09-09T14:58:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:58:39.462+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T14:59:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=154.6Mi, Sys=22.4Mi, NumGC=341"}
-{"@timestamp":"2022-09-09T14:59:28.927+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T14:59:39.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:00:28.854+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=154.8Mi, Sys=22.4Mi, NumGC=342"}
-{"@timestamp":"2022-09-09T15:00:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:00:39.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:01:28.869+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=155.0Mi, Sys=22.4Mi, NumGC=342"}
-{"@timestamp":"2022-09-09T15:01:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:01:39.461+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:02:28.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=155.2Mi, Sys=22.4Mi, NumGC=343"}
-{"@timestamp":"2022-09-09T15:02:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:02:39.461+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:03:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=155.5Mi, Sys=22.4Mi, NumGC=343"}
-{"@timestamp":"2022-09-09T15:03:28.934+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:03:39.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:04:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=155.7Mi, Sys=22.4Mi, NumGC=344"}
-{"@timestamp":"2022-09-09T15:04:28.928+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:04:39.464+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:05:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=155.9Mi, Sys=22.4Mi, NumGC=344"}
-{"@timestamp":"2022-09-09T15:05:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:05:39.459+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:06:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=156.1Mi, Sys=22.4Mi, NumGC=345"}
-{"@timestamp":"2022-09-09T15:06:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:06:39.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:07:28.856+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=156.3Mi, Sys=22.4Mi, NumGC=345"}
-{"@timestamp":"2022-09-09T15:07:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:07:39.466+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:08:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=156.5Mi, Sys=22.4Mi, NumGC=346"}
-{"@timestamp":"2022-09-09T15:08:28.932+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:08:39.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:09:28.863+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=156.7Mi, Sys=22.4Mi, NumGC=346"}
-{"@timestamp":"2022-09-09T15:09:28.926+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:09:39.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:10:28.854+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=157.0Mi, Sys=22.4Mi, NumGC=347"}
-{"@timestamp":"2022-09-09T15:10:28.930+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:10:39.462+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:11:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=157.2Mi, Sys=22.4Mi, NumGC=347"}
-{"@timestamp":"2022-09-09T15:11:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:11:39.462+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:12:28.862+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=157.4Mi, Sys=22.4Mi, NumGC=348"}
-{"@timestamp":"2022-09-09T15:12:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:12:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:13:28.856+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=157.6Mi, Sys=22.4Mi, NumGC=348"}
-{"@timestamp":"2022-09-09T15:13:28.934+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:13:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:14:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=157.8Mi, Sys=22.4Mi, NumGC=349"}
-{"@timestamp":"2022-09-09T15:14:28.932+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:14:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:15:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=158.0Mi, Sys=22.4Mi, NumGC=349"}
-{"@timestamp":"2022-09-09T15:15:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:15:39.459+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:16:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=158.3Mi, Sys=22.4Mi, NumGC=350"}
-{"@timestamp":"2022-09-09T15:16:28.921+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:16:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:17:28.863+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=158.5Mi, Sys=22.4Mi, NumGC=350"}
-{"@timestamp":"2022-09-09T15:17:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:17:39.461+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:18:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=158.7Mi, Sys=22.4Mi, NumGC=351"}
-{"@timestamp":"2022-09-09T15:18:28.926+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:18:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:19:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=158.9Mi, Sys=22.4Mi, NumGC=351"}
-{"@timestamp":"2022-09-09T15:19:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:19:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:20:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=159.1Mi, Sys=22.4Mi, NumGC=352"}
-{"@timestamp":"2022-09-09T15:20:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:20:39.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:21:28.856+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=159.3Mi, Sys=22.4Mi, NumGC=352"}
-{"@timestamp":"2022-09-09T15:21:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:21:39.461+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:22:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=159.6Mi, Sys=22.4Mi, NumGC=353"}
-{"@timestamp":"2022-09-09T15:22:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:22:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:23:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=159.8Mi, Sys=22.4Mi, NumGC=353"}
-{"@timestamp":"2022-09-09T15:23:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:23:39.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:24:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=160.0Mi, Sys=22.4Mi, NumGC=354"}
-{"@timestamp":"2022-09-09T15:24:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:24:39.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:25:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=160.2Mi, Sys=22.4Mi, NumGC=354"}
-{"@timestamp":"2022-09-09T15:25:28.927+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:25:39.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:26:28.863+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=160.4Mi, Sys=22.4Mi, NumGC=355"}
-{"@timestamp":"2022-09-09T15:26:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:26:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:27:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=160.6Mi, Sys=22.4Mi, NumGC=355"}
-{"@timestamp":"2022-09-09T15:27:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:27:39.473+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:28:28.854+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=160.8Mi, Sys=22.4Mi, NumGC=356"}
-{"@timestamp":"2022-09-09T15:28:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:28:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:29:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=161.1Mi, Sys=22.4Mi, NumGC=356"}
-{"@timestamp":"2022-09-09T15:29:28.928+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:29:39.464+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:30:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=161.3Mi, Sys=22.4Mi, NumGC=357"}
-{"@timestamp":"2022-09-09T15:30:28.934+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:30:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:31:28.869+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=161.5Mi, Sys=22.4Mi, NumGC=357"}
-{"@timestamp":"2022-09-09T15:31:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:31:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:32:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=161.7Mi, Sys=22.4Mi, NumGC=358"}
-{"@timestamp":"2022-09-09T15:32:28.930+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:32:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:33:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=161.9Mi, Sys=22.4Mi, NumGC=358"}
-{"@timestamp":"2022-09-09T15:33:28.928+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:33:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:34:28.858+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=162.1Mi, Sys=22.4Mi, NumGC=359"}
-{"@timestamp":"2022-09-09T15:34:28.921+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:34:39.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:35:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=162.4Mi, Sys=22.4Mi, NumGC=359"}
-{"@timestamp":"2022-09-09T15:35:28.930+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:35:39.464+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:36:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=162.6Mi, Sys=22.4Mi, NumGC=360"}
-{"@timestamp":"2022-09-09T15:36:28.930+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:36:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:37:28.869+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=162.8Mi, Sys=22.4Mi, NumGC=360"}
-{"@timestamp":"2022-09-09T15:37:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:37:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:38:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=163.0Mi, Sys=22.4Mi, NumGC=361"}
-{"@timestamp":"2022-09-09T15:38:28.921+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:38:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:39:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=163.2Mi, Sys=22.4Mi, NumGC=361"}
-{"@timestamp":"2022-09-09T15:39:28.926+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:39:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:40:28.858+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=163.4Mi, Sys=22.4Mi, NumGC=362"}
-{"@timestamp":"2022-09-09T15:40:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:40:39.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:41:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=163.6Mi, Sys=22.4Mi, NumGC=362"}
-{"@timestamp":"2022-09-09T15:41:28.934+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:41:39.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:42:28.856+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=163.9Mi, Sys=22.4Mi, NumGC=363"}
-{"@timestamp":"2022-09-09T15:42:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:42:39.475+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:43:28.865+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=164.1Mi, Sys=22.4Mi, NumGC=363"}
-{"@timestamp":"2022-09-09T15:43:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:43:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:44:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=164.3Mi, Sys=22.4Mi, NumGC=364"}
-{"@timestamp":"2022-09-09T15:44:28.928+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:44:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:45:28.856+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=164.5Mi, Sys=22.4Mi, NumGC=364"}
-{"@timestamp":"2022-09-09T15:45:28.932+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:45:39.464+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:46:28.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=164.7Mi, Sys=22.4Mi, NumGC=365"}
-{"@timestamp":"2022-09-09T15:46:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:46:39.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:47:28.865+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=164.9Mi, Sys=22.4Mi, NumGC=365"}
-{"@timestamp":"2022-09-09T15:47:28.927+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:47:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:48:28.863+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=165.2Mi, Sys=22.4Mi, NumGC=366"}
-{"@timestamp":"2022-09-09T15:48:28.926+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:48:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:49:28.854+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=165.4Mi, Sys=22.4Mi, NumGC=366"}
-{"@timestamp":"2022-09-09T15:49:28.932+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:49:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:50:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=165.6Mi, Sys=22.4Mi, NumGC=367"}
-{"@timestamp":"2022-09-09T15:50:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:50:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:51:28.862+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=165.8Mi, Sys=22.4Mi, NumGC=367"}
-{"@timestamp":"2022-09-09T15:51:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:51:39.461+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:52:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=166.0Mi, Sys=22.4Mi, NumGC=368"}
-{"@timestamp":"2022-09-09T15:52:28.927+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:52:39.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:53:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=166.2Mi, Sys=22.4Mi, NumGC=368"}
-{"@timestamp":"2022-09-09T15:53:28.926+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:53:39.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:54:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=166.5Mi, Sys=22.4Mi, NumGC=369"}
-{"@timestamp":"2022-09-09T15:54:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:54:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:55:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=166.7Mi, Sys=22.4Mi, NumGC=369"}
-{"@timestamp":"2022-09-09T15:55:28.926+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:55:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:56:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=166.9Mi, Sys=22.4Mi, NumGC=370"}
-{"@timestamp":"2022-09-09T15:56:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:56:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:57:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=167.1Mi, Sys=22.4Mi, NumGC=370"}
-{"@timestamp":"2022-09-09T15:57:28.930+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:57:39.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:58:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=167.3Mi, Sys=22.4Mi, NumGC=371"}
-{"@timestamp":"2022-09-09T15:58:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:58:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T15:59:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=167.5Mi, Sys=22.4Mi, NumGC=371"}
-{"@timestamp":"2022-09-09T15:59:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T15:59:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:00:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=167.8Mi, Sys=22.4Mi, NumGC=372"}
-{"@timestamp":"2022-09-09T16:00:28.927+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:00:39.466+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:01:28.858+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=168.0Mi, Sys=22.4Mi, NumGC=372"}
-{"@timestamp":"2022-09-09T16:01:28.935+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:01:39.464+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:02:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=168.2Mi, Sys=22.4Mi, NumGC=373"}
-{"@timestamp":"2022-09-09T16:02:28.920+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:02:39.462+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:03:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=168.4Mi, Sys=22.4Mi, NumGC=373"}
-{"@timestamp":"2022-09-09T16:03:28.935+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:03:39.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:04:28.858+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=168.6Mi, Sys=22.4Mi, NumGC=374"}
-{"@timestamp":"2022-09-09T16:04:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:04:39.466+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:05:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=168.8Mi, Sys=22.4Mi, NumGC=374"}
-{"@timestamp":"2022-09-09T16:05:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:05:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:06:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=169.1Mi, Sys=22.4Mi, NumGC=375"}
-{"@timestamp":"2022-09-09T16:06:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:06:39.461+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:07:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=169.3Mi, Sys=22.4Mi, NumGC=375"}
-{"@timestamp":"2022-09-09T16:07:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:07:39.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:08:28.863+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=169.5Mi, Sys=22.4Mi, NumGC=376"}
-{"@timestamp":"2022-09-09T16:08:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:08:39.461+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:09:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=169.7Mi, Sys=22.4Mi, NumGC=376"}
-{"@timestamp":"2022-09-09T16:09:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:09:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:10:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=169.9Mi, Sys=22.4Mi, NumGC=377"}
-{"@timestamp":"2022-09-09T16:10:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:10:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:11:28.854+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=170.1Mi, Sys=22.4Mi, NumGC=377"}
-{"@timestamp":"2022-09-09T16:11:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:11:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:12:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=170.3Mi, Sys=22.4Mi, NumGC=378"}
-{"@timestamp":"2022-09-09T16:12:28.934+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:12:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:13:28.869+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=170.6Mi, Sys=22.4Mi, NumGC=378"}
-{"@timestamp":"2022-09-09T16:13:28.930+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:13:39.464+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:14:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=170.8Mi, Sys=22.4Mi, NumGC=379"}
-{"@timestamp":"2022-09-09T16:14:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:14:39.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:15:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=171.0Mi, Sys=22.4Mi, NumGC=379"}
-{"@timestamp":"2022-09-09T16:15:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:15:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:16:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=171.2Mi, Sys=22.4Mi, NumGC=380"}
-{"@timestamp":"2022-09-09T16:16:28.920+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:16:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:17:28.863+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=171.4Mi, Sys=22.4Mi, NumGC=380"}
-{"@timestamp":"2022-09-09T16:17:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:17:39.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:18:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=171.6Mi, Sys=22.4Mi, NumGC=381"}
-{"@timestamp":"2022-09-09T16:18:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:18:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:19:28.862+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=171.9Mi, Sys=22.4Mi, NumGC=381"}
-{"@timestamp":"2022-09-09T16:19:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:19:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:20:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=172.1Mi, Sys=22.4Mi, NumGC=382"}
-{"@timestamp":"2022-09-09T16:20:28.927+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:20:39.466+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:21:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=172.3Mi, Sys=22.4Mi, NumGC=382"}
-{"@timestamp":"2022-09-09T16:21:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:21:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:22:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=172.5Mi, Sys=22.4Mi, NumGC=383"}
-{"@timestamp":"2022-09-09T16:22:28.927+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:22:39.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:23:28.858+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=172.7Mi, Sys=22.4Mi, NumGC=383"}
-{"@timestamp":"2022-09-09T16:23:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:23:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:24:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=172.9Mi, Sys=22.4Mi, NumGC=384"}
-{"@timestamp":"2022-09-09T16:24:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:24:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:25:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=173.1Mi, Sys=22.4Mi, NumGC=384"}
-{"@timestamp":"2022-09-09T16:25:28.920+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:25:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:26:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=173.4Mi, Sys=22.4Mi, NumGC=385"}
-{"@timestamp":"2022-09-09T16:26:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:26:39.464+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:27:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=173.6Mi, Sys=22.4Mi, NumGC=385"}
-{"@timestamp":"2022-09-09T16:27:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:27:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:28:28.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=173.8Mi, Sys=22.4Mi, NumGC=386"}
-{"@timestamp":"2022-09-09T16:28:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:28:39.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:29:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=174.0Mi, Sys=22.4Mi, NumGC=386"}
-{"@timestamp":"2022-09-09T16:29:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:29:39.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:30:28.862+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=174.2Mi, Sys=22.4Mi, NumGC=387"}
-{"@timestamp":"2022-09-09T16:30:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:30:39.462+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:31:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=174.4Mi, Sys=22.4Mi, NumGC=387"}
-{"@timestamp":"2022-09-09T16:31:28.928+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:31:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:32:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=174.7Mi, Sys=22.4Mi, NumGC=388"}
-{"@timestamp":"2022-09-09T16:32:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:32:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:33:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=174.9Mi, Sys=22.4Mi, NumGC=388"}
-{"@timestamp":"2022-09-09T16:33:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:33:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:34:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=175.1Mi, Sys=22.4Mi, NumGC=389"}
-{"@timestamp":"2022-09-09T16:34:28.927+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:34:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:35:28.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=175.3Mi, Sys=22.4Mi, NumGC=389"}
-{"@timestamp":"2022-09-09T16:35:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:35:39.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:36:28.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=175.5Mi, Sys=22.4Mi, NumGC=390"}
-{"@timestamp":"2022-09-09T16:36:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:36:39.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:37:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=175.7Mi, Sys=22.4Mi, NumGC=390"}
-{"@timestamp":"2022-09-09T16:37:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:37:39.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:38:28.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=176.0Mi, Sys=22.4Mi, NumGC=391"}
-{"@timestamp":"2022-09-09T16:38:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:38:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:39:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=176.2Mi, Sys=22.4Mi, NumGC=391"}
-{"@timestamp":"2022-09-09T16:39:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:39:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:40:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=176.4Mi, Sys=22.4Mi, NumGC=392"}
-{"@timestamp":"2022-09-09T16:40:28.928+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:40:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:41:28.862+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=176.6Mi, Sys=22.4Mi, NumGC=392"}
-{"@timestamp":"2022-09-09T16:41:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:41:39.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:42:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=176.8Mi, Sys=22.4Mi, NumGC=393"}
-{"@timestamp":"2022-09-09T16:42:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:42:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:43:28.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=177.0Mi, Sys=22.4Mi, NumGC=393"}
-{"@timestamp":"2022-09-09T16:43:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:43:39.461+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:44:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=177.2Mi, Sys=22.4Mi, NumGC=394"}
-{"@timestamp":"2022-09-09T16:44:28.927+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:44:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:45:28.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=177.5Mi, Sys=22.4Mi, NumGC=394"}
-{"@timestamp":"2022-09-09T16:45:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:45:39.462+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:46:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=177.7Mi, Sys=22.4Mi, NumGC=395"}
-{"@timestamp":"2022-09-09T16:46:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:46:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:47:28.862+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=177.9Mi, Sys=22.4Mi, NumGC=395"}
-{"@timestamp":"2022-09-09T16:47:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:47:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:48:28.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=178.1Mi, Sys=22.4Mi, NumGC=396"}
-{"@timestamp":"2022-09-09T16:48:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:48:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:49:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=178.3Mi, Sys=22.4Mi, NumGC=396"}
-{"@timestamp":"2022-09-09T16:49:28.926+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:49:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:50:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=178.5Mi, Sys=22.4Mi, NumGC=397"}
-{"@timestamp":"2022-09-09T16:50:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:50:39.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:51:28.858+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=178.8Mi, Sys=22.4Mi, NumGC=397"}
-{"@timestamp":"2022-09-09T16:51:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:51:39.466+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:52:28.865+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=179.0Mi, Sys=22.4Mi, NumGC=398"}
-{"@timestamp":"2022-09-09T16:52:28.928+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:52:39.466+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:53:28.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=179.2Mi, Sys=22.4Mi, NumGC=398"}
-{"@timestamp":"2022-09-09T16:53:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:53:39.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:54:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=179.4Mi, Sys=22.4Mi, NumGC=399"}
-{"@timestamp":"2022-09-09T16:54:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:54:39.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:55:28.862+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=179.6Mi, Sys=22.4Mi, NumGC=399"}
-{"@timestamp":"2022-09-09T16:55:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:55:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:56:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=179.8Mi, Sys=22.4Mi, NumGC=400"}
-{"@timestamp":"2022-09-09T16:56:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:56:39.466+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:57:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=180.0Mi, Sys=22.4Mi, NumGC=400"}
-{"@timestamp":"2022-09-09T16:57:28.927+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:57:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:58:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=180.3Mi, Sys=22.4Mi, NumGC=401"}
-{"@timestamp":"2022-09-09T16:58:28.934+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:58:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T16:59:28.862+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=180.5Mi, Sys=22.4Mi, NumGC=401"}
-{"@timestamp":"2022-09-09T16:59:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T16:59:39.462+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:00:28.856+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=180.7Mi, Sys=22.4Mi, NumGC=402"}
-{"@timestamp":"2022-09-09T17:00:28.920+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:00:39.464+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:01:28.862+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=180.9Mi, Sys=22.4Mi, NumGC=402"}
-{"@timestamp":"2022-09-09T17:01:28.926+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:01:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:02:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=181.1Mi, Sys=22.4Mi, NumGC=403"}
-{"@timestamp":"2022-09-09T17:02:28.935+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:02:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:03:28.865+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=181.3Mi, Sys=22.4Mi, NumGC=403"}
-{"@timestamp":"2022-09-09T17:03:28.926+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:03:39.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:04:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=181.6Mi, Sys=22.4Mi, NumGC=404"}
-{"@timestamp":"2022-09-09T17:04:28.921+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:04:39.464+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:05:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=181.8Mi, Sys=22.4Mi, NumGC=404"}
-{"@timestamp":"2022-09-09T17:05:28.926+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:05:39.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:06:28.862+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=182.0Mi, Sys=22.4Mi, NumGC=405"}
-{"@timestamp":"2022-09-09T17:06:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:06:39.466+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:07:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=182.2Mi, Sys=22.4Mi, NumGC=405"}
-{"@timestamp":"2022-09-09T17:07:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:07:39.463+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:08:28.863+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=182.4Mi, Sys=22.4Mi, NumGC=406"}
-{"@timestamp":"2022-09-09T17:08:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:08:39.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:09:28.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=182.6Mi, Sys=22.4Mi, NumGC=406"}
-{"@timestamp":"2022-09-09T17:09:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:09:39.459+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:10:28.854+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=182.9Mi, Sys=22.4Mi, NumGC=407"}
-{"@timestamp":"2022-09-09T17:10:28.932+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:10:39.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:11:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=183.1Mi, Sys=22.4Mi, NumGC=407"}
-{"@timestamp":"2022-09-09T17:11:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:11:39.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:12:28.863+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=183.3Mi, Sys=22.4Mi, NumGC=408"}
-{"@timestamp":"2022-09-09T17:12:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:12:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:13:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=183.5Mi, Sys=22.4Mi, NumGC=408"}
-{"@timestamp":"2022-09-09T17:13:28.921+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:13:39.461+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:14:28.865+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=183.7Mi, Sys=22.4Mi, NumGC=409"}
-{"@timestamp":"2022-09-09T17:14:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:14:39.462+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:15:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=183.9Mi, Sys=22.4Mi, NumGC=409"}
-{"@timestamp":"2022-09-09T17:15:28.932+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:15:39.464+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:16:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=184.2Mi, Sys=22.4Mi, NumGC=410"}
-{"@timestamp":"2022-09-09T17:16:28.930+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:16:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:17:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=184.4Mi, Sys=22.4Mi, NumGC=410"}
-{"@timestamp":"2022-09-09T17:17:28.932+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:17:39.462+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:18:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=184.6Mi, Sys=22.4Mi, NumGC=411"}
-{"@timestamp":"2022-09-09T17:18:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:18:39.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:19:28.856+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=184.8Mi, Sys=22.4Mi, NumGC=411"}
-{"@timestamp":"2022-09-09T17:19:28.935+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:19:39.462+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:20:28.863+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=185.0Mi, Sys=22.4Mi, NumGC=412"}
-{"@timestamp":"2022-09-09T17:20:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:20:39.461+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:21:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=185.2Mi, Sys=22.4Mi, NumGC=412"}
-{"@timestamp":"2022-09-09T17:21:28.920+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:21:39.462+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:22:28.869+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=185.5Mi, Sys=22.4Mi, NumGC=413"}
-{"@timestamp":"2022-09-09T17:22:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:22:39.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:23:28.862+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=185.7Mi, Sys=22.4Mi, NumGC=413"}
-{"@timestamp":"2022-09-09T17:23:28.924+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:23:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:24:28.862+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=185.9Mi, Sys=22.4Mi, NumGC=414"}
-{"@timestamp":"2022-09-09T17:24:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:24:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:25:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=186.1Mi, Sys=22.4Mi, NumGC=414"}
-{"@timestamp":"2022-09-09T17:25:28.935+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:25:39.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:26:28.862+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=186.3Mi, Sys=22.4Mi, NumGC=415"}
-{"@timestamp":"2022-09-09T17:26:28.925+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:26:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:27:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=186.5Mi, Sys=22.4Mi, NumGC=415"}
-{"@timestamp":"2022-09-09T17:27:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:27:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:28:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=186.7Mi, Sys=22.4Mi, NumGC=416"}
-{"@timestamp":"2022-09-09T17:28:28.922+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:28:39.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:29:28.863+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=187.0Mi, Sys=22.4Mi, NumGC=416"}
-{"@timestamp":"2022-09-09T17:29:28.926+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:29:39.462+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:30:28.866+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=187.2Mi, Sys=22.4Mi, NumGC=417"}
-{"@timestamp":"2022-09-09T17:30:28.929+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:30:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:31:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=187.4Mi, Sys=22.4Mi, NumGC=417"}
-{"@timestamp":"2022-09-09T17:31:28.934+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:31:39.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:32:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=187.6Mi, Sys=22.4Mi, NumGC=418"}
-{"@timestamp":"2022-09-09T17:32:28.926+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:32:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:33:28.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=187.8Mi, Sys=22.4Mi, NumGC=418"}
-{"@timestamp":"2022-09-09T17:33:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:33:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:34:28.868+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=188.0Mi, Sys=22.4Mi, NumGC=419"}
-{"@timestamp":"2022-09-09T17:34:28.930+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:34:39.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:35:28.859+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=188.3Mi, Sys=22.4Mi, NumGC=419"}
-{"@timestamp":"2022-09-09T17:35:28.921+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:35:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:36:28.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=188.5Mi, Sys=22.4Mi, NumGC=420"}
-{"@timestamp":"2022-09-09T17:36:28.930+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:36:39.460+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:37:28.863+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=188.7Mi, Sys=22.4Mi, NumGC=420"}
-{"@timestamp":"2022-09-09T17:37:28.926+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:37:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:38:28.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=188.9Mi, Sys=22.4Mi, NumGC=421"}
-{"@timestamp":"2022-09-09T17:38:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:38:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:39:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=189.1Mi, Sys=22.4Mi, NumGC=421"}
-{"@timestamp":"2022-09-09T17:39:28.933+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:39:39.466+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:40:28.855+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=189.3Mi, Sys=22.4Mi, NumGC=422"}
-{"@timestamp":"2022-09-09T17:40:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:40:39.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:41:28.869+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=189.6Mi, Sys=22.4Mi, NumGC=422"}
-{"@timestamp":"2022-09-09T17:41:28.931+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:41:39.465+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:42:28.864+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=189.8Mi, Sys=22.4Mi, NumGC=423"}
-{"@timestamp":"2022-09-09T17:42:28.927+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:42:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:43:28.860+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=190.0Mi, Sys=22.4Mi, NumGC=423"}
-{"@timestamp":"2022-09-09T17:43:28.923+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:43:39.464+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:44:28.865+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=190.2Mi, Sys=22.4Mi, NumGC=424"}
-{"@timestamp":"2022-09-09T17:44:28.927+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:44:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:45:28.857+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=190.4Mi, Sys=22.4Mi, NumGC=424"}
-{"@timestamp":"2022-09-09T17:45:28.920+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:45:39.462+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:46:28.856+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.8Mi, TotalAlloc=190.6Mi, Sys=22.4Mi, NumGC=425"}
-{"@timestamp":"2022-09-09T17:46:28.934+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:46:39.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-09T17:47:28.856+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=7.0Mi, TotalAlloc=190.8Mi, Sys=22.4Mi, NumGC=425"}
-{"@timestamp":"2022-09-09T17:47:28.934+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-09T17:47:39.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:19:23.132+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89461, reqs: 1"}
-{"@timestamp":"2022-09-13T09:19:36.097+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 72875, reqs: 1"}
-{"@timestamp":"2022-09-13T09:19:43.208+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=8.6Mi, Sys=17.5Mi, NumGC=4"}
-{"@timestamp":"2022-09-13T09:19:43.239+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-13T09:20:23.146+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.1/s, drops: 0, avg time: 6433.0ms, med: 8004.7ms, 90th: 8004.7ms, 99th: 8004.7ms, 99.9th: 8004.7ms"}
-{"@timestamp":"2022-09-13T09:20:43.198+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=9.0Mi, Sys=17.5Mi, NumGC=4"}
-{"@timestamp":"2022-09-13T09:20:43.245+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-13T09:21:06.047+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89503, reqs: 2"}
-{"@timestamp":"2022-09-13T09:21:23.143+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8014.0ms, med: 8014.1ms, 90th: 8014.1ms, 99th: 8014.1ms, 99.9th: 8014.1ms"}
-{"@timestamp":"2022-09-13T09:21:43.201+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=9.2Mi, Sys=17.5Mi, NumGC=5"}
-{"@timestamp":"2022-09-13T09:21:43.249+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:22:23.134+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:22:43.199+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=9.3Mi, Sys=17.5Mi, NumGC=5"}
-{"@timestamp":"2022-09-13T09:22:43.246+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:23:52.366+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89457, reqs: 1"}
-{"@timestamp":"2022-09-13T09:24:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=8.5Mi, Sys=18.0Mi, NumGC=4"}
-{"@timestamp":"2022-09-13T09:24:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:24:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8008.5ms, med: 8015.1ms, 90th: 8015.1ms, 99th: 8015.1ms, 99.9th: 8015.1ms"}
-{"@timestamp":"2022-09-13T09:25:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=8.7Mi, Sys=18.0Mi, NumGC=4"}
-{"@timestamp":"2022-09-13T09:25:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:25:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:26:09.441+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89500, reqs: 1"}
-{"@timestamp":"2022-09-13T09:26:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=9.3Mi, Sys=18.0Mi, NumGC=5"}
-{"@timestamp":"2022-09-13T09:26:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 3, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-13T09:26:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.1/s, drops: 0, avg time: 6096.0ms, med: 8014.6ms, 90th: 8014.6ms, 99th: 8014.6ms, 99.9th: 8014.6ms"}
-{"@timestamp":"2022-09-13T09:27:40.295+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=9.6Mi, Sys=18.0Mi, NumGC=5"}
-{"@timestamp":"2022-09-13T09:27:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:27:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:28:19.884+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 33039, reqs: 1"}
-{"@timestamp":"2022-09-13T09:28:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=9.9Mi, Sys=18.0Mi, NumGC=6"}
-{"@timestamp":"2022-09-13T09:28:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-13T09:28:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 1093.0ms, med: 1093.1ms, 90th: 1093.1ms, 99th: 1093.1ms, 99.9th: 1093.1ms"}
-{"@timestamp":"2022-09-13T09:29:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=10.1Mi, Sys=18.0Mi, NumGC=6"}
-{"@timestamp":"2022-09-13T09:29:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:29:52.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:30:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=10.2Mi, Sys=18.0Mi, NumGC=7"}
-{"@timestamp":"2022-09-13T09:30:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:30:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:31:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=10.3Mi, Sys=18.0Mi, NumGC=7"}
-{"@timestamp":"2022-09-13T09:31:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:31:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:32:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.4Mi, Sys=18.0Mi, NumGC=8"}
-{"@timestamp":"2022-09-13T09:32:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:32:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:33:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=10.6Mi, Sys=18.0Mi, NumGC=8"}
-{"@timestamp":"2022-09-13T09:33:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:33:52.381+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:34:40.293+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.7Mi, Sys=18.0Mi, NumGC=9"}
-{"@timestamp":"2022-09-13T09:34:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:34:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:35:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=10.8Mi, Sys=18.0Mi, NumGC=9"}
-{"@timestamp":"2022-09-13T09:35:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:35:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:36:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.9Mi, Sys=18.0Mi, NumGC=10"}
-{"@timestamp":"2022-09-13T09:36:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:36:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:37:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=11.0Mi, Sys=18.0Mi, NumGC=10"}
-{"@timestamp":"2022-09-13T09:37:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:37:52.381+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:38:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=11.1Mi, Sys=18.0Mi, NumGC=11"}
-{"@timestamp":"2022-09-13T09:38:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:38:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:39:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=11.2Mi, Sys=18.0Mi, NumGC=11"}
-{"@timestamp":"2022-09-13T09:39:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:39:52.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:40:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=11.4Mi, Sys=18.0Mi, NumGC=12"}
-{"@timestamp":"2022-09-13T09:40:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:40:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:41:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=11.6Mi, Sys=18.0Mi, NumGC=12"}
-{"@timestamp":"2022-09-13T09:41:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:41:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:42:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=11.7Mi, Sys=18.0Mi, NumGC=13"}
-{"@timestamp":"2022-09-13T09:42:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:42:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:43:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=11.9Mi, Sys=18.0Mi, NumGC=13"}
-{"@timestamp":"2022-09-13T09:43:40.346+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:43:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:44:40.295+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.0Mi, Sys=18.0Mi, NumGC=14"}
-{"@timestamp":"2022-09-13T09:44:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:44:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:45:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=12.1Mi, Sys=18.0Mi, NumGC=14"}
-{"@timestamp":"2022-09-13T09:45:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:45:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:46:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.2Mi, Sys=18.0Mi, NumGC=15"}
-{"@timestamp":"2022-09-13T09:46:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:46:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:47:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=12.3Mi, Sys=18.0Mi, NumGC=15"}
-{"@timestamp":"2022-09-13T09:47:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:47:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:48:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.4Mi, Sys=18.0Mi, NumGC=16"}
-{"@timestamp":"2022-09-13T09:48:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:48:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:49:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=12.5Mi, Sys=18.0Mi, NumGC=16"}
-{"@timestamp":"2022-09-13T09:49:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:49:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:50:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.7Mi, Sys=18.0Mi, NumGC=17"}
-{"@timestamp":"2022-09-13T09:50:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:50:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:51:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=12.8Mi, Sys=18.0Mi, NumGC=17"}
-{"@timestamp":"2022-09-13T09:51:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:51:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:52:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.9Mi, Sys=18.0Mi, NumGC=18"}
-{"@timestamp":"2022-09-13T09:52:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:52:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:53:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=13.0Mi, Sys=18.0Mi, NumGC=18"}
-{"@timestamp":"2022-09-13T09:53:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:53:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:54:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=13.1Mi, Sys=18.0Mi, NumGC=19"}
-{"@timestamp":"2022-09-13T09:54:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:54:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:55:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=13.3Mi, Sys=18.0Mi, NumGC=19"}
-{"@timestamp":"2022-09-13T09:55:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:55:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:56:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=13.4Mi, Sys=18.0Mi, NumGC=20"}
-{"@timestamp":"2022-09-13T09:56:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:56:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:57:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=13.7Mi, Sys=18.0Mi, NumGC=20"}
-{"@timestamp":"2022-09-13T09:57:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:57:52.376+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:58:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=13.8Mi, Sys=18.0Mi, NumGC=21"}
-{"@timestamp":"2022-09-13T09:58:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:58:52.382+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T09:59:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=13.9Mi, Sys=18.0Mi, NumGC=21"}
-{"@timestamp":"2022-09-13T09:59:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T09:59:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:00:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.0Mi, Sys=18.0Mi, NumGC=22"}
-{"@timestamp":"2022-09-13T10:00:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:00:52.381+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:01:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=14.1Mi, Sys=18.0Mi, NumGC=22"}
-{"@timestamp":"2022-09-13T10:01:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:01:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:02:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.2Mi, Sys=18.0Mi, NumGC=23"}
-{"@timestamp":"2022-09-13T10:02:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:02:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:03:40.295+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=14.3Mi, Sys=18.0Mi, NumGC=23"}
-{"@timestamp":"2022-09-13T10:03:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:03:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:04:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.5Mi, Sys=18.0Mi, NumGC=24"}
-{"@timestamp":"2022-09-13T10:04:40.346+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:04:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:05:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=14.6Mi, Sys=18.0Mi, NumGC=24"}
-{"@timestamp":"2022-09-13T10:05:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:05:52.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:06:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.7Mi, Sys=18.0Mi, NumGC=25"}
-{"@timestamp":"2022-09-13T10:06:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:06:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:07:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=14.8Mi, Sys=18.0Mi, NumGC=25"}
-{"@timestamp":"2022-09-13T10:07:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:07:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:08:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.9Mi, Sys=18.0Mi, NumGC=26"}
-{"@timestamp":"2022-09-13T10:08:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:08:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:09:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=15.0Mi, Sys=18.0Mi, NumGC=26"}
-{"@timestamp":"2022-09-13T10:09:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:09:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:10:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=15.1Mi, Sys=18.0Mi, NumGC=27"}
-{"@timestamp":"2022-09-13T10:10:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:10:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:11:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=15.3Mi, Sys=18.0Mi, NumGC=27"}
-{"@timestamp":"2022-09-13T10:11:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:11:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:12:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=15.4Mi, Sys=18.0Mi, NumGC=28"}
-{"@timestamp":"2022-09-13T10:12:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:12:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:13:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=15.5Mi, Sys=18.0Mi, NumGC=28"}
-{"@timestamp":"2022-09-13T10:13:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:13:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:14:40.295+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=15.6Mi, Sys=18.0Mi, NumGC=29"}
-{"@timestamp":"2022-09-13T10:14:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:14:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:15:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=15.7Mi, Sys=18.0Mi, NumGC=29"}
-{"@timestamp":"2022-09-13T10:15:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:15:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:16:40.295+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=15.8Mi, Sys=18.0Mi, NumGC=30"}
-{"@timestamp":"2022-09-13T10:16:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:16:52.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:17:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=16.0Mi, Sys=18.0Mi, NumGC=30"}
-{"@timestamp":"2022-09-13T10:17:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:17:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:18:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=16.1Mi, Sys=18.0Mi, NumGC=31"}
-{"@timestamp":"2022-09-13T10:18:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:18:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:19:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=16.2Mi, Sys=18.0Mi, NumGC=31"}
-{"@timestamp":"2022-09-13T10:19:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:19:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:20:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=16.3Mi, Sys=18.0Mi, NumGC=32"}
-{"@timestamp":"2022-09-13T10:20:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:20:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:21:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=16.4Mi, Sys=18.0Mi, NumGC=32"}
-{"@timestamp":"2022-09-13T10:21:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:21:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:22:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=16.5Mi, Sys=18.0Mi, NumGC=33"}
-{"@timestamp":"2022-09-13T10:22:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:22:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:23:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=16.6Mi, Sys=18.0Mi, NumGC=33"}
-{"@timestamp":"2022-09-13T10:23:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:23:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:24:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=16.8Mi, Sys=18.0Mi, NumGC=34"}
-{"@timestamp":"2022-09-13T10:24:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:24:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:25:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=16.9Mi, Sys=18.0Mi, NumGC=34"}
-{"@timestamp":"2022-09-13T10:25:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:25:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:26:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=17.0Mi, Sys=18.0Mi, NumGC=35"}
-{"@timestamp":"2022-09-13T10:26:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:26:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:27:40.295+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=17.1Mi, Sys=18.0Mi, NumGC=35"}
-{"@timestamp":"2022-09-13T10:27:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:27:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:28:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=17.2Mi, Sys=18.0Mi, NumGC=36"}
-{"@timestamp":"2022-09-13T10:28:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:28:52.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:29:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=17.3Mi, Sys=18.0Mi, NumGC=36"}
-{"@timestamp":"2022-09-13T10:29:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:29:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:30:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=17.4Mi, Sys=18.0Mi, NumGC=37"}
-{"@timestamp":"2022-09-13T10:30:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:30:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:31:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=17.6Mi, Sys=18.0Mi, NumGC=37"}
-{"@timestamp":"2022-09-13T10:31:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:31:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:32:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=17.7Mi, Sys=18.0Mi, NumGC=38"}
-{"@timestamp":"2022-09-13T10:32:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:32:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:33:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=17.8Mi, Sys=18.0Mi, NumGC=38"}
-{"@timestamp":"2022-09-13T10:33:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:33:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:34:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=17.9Mi, Sys=18.0Mi, NumGC=39"}
-{"@timestamp":"2022-09-13T10:34:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:34:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:35:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=18.0Mi, Sys=18.0Mi, NumGC=39"}
-{"@timestamp":"2022-09-13T10:35:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:35:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:36:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=18.1Mi, Sys=18.0Mi, NumGC=40"}
-{"@timestamp":"2022-09-13T10:36:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:36:52.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:37:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=18.2Mi, Sys=18.0Mi, NumGC=40"}
-{"@timestamp":"2022-09-13T10:37:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:37:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:38:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=18.4Mi, Sys=18.0Mi, NumGC=41"}
-{"@timestamp":"2022-09-13T10:38:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:38:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:39:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=18.5Mi, Sys=18.0Mi, NumGC=41"}
-{"@timestamp":"2022-09-13T10:39:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:39:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:40:40.293+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=18.6Mi, Sys=18.0Mi, NumGC=42"}
-{"@timestamp":"2022-09-13T10:40:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:40:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:41:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=18.7Mi, Sys=18.0Mi, NumGC=42"}
-{"@timestamp":"2022-09-13T10:41:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:41:52.381+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:42:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=18.8Mi, Sys=18.0Mi, NumGC=43"}
-{"@timestamp":"2022-09-13T10:42:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:42:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:43:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=18.9Mi, Sys=18.0Mi, NumGC=43"}
-{"@timestamp":"2022-09-13T10:43:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:43:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:44:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=19.1Mi, Sys=18.0Mi, NumGC=44"}
-{"@timestamp":"2022-09-13T10:44:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:44:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:45:40.295+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=19.2Mi, Sys=18.0Mi, NumGC=44"}
-{"@timestamp":"2022-09-13T10:45:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:45:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:46:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=19.3Mi, Sys=18.0Mi, NumGC=45"}
-{"@timestamp":"2022-09-13T10:46:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:46:52.376+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:47:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=19.4Mi, Sys=18.0Mi, NumGC=45"}
-{"@timestamp":"2022-09-13T10:47:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:47:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:48:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=19.5Mi, Sys=18.0Mi, NumGC=46"}
-{"@timestamp":"2022-09-13T10:48:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:48:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:49:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=19.6Mi, Sys=18.0Mi, NumGC=46"}
-{"@timestamp":"2022-09-13T10:49:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:49:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:50:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=19.7Mi, Sys=18.0Mi, NumGC=47"}
-{"@timestamp":"2022-09-13T10:50:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:50:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:51:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=19.9Mi, Sys=18.0Mi, NumGC=47"}
-{"@timestamp":"2022-09-13T10:51:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:51:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:52:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=20.0Mi, Sys=18.0Mi, NumGC=48"}
-{"@timestamp":"2022-09-13T10:52:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:52:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:53:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=20.1Mi, Sys=18.0Mi, NumGC=48"}
-{"@timestamp":"2022-09-13T10:53:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:53:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:54:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=20.2Mi, Sys=18.0Mi, NumGC=49"}
-{"@timestamp":"2022-09-13T10:54:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:54:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:55:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=20.3Mi, Sys=18.0Mi, NumGC=49"}
-{"@timestamp":"2022-09-13T10:55:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:55:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:56:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=20.4Mi, Sys=18.0Mi, NumGC=50"}
-{"@timestamp":"2022-09-13T10:56:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:56:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:57:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=20.5Mi, Sys=18.0Mi, NumGC=50"}
-{"@timestamp":"2022-09-13T10:57:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:57:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:58:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=20.7Mi, Sys=18.0Mi, NumGC=51"}
-{"@timestamp":"2022-09-13T10:58:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:58:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T10:59:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=20.8Mi, Sys=18.0Mi, NumGC=51"}
-{"@timestamp":"2022-09-13T10:59:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T10:59:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:00:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=20.9Mi, Sys=18.0Mi, NumGC=52"}
-{"@timestamp":"2022-09-13T11:00:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:00:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:01:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=21.0Mi, Sys=18.0Mi, NumGC=52"}
-{"@timestamp":"2022-09-13T11:01:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:01:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:02:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=21.1Mi, Sys=18.0Mi, NumGC=53"}
-{"@timestamp":"2022-09-13T11:02:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:02:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:03:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=21.2Mi, Sys=18.0Mi, NumGC=53"}
-{"@timestamp":"2022-09-13T11:03:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:03:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:04:40.295+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=21.3Mi, Sys=18.0Mi, NumGC=54"}
-{"@timestamp":"2022-09-13T11:04:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:04:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:05:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=21.5Mi, Sys=18.0Mi, NumGC=54"}
-{"@timestamp":"2022-09-13T11:05:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:05:52.376+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:06:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=21.6Mi, Sys=18.0Mi, NumGC=55"}
-{"@timestamp":"2022-09-13T11:06:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:06:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:07:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=21.7Mi, Sys=18.0Mi, NumGC=55"}
-{"@timestamp":"2022-09-13T11:07:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:07:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:08:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=21.8Mi, Sys=18.0Mi, NumGC=56"}
-{"@timestamp":"2022-09-13T11:08:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:08:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:09:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=21.9Mi, Sys=18.0Mi, NumGC=56"}
-{"@timestamp":"2022-09-13T11:09:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:09:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:10:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=22.0Mi, Sys=18.0Mi, NumGC=57"}
-{"@timestamp":"2022-09-13T11:10:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:10:52.381+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:11:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=22.1Mi, Sys=18.0Mi, NumGC=57"}
-{"@timestamp":"2022-09-13T11:11:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:11:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:12:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=22.3Mi, Sys=18.0Mi, NumGC=58"}
-{"@timestamp":"2022-09-13T11:12:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:12:52.376+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:13:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=22.4Mi, Sys=18.0Mi, NumGC=58"}
-{"@timestamp":"2022-09-13T11:13:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:13:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:14:40.295+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=22.5Mi, Sys=18.0Mi, NumGC=59"}
-{"@timestamp":"2022-09-13T11:14:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:14:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:15:40.309+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=22.6Mi, Sys=18.0Mi, NumGC=59"}
-{"@timestamp":"2022-09-13T11:15:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:15:52.376+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:16:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=22.7Mi, Sys=18.0Mi, NumGC=60"}
-{"@timestamp":"2022-09-13T11:16:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:16:52.381+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:17:40.295+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=22.8Mi, Sys=18.0Mi, NumGC=60"}
-{"@timestamp":"2022-09-13T11:17:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:17:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:18:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=22.9Mi, Sys=18.0Mi, NumGC=61"}
-{"@timestamp":"2022-09-13T11:18:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:18:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:19:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=23.1Mi, Sys=18.0Mi, NumGC=61"}
-{"@timestamp":"2022-09-13T11:19:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:19:52.376+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:20:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=23.2Mi, Sys=18.0Mi, NumGC=62"}
-{"@timestamp":"2022-09-13T11:20:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:20:52.382+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:21:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=23.3Mi, Sys=18.0Mi, NumGC=62"}
-{"@timestamp":"2022-09-13T11:21:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:21:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:22:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=23.4Mi, Sys=18.0Mi, NumGC=63"}
-{"@timestamp":"2022-09-13T11:22:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:22:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:23:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=23.5Mi, Sys=18.0Mi, NumGC=63"}
-{"@timestamp":"2022-09-13T11:23:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:23:52.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:24:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=23.6Mi, Sys=18.0Mi, NumGC=64"}
-{"@timestamp":"2022-09-13T11:24:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:24:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:25:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=23.7Mi, Sys=18.0Mi, NumGC=64"}
-{"@timestamp":"2022-09-13T11:25:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:25:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:26:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=23.9Mi, Sys=18.0Mi, NumGC=65"}
-{"@timestamp":"2022-09-13T11:26:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:26:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:27:40.293+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=24.0Mi, Sys=18.0Mi, NumGC=65"}
-{"@timestamp":"2022-09-13T11:27:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:27:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:28:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=24.1Mi, Sys=18.0Mi, NumGC=66"}
-{"@timestamp":"2022-09-13T11:28:40.330+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:28:52.376+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:29:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=24.2Mi, Sys=18.0Mi, NumGC=66"}
-{"@timestamp":"2022-09-13T11:29:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:29:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:30:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=24.3Mi, Sys=18.0Mi, NumGC=67"}
-{"@timestamp":"2022-09-13T11:30:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:30:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:31:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=24.4Mi, Sys=18.0Mi, NumGC=67"}
-{"@timestamp":"2022-09-13T11:31:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:31:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:32:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=24.5Mi, Sys=18.0Mi, NumGC=68"}
-{"@timestamp":"2022-09-13T11:32:40.346+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:32:52.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:33:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=24.7Mi, Sys=18.0Mi, NumGC=68"}
-{"@timestamp":"2022-09-13T11:33:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:33:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:34:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=24.8Mi, Sys=18.0Mi, NumGC=69"}
-{"@timestamp":"2022-09-13T11:34:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:34:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:35:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=24.9Mi, Sys=18.0Mi, NumGC=69"}
-{"@timestamp":"2022-09-13T11:35:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:35:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:36:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=25.0Mi, Sys=18.0Mi, NumGC=70"}
-{"@timestamp":"2022-09-13T11:36:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:36:52.381+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:37:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=25.1Mi, Sys=18.0Mi, NumGC=70"}
-{"@timestamp":"2022-09-13T11:37:40.346+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:37:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:38:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=25.2Mi, Sys=18.0Mi, NumGC=71"}
-{"@timestamp":"2022-09-13T11:38:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:38:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:39:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=25.3Mi, Sys=18.0Mi, NumGC=71"}
-{"@timestamp":"2022-09-13T11:39:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:39:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:40:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=25.4Mi, Sys=18.0Mi, NumGC=72"}
-{"@timestamp":"2022-09-13T11:40:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:40:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:41:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=25.6Mi, Sys=18.0Mi, NumGC=72"}
-{"@timestamp":"2022-09-13T11:41:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:41:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:42:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=25.7Mi, Sys=18.0Mi, NumGC=73"}
-{"@timestamp":"2022-09-13T11:42:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:42:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:43:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=25.8Mi, Sys=18.0Mi, NumGC=73"}
-{"@timestamp":"2022-09-13T11:43:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:43:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:44:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=25.9Mi, Sys=18.0Mi, NumGC=74"}
-{"@timestamp":"2022-09-13T11:44:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:44:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:45:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=26.0Mi, Sys=18.0Mi, NumGC=74"}
-{"@timestamp":"2022-09-13T11:45:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:45:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:46:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=26.1Mi, Sys=18.0Mi, NumGC=75"}
-{"@timestamp":"2022-09-13T11:46:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:46:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:47:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=26.2Mi, Sys=18.0Mi, NumGC=75"}
-{"@timestamp":"2022-09-13T11:47:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:47:52.381+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:48:40.293+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=26.4Mi, Sys=18.0Mi, NumGC=76"}
-{"@timestamp":"2022-09-13T11:48:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:48:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:49:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=26.5Mi, Sys=18.0Mi, NumGC=76"}
-{"@timestamp":"2022-09-13T11:49:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:49:52.382+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:50:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=26.6Mi, Sys=18.0Mi, NumGC=77"}
-{"@timestamp":"2022-09-13T11:50:40.346+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:50:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:51:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=26.7Mi, Sys=18.0Mi, NumGC=77"}
-{"@timestamp":"2022-09-13T11:51:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:51:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:52:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=26.8Mi, Sys=18.0Mi, NumGC=78"}
-{"@timestamp":"2022-09-13T11:52:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:52:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:53:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=26.9Mi, Sys=18.0Mi, NumGC=78"}
-{"@timestamp":"2022-09-13T11:53:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:53:52.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:54:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=27.0Mi, Sys=18.0Mi, NumGC=79"}
-{"@timestamp":"2022-09-13T11:54:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:54:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:55:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=27.2Mi, Sys=18.0Mi, NumGC=79"}
-{"@timestamp":"2022-09-13T11:55:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:55:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:56:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=27.3Mi, Sys=18.0Mi, NumGC=80"}
-{"@timestamp":"2022-09-13T11:56:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:56:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:57:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=27.4Mi, Sys=18.0Mi, NumGC=80"}
-{"@timestamp":"2022-09-13T11:57:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:57:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:58:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=27.5Mi, Sys=18.0Mi, NumGC=81"}
-{"@timestamp":"2022-09-13T11:58:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:58:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T11:59:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=27.6Mi, Sys=18.0Mi, NumGC=81"}
-{"@timestamp":"2022-09-13T11:59:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T11:59:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:00:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=27.7Mi, Sys=18.0Mi, NumGC=82"}
-{"@timestamp":"2022-09-13T12:00:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:00:52.376+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:01:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=27.8Mi, Sys=18.0Mi, NumGC=82"}
-{"@timestamp":"2022-09-13T12:01:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:01:52.376+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:02:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=27.9Mi, Sys=18.0Mi, NumGC=83"}
-{"@timestamp":"2022-09-13T12:02:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:02:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:03:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=28.1Mi, Sys=18.0Mi, NumGC=83"}
-{"@timestamp":"2022-09-13T12:03:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:03:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:04:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=28.2Mi, Sys=18.0Mi, NumGC=84"}
-{"@timestamp":"2022-09-13T12:04:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:04:52.376+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:05:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=28.3Mi, Sys=18.0Mi, NumGC=84"}
-{"@timestamp":"2022-09-13T12:05:40.330+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:05:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:06:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=28.4Mi, Sys=18.0Mi, NumGC=85"}
-{"@timestamp":"2022-09-13T12:06:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:06:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:07:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=28.5Mi, Sys=18.0Mi, NumGC=85"}
-{"@timestamp":"2022-09-13T12:07:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:07:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:08:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=28.6Mi, Sys=18.0Mi, NumGC=86"}
-{"@timestamp":"2022-09-13T12:08:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:08:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:09:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=28.7Mi, Sys=18.0Mi, NumGC=86"}
-{"@timestamp":"2022-09-13T12:09:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:09:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:10:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=28.9Mi, Sys=18.0Mi, NumGC=87"}
-{"@timestamp":"2022-09-13T12:10:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:10:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:11:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=29.0Mi, Sys=18.0Mi, NumGC=87"}
-{"@timestamp":"2022-09-13T12:11:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:11:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:12:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=29.1Mi, Sys=18.0Mi, NumGC=88"}
-{"@timestamp":"2022-09-13T12:12:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:12:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:13:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=29.2Mi, Sys=18.0Mi, NumGC=88"}
-{"@timestamp":"2022-09-13T12:13:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:13:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:14:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=29.3Mi, Sys=18.0Mi, NumGC=89"}
-{"@timestamp":"2022-09-13T12:14:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:14:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:15:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=29.4Mi, Sys=18.0Mi, NumGC=89"}
-{"@timestamp":"2022-09-13T12:15:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:15:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:16:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=29.5Mi, Sys=18.0Mi, NumGC=90"}
-{"@timestamp":"2022-09-13T12:16:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:16:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:17:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=29.7Mi, Sys=18.0Mi, NumGC=90"}
-{"@timestamp":"2022-09-13T12:17:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:17:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:18:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=29.8Mi, Sys=18.0Mi, NumGC=91"}
-{"@timestamp":"2022-09-13T12:18:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:18:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:19:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=29.9Mi, Sys=18.0Mi, NumGC=91"}
-{"@timestamp":"2022-09-13T12:19:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:19:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:20:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=30.0Mi, Sys=18.0Mi, NumGC=92"}
-{"@timestamp":"2022-09-13T12:20:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:20:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:21:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=30.1Mi, Sys=18.0Mi, NumGC=92"}
-{"@timestamp":"2022-09-13T12:21:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:21:52.381+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:22:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=30.2Mi, Sys=18.0Mi, NumGC=93"}
-{"@timestamp":"2022-09-13T12:22:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:22:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:23:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=30.4Mi, Sys=18.0Mi, NumGC=93"}
-{"@timestamp":"2022-09-13T12:23:40.330+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:23:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:24:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=30.5Mi, Sys=18.0Mi, NumGC=94"}
-{"@timestamp":"2022-09-13T12:24:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:24:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:25:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=30.6Mi, Sys=18.0Mi, NumGC=94"}
-{"@timestamp":"2022-09-13T12:25:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:25:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:26:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=30.7Mi, Sys=18.0Mi, NumGC=95"}
-{"@timestamp":"2022-09-13T12:26:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:26:52.376+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:27:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=30.8Mi, Sys=18.0Mi, NumGC=95"}
-{"@timestamp":"2022-09-13T12:27:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:27:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:28:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=30.9Mi, Sys=18.0Mi, NumGC=96"}
-{"@timestamp":"2022-09-13T12:28:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:28:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:29:40.295+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=31.0Mi, Sys=18.0Mi, NumGC=96"}
-{"@timestamp":"2022-09-13T12:29:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:29:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:30:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=31.2Mi, Sys=18.0Mi, NumGC=97"}
-{"@timestamp":"2022-09-13T12:30:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:30:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:31:40.293+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=31.3Mi, Sys=18.0Mi, NumGC=97"}
-{"@timestamp":"2022-09-13T12:31:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:31:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:32:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=31.4Mi, Sys=18.0Mi, NumGC=98"}
-{"@timestamp":"2022-09-13T12:32:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:32:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:33:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=31.5Mi, Sys=18.0Mi, NumGC=98"}
-{"@timestamp":"2022-09-13T12:33:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:33:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:34:40.295+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=31.6Mi, Sys=18.0Mi, NumGC=99"}
-{"@timestamp":"2022-09-13T12:34:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:34:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:35:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=31.7Mi, Sys=18.0Mi, NumGC=99"}
-{"@timestamp":"2022-09-13T12:35:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:35:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:36:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=31.8Mi, Sys=18.0Mi, NumGC=100"}
-{"@timestamp":"2022-09-13T12:36:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:36:52.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:37:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=32.0Mi, Sys=18.0Mi, NumGC=100"}
-{"@timestamp":"2022-09-13T12:37:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:37:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:38:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=32.1Mi, Sys=18.0Mi, NumGC=101"}
-{"@timestamp":"2022-09-13T12:38:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:38:52.376+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:39:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=32.2Mi, Sys=18.0Mi, NumGC=101"}
-{"@timestamp":"2022-09-13T12:39:40.330+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:39:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:40:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=32.3Mi, Sys=18.0Mi, NumGC=102"}
-{"@timestamp":"2022-09-13T12:40:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:40:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:41:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=32.4Mi, Sys=18.0Mi, NumGC=102"}
-{"@timestamp":"2022-09-13T12:41:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:41:52.381+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:42:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=32.5Mi, Sys=18.0Mi, NumGC=103"}
-{"@timestamp":"2022-09-13T12:42:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:42:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:43:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=32.6Mi, Sys=18.0Mi, NumGC=103"}
-{"@timestamp":"2022-09-13T12:43:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:43:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:44:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=32.8Mi, Sys=18.0Mi, NumGC=104"}
-{"@timestamp":"2022-09-13T12:44:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:44:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:45:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=32.9Mi, Sys=18.0Mi, NumGC=104"}
-{"@timestamp":"2022-09-13T12:45:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:45:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:46:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=33.0Mi, Sys=18.0Mi, NumGC=105"}
-{"@timestamp":"2022-09-13T12:46:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:46:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:47:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=33.1Mi, Sys=18.0Mi, NumGC=105"}
-{"@timestamp":"2022-09-13T12:47:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:47:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:48:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=33.2Mi, Sys=18.0Mi, NumGC=106"}
-{"@timestamp":"2022-09-13T12:48:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:48:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:49:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=33.3Mi, Sys=18.0Mi, NumGC=106"}
-{"@timestamp":"2022-09-13T12:49:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:49:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:50:40.295+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=33.4Mi, Sys=18.0Mi, NumGC=107"}
-{"@timestamp":"2022-09-13T12:50:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:50:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:51:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=33.6Mi, Sys=18.0Mi, NumGC=107"}
-{"@timestamp":"2022-09-13T12:51:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:51:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:52:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=33.7Mi, Sys=18.0Mi, NumGC=108"}
-{"@timestamp":"2022-09-13T12:52:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:52:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:53:40.293+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=33.8Mi, Sys=18.0Mi, NumGC=108"}
-{"@timestamp":"2022-09-13T12:53:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:53:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:54:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=33.9Mi, Sys=18.0Mi, NumGC=109"}
-{"@timestamp":"2022-09-13T12:54:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:54:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:55:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=34.0Mi, Sys=18.0Mi, NumGC=109"}
-{"@timestamp":"2022-09-13T12:55:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:55:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:56:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=34.1Mi, Sys=18.0Mi, NumGC=110"}
-{"@timestamp":"2022-09-13T12:56:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:56:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:57:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=34.3Mi, Sys=18.0Mi, NumGC=110"}
-{"@timestamp":"2022-09-13T12:57:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:57:52.381+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:58:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=34.4Mi, Sys=18.0Mi, NumGC=111"}
-{"@timestamp":"2022-09-13T12:58:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:58:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T12:59:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=34.5Mi, Sys=18.0Mi, NumGC=111"}
-{"@timestamp":"2022-09-13T12:59:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T12:59:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:00:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=34.6Mi, Sys=18.0Mi, NumGC=112"}
-{"@timestamp":"2022-09-13T13:00:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:00:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:01:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=34.7Mi, Sys=18.0Mi, NumGC=112"}
-{"@timestamp":"2022-09-13T13:01:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:01:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:02:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=34.8Mi, Sys=18.0Mi, NumGC=113"}
-{"@timestamp":"2022-09-13T13:02:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:02:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:03:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=34.9Mi, Sys=18.0Mi, NumGC=113"}
-{"@timestamp":"2022-09-13T13:03:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:03:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:04:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=35.1Mi, Sys=18.0Mi, NumGC=114"}
-{"@timestamp":"2022-09-13T13:04:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:04:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:05:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=35.2Mi, Sys=18.0Mi, NumGC=114"}
-{"@timestamp":"2022-09-13T13:05:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:05:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:06:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=35.3Mi, Sys=18.0Mi, NumGC=115"}
-{"@timestamp":"2022-09-13T13:06:40.346+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:06:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:07:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=35.4Mi, Sys=18.0Mi, NumGC=115"}
-{"@timestamp":"2022-09-13T13:07:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:07:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:08:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=35.5Mi, Sys=18.0Mi, NumGC=116"}
-{"@timestamp":"2022-09-13T13:08:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:08:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:09:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=35.6Mi, Sys=18.0Mi, NumGC=116"}
-{"@timestamp":"2022-09-13T13:09:40.330+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:09:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:10:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=35.7Mi, Sys=18.0Mi, NumGC=117"}
-{"@timestamp":"2022-09-13T13:10:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:10:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:11:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=35.9Mi, Sys=18.0Mi, NumGC=117"}
-{"@timestamp":"2022-09-13T13:11:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:11:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:12:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=36.0Mi, Sys=18.0Mi, NumGC=118"}
-{"@timestamp":"2022-09-13T13:12:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:12:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:13:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=36.1Mi, Sys=18.0Mi, NumGC=118"}
-{"@timestamp":"2022-09-13T13:13:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:13:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:14:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=36.2Mi, Sys=18.0Mi, NumGC=119"}
-{"@timestamp":"2022-09-13T13:14:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:14:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:15:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=36.3Mi, Sys=18.0Mi, NumGC=119"}
-{"@timestamp":"2022-09-13T13:15:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:15:52.381+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:16:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=36.4Mi, Sys=18.0Mi, NumGC=120"}
-{"@timestamp":"2022-09-13T13:16:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:16:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:17:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=36.5Mi, Sys=18.0Mi, NumGC=120"}
-{"@timestamp":"2022-09-13T13:17:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:17:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:18:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=36.7Mi, Sys=18.0Mi, NumGC=121"}
-{"@timestamp":"2022-09-13T13:18:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:18:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:19:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=36.8Mi, Sys=18.0Mi, NumGC=121"}
-{"@timestamp":"2022-09-13T13:19:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:19:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:20:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=36.9Mi, Sys=18.0Mi, NumGC=122"}
-{"@timestamp":"2022-09-13T13:20:40.330+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:20:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:21:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=37.0Mi, Sys=18.0Mi, NumGC=122"}
-{"@timestamp":"2022-09-13T13:21:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:21:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:22:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=37.1Mi, Sys=18.0Mi, NumGC=123"}
-{"@timestamp":"2022-09-13T13:22:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:22:52.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:23:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=37.2Mi, Sys=18.0Mi, NumGC=123"}
-{"@timestamp":"2022-09-13T13:23:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:23:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:24:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=37.4Mi, Sys=18.0Mi, NumGC=124"}
-{"@timestamp":"2022-09-13T13:24:40.346+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:24:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:25:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=37.5Mi, Sys=18.0Mi, NumGC=124"}
-{"@timestamp":"2022-09-13T13:25:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:25:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:26:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=37.6Mi, Sys=18.0Mi, NumGC=125"}
-{"@timestamp":"2022-09-13T13:26:40.346+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:26:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:27:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=37.7Mi, Sys=18.0Mi, NumGC=125"}
-{"@timestamp":"2022-09-13T13:27:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:27:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:28:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=37.8Mi, Sys=18.0Mi, NumGC=126"}
-{"@timestamp":"2022-09-13T13:28:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:28:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:29:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=37.9Mi, Sys=18.0Mi, NumGC=126"}
-{"@timestamp":"2022-09-13T13:29:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:29:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:30:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=38.0Mi, Sys=18.0Mi, NumGC=127"}
-{"@timestamp":"2022-09-13T13:30:40.346+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:30:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:31:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=38.2Mi, Sys=18.0Mi, NumGC=127"}
-{"@timestamp":"2022-09-13T13:31:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:31:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:32:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=38.3Mi, Sys=18.0Mi, NumGC=128"}
-{"@timestamp":"2022-09-13T13:32:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:32:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:33:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=38.4Mi, Sys=18.0Mi, NumGC=128"}
-{"@timestamp":"2022-09-13T13:33:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:33:52.376+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:34:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=38.5Mi, Sys=18.0Mi, NumGC=129"}
-{"@timestamp":"2022-09-13T13:34:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:34:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:35:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=38.6Mi, Sys=18.0Mi, NumGC=129"}
-{"@timestamp":"2022-09-13T13:35:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:35:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:36:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=38.7Mi, Sys=18.0Mi, NumGC=130"}
-{"@timestamp":"2022-09-13T13:36:40.346+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:36:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:37:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=38.8Mi, Sys=18.0Mi, NumGC=130"}
-{"@timestamp":"2022-09-13T13:37:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:37:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:38:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=38.9Mi, Sys=18.0Mi, NumGC=131"}
-{"@timestamp":"2022-09-13T13:38:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:38:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:39:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=39.1Mi, Sys=18.0Mi, NumGC=131"}
-{"@timestamp":"2022-09-13T13:39:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:39:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:40:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=39.2Mi, Sys=18.0Mi, NumGC=132"}
-{"@timestamp":"2022-09-13T13:40:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:40:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:41:40.293+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=39.3Mi, Sys=18.0Mi, NumGC=132"}
-{"@timestamp":"2022-09-13T13:41:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:41:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:42:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=39.4Mi, Sys=18.0Mi, NumGC=133"}
-{"@timestamp":"2022-09-13T13:42:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:42:52.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:43:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=39.5Mi, Sys=18.0Mi, NumGC=133"}
-{"@timestamp":"2022-09-13T13:43:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:43:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:44:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=39.6Mi, Sys=18.0Mi, NumGC=134"}
-{"@timestamp":"2022-09-13T13:44:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:44:52.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:45:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=39.7Mi, Sys=18.0Mi, NumGC=134"}
-{"@timestamp":"2022-09-13T13:45:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:45:52.381+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:46:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=39.9Mi, Sys=18.0Mi, NumGC=135"}
-{"@timestamp":"2022-09-13T13:46:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:46:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:47:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=40.0Mi, Sys=18.0Mi, NumGC=135"}
-{"@timestamp":"2022-09-13T13:47:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:47:52.376+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:48:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=40.1Mi, Sys=18.0Mi, NumGC=136"}
-{"@timestamp":"2022-09-13T13:48:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:48:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:49:40.309+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=40.2Mi, Sys=18.0Mi, NumGC=136"}
-{"@timestamp":"2022-09-13T13:49:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:49:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:50:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=40.3Mi, Sys=18.0Mi, NumGC=137"}
-{"@timestamp":"2022-09-13T13:50:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:50:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:51:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=40.4Mi, Sys=18.0Mi, NumGC=137"}
-{"@timestamp":"2022-09-13T13:51:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:51:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:52:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=40.5Mi, Sys=18.0Mi, NumGC=138"}
-{"@timestamp":"2022-09-13T13:52:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:52:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:53:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=40.7Mi, Sys=18.0Mi, NumGC=138"}
-{"@timestamp":"2022-09-13T13:53:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:53:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:54:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=40.8Mi, Sys=18.0Mi, NumGC=139"}
-{"@timestamp":"2022-09-13T13:54:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:54:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:55:40.313+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=40.9Mi, Sys=18.0Mi, NumGC=139"}
-{"@timestamp":"2022-09-13T13:55:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:55:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:56:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=41.0Mi, Sys=18.0Mi, NumGC=140"}
-{"@timestamp":"2022-09-13T13:56:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:56:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:57:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=41.1Mi, Sys=18.0Mi, NumGC=140"}
-{"@timestamp":"2022-09-13T13:57:40.402+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:57:52.397+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:58:40.409+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=41.2Mi, Sys=18.0Mi, NumGC=141"}
-{"@timestamp":"2022-09-13T13:58:40.483+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:58:52.401+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T13:59:40.381+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=41.3Mi, Sys=18.0Mi, NumGC=141"}
-{"@timestamp":"2022-09-13T13:59:40.410+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T13:59:52.385+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:00:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=41.4Mi, Sys=18.0Mi, NumGC=142"}
-{"@timestamp":"2022-09-13T14:00:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:00:52.406+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:01:40.404+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=41.6Mi, Sys=18.0Mi, NumGC=142"}
-{"@timestamp":"2022-09-13T14:01:40.452+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:01:52.421+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:02:41.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=41.7Mi, Sys=18.0Mi, NumGC=143"}
-{"@timestamp":"2022-09-13T14:02:41.528+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:02:52.405+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:03:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=41.8Mi, Sys=18.0Mi, NumGC=143"}
-{"@timestamp":"2022-09-13T14:03:40.330+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:03:52.381+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:04:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=41.9Mi, Sys=18.0Mi, NumGC=144"}
-{"@timestamp":"2022-09-13T14:04:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:04:52.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:05:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=42.0Mi, Sys=18.0Mi, NumGC=144"}
-{"@timestamp":"2022-09-13T14:05:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:05:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:06:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=42.1Mi, Sys=18.0Mi, NumGC=145"}
-{"@timestamp":"2022-09-13T14:06:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:06:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:07:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=42.2Mi, Sys=18.0Mi, NumGC=145"}
-{"@timestamp":"2022-09-13T14:07:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:07:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:08:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=42.3Mi, Sys=18.0Mi, NumGC=146"}
-{"@timestamp":"2022-09-13T14:08:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:08:52.385+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:09:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=42.5Mi, Sys=18.0Mi, NumGC=146"}
-{"@timestamp":"2022-09-13T14:09:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:09:52.381+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:10:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=42.6Mi, Sys=18.0Mi, NumGC=147"}
-{"@timestamp":"2022-09-13T14:10:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:10:52.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:11:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=42.7Mi, Sys=18.0Mi, NumGC=147"}
-{"@timestamp":"2022-09-13T14:11:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:11:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:12:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=42.8Mi, Sys=18.0Mi, NumGC=148"}
-{"@timestamp":"2022-09-13T14:12:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:12:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:13:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=42.9Mi, Sys=18.0Mi, NumGC=148"}
-{"@timestamp":"2022-09-13T14:13:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:13:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:14:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=43.0Mi, Sys=18.0Mi, NumGC=149"}
-{"@timestamp":"2022-09-13T14:14:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:14:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:15:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=43.1Mi, Sys=18.0Mi, NumGC=149"}
-{"@timestamp":"2022-09-13T14:15:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:15:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:16:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=43.3Mi, Sys=18.0Mi, NumGC=150"}
-{"@timestamp":"2022-09-13T14:16:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:16:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:17:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=43.4Mi, Sys=18.0Mi, NumGC=150"}
-{"@timestamp":"2022-09-13T14:17:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:17:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:18:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=43.5Mi, Sys=18.0Mi, NumGC=151"}
-{"@timestamp":"2022-09-13T14:18:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:18:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:19:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=43.6Mi, Sys=18.0Mi, NumGC=151"}
-{"@timestamp":"2022-09-13T14:19:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:19:52.702+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:20:40.335+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=43.7Mi, Sys=18.0Mi, NumGC=152"}
-{"@timestamp":"2022-09-13T14:20:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:20:53.035+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:21:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=43.8Mi, Sys=18.0Mi, NumGC=152"}
-{"@timestamp":"2022-09-13T14:21:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:21:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:22:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=43.9Mi, Sys=18.0Mi, NumGC=153"}
-{"@timestamp":"2022-09-13T14:22:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:22:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:23:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=44.1Mi, Sys=18.0Mi, NumGC=153"}
-{"@timestamp":"2022-09-13T14:23:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:23:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:24:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=44.2Mi, Sys=18.0Mi, NumGC=154"}
-{"@timestamp":"2022-09-13T14:24:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:24:52.381+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:25:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=44.3Mi, Sys=18.0Mi, NumGC=154"}
-{"@timestamp":"2022-09-13T14:25:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:25:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:26:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=44.4Mi, Sys=18.0Mi, NumGC=155"}
-{"@timestamp":"2022-09-13T14:26:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:26:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:27:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=44.5Mi, Sys=18.0Mi, NumGC=155"}
-{"@timestamp":"2022-09-13T14:27:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:27:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:28:40.293+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=44.6Mi, Sys=18.0Mi, NumGC=156"}
-{"@timestamp":"2022-09-13T14:28:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:28:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:29:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=44.7Mi, Sys=18.0Mi, NumGC=156"}
-{"@timestamp":"2022-09-13T14:29:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:29:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:30:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=44.9Mi, Sys=18.0Mi, NumGC=157"}
-{"@timestamp":"2022-09-13T14:30:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:30:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:31:40.293+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=45.0Mi, Sys=18.0Mi, NumGC=157"}
-{"@timestamp":"2022-09-13T14:31:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:31:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:32:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=45.1Mi, Sys=18.0Mi, NumGC=158"}
-{"@timestamp":"2022-09-13T14:32:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:32:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:33:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=45.2Mi, Sys=18.0Mi, NumGC=158"}
-{"@timestamp":"2022-09-13T14:33:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:33:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:34:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=45.3Mi, Sys=18.0Mi, NumGC=159"}
-{"@timestamp":"2022-09-13T14:34:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:34:52.389+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:35:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=45.4Mi, Sys=18.0Mi, NumGC=159"}
-{"@timestamp":"2022-09-13T14:35:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:35:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:36:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=45.5Mi, Sys=18.0Mi, NumGC=160"}
-{"@timestamp":"2022-09-13T14:36:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:36:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:37:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=45.7Mi, Sys=18.0Mi, NumGC=160"}
-{"@timestamp":"2022-09-13T14:37:40.346+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:37:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:38:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=45.8Mi, Sys=18.0Mi, NumGC=161"}
-{"@timestamp":"2022-09-13T14:38:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:38:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:39:40.521+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=45.9Mi, Sys=18.0Mi, NumGC=161"}
-{"@timestamp":"2022-09-13T14:39:40.552+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:39:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:40:40.322+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=46.0Mi, Sys=18.0Mi, NumGC=162"}
-{"@timestamp":"2022-09-13T14:40:40.434+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:40:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:41:40.315+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=46.1Mi, Sys=18.0Mi, NumGC=162"}
-{"@timestamp":"2022-09-13T14:41:40.410+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:41:52.701+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:42:40.356+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:42:40.465+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=46.2Mi, Sys=18.0Mi, NumGC=163"}
-{"@timestamp":"2022-09-13T14:42:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:43:40.514+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=46.3Mi, Sys=18.0Mi, NumGC=163"}
-{"@timestamp":"2022-09-13T14:43:40.598+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:43:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:44:40.387+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:44:40.746+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=46.5Mi, Sys=18.0Mi, NumGC=164"}
-{"@timestamp":"2022-09-13T14:44:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:45:40.319+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=46.6Mi, Sys=18.0Mi, NumGC=164"}
-{"@timestamp":"2022-09-13T14:45:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:45:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:46:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=46.7Mi, Sys=18.0Mi, NumGC=165"}
-{"@timestamp":"2022-09-13T14:46:40.370+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:46:52.391+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:47:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=46.8Mi, Sys=18.0Mi, NumGC=165"}
-{"@timestamp":"2022-09-13T14:47:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:47:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:48:40.295+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=46.9Mi, Sys=18.0Mi, NumGC=166"}
-{"@timestamp":"2022-09-13T14:48:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:48:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:49:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=47.0Mi, Sys=18.0Mi, NumGC=166"}
-{"@timestamp":"2022-09-13T14:49:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:49:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:50:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=47.1Mi, Sys=18.0Mi, NumGC=167"}
-{"@timestamp":"2022-09-13T14:50:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:50:52.381+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:51:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=47.3Mi, Sys=18.0Mi, NumGC=167"}
-{"@timestamp":"2022-09-13T14:51:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:51:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:52:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=47.4Mi, Sys=18.0Mi, NumGC=168"}
-{"@timestamp":"2022-09-13T14:52:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:52:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:53:40.295+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=47.5Mi, Sys=18.0Mi, NumGC=168"}
-{"@timestamp":"2022-09-13T14:53:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:53:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:54:40.293+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=47.6Mi, Sys=18.0Mi, NumGC=169"}
-{"@timestamp":"2022-09-13T14:54:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:54:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:55:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=47.7Mi, Sys=18.0Mi, NumGC=169"}
-{"@timestamp":"2022-09-13T14:55:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:55:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:56:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=47.8Mi, Sys=18.0Mi, NumGC=170"}
-{"@timestamp":"2022-09-13T14:56:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:56:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:57:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=47.9Mi, Sys=18.0Mi, NumGC=170"}
-{"@timestamp":"2022-09-13T14:57:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:57:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:58:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=48.1Mi, Sys=18.0Mi, NumGC=171"}
-{"@timestamp":"2022-09-13T14:58:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:58:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T14:59:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=48.2Mi, Sys=18.0Mi, NumGC=171"}
-{"@timestamp":"2022-09-13T14:59:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T14:59:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:00:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=48.3Mi, Sys=18.0Mi, NumGC=172"}
-{"@timestamp":"2022-09-13T15:00:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:00:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:01:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=48.4Mi, Sys=18.0Mi, NumGC=172"}
-{"@timestamp":"2022-09-13T15:01:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:01:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:02:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=48.5Mi, Sys=18.0Mi, NumGC=173"}
-{"@timestamp":"2022-09-13T15:02:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:02:52.376+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:03:40.295+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=48.6Mi, Sys=18.0Mi, NumGC=173"}
-{"@timestamp":"2022-09-13T15:03:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:03:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:04:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=48.7Mi, Sys=18.0Mi, NumGC=174"}
-{"@timestamp":"2022-09-13T15:04:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:04:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:05:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=48.9Mi, Sys=18.0Mi, NumGC=174"}
-{"@timestamp":"2022-09-13T15:05:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:05:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:06:40.320+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=49.0Mi, Sys=18.0Mi, NumGC=175"}
-{"@timestamp":"2022-09-13T15:06:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:06:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:07:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=49.1Mi, Sys=18.0Mi, NumGC=175"}
-{"@timestamp":"2022-09-13T15:07:40.338+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:07:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:08:40.309+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=49.2Mi, Sys=18.0Mi, NumGC=176"}
-{"@timestamp":"2022-09-13T15:08:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:08:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:09:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=49.3Mi, Sys=18.0Mi, NumGC=176"}
-{"@timestamp":"2022-09-13T15:09:40.347+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:09:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:10:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=49.4Mi, Sys=18.0Mi, NumGC=177"}
-{"@timestamp":"2022-09-13T15:10:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:10:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:11:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=49.5Mi, Sys=18.0Mi, NumGC=177"}
-{"@timestamp":"2022-09-13T15:11:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:11:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:12:40.318+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=49.6Mi, Sys=18.0Mi, NumGC=178"}
-{"@timestamp":"2022-09-13T15:12:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:12:52.384+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:13:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=49.8Mi, Sys=18.0Mi, NumGC=178"}
-{"@timestamp":"2022-09-13T15:13:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:13:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:14:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=49.9Mi, Sys=18.0Mi, NumGC=179"}
-{"@timestamp":"2022-09-13T15:14:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:14:52.386+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:15:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=50.0Mi, Sys=18.0Mi, NumGC=179"}
-{"@timestamp":"2022-09-13T15:15:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:15:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:16:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:16:40.340+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=50.1Mi, Sys=18.0Mi, NumGC=180"}
-{"@timestamp":"2022-09-13T15:16:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:17:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=50.2Mi, Sys=18.0Mi, NumGC=180"}
-{"@timestamp":"2022-09-13T15:17:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:17:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:18:40.319+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=50.3Mi, Sys=18.0Mi, NumGC=181"}
-{"@timestamp":"2022-09-13T15:18:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:18:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:19:40.314+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=50.4Mi, Sys=18.0Mi, NumGC=181"}
-{"@timestamp":"2022-09-13T15:19:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:19:52.387+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:20:40.322+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=50.5Mi, Sys=18.0Mi, NumGC=182"}
-{"@timestamp":"2022-09-13T15:20:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:20:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:21:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=50.7Mi, Sys=18.0Mi, NumGC=182"}
-{"@timestamp":"2022-09-13T15:21:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:21:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:22:40.341+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=50.8Mi, Sys=18.0Mi, NumGC=183"}
-{"@timestamp":"2022-09-13T15:22:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:22:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:23:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=50.9Mi, Sys=18.0Mi, NumGC=183"}
-{"@timestamp":"2022-09-13T15:23:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:23:52.382+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:24:40.317+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=51.0Mi, Sys=18.0Mi, NumGC=184"}
-{"@timestamp":"2022-09-13T15:24:40.353+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:24:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:25:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=51.1Mi, Sys=18.0Mi, NumGC=184"}
-{"@timestamp":"2022-09-13T15:25:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:25:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:26:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=51.2Mi, Sys=18.0Mi, NumGC=185"}
-{"@timestamp":"2022-09-13T15:26:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:26:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:27:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=51.3Mi, Sys=18.0Mi, NumGC=185"}
-{"@timestamp":"2022-09-13T15:27:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:27:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:28:40.309+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=51.5Mi, Sys=18.0Mi, NumGC=186"}
-{"@timestamp":"2022-09-13T15:28:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:28:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:29:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=51.6Mi, Sys=18.0Mi, NumGC=186"}
-{"@timestamp":"2022-09-13T15:29:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:29:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:30:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=51.7Mi, Sys=18.0Mi, NumGC=187"}
-{"@timestamp":"2022-09-13T15:30:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:30:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:31:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=51.8Mi, Sys=18.0Mi, NumGC=187"}
-{"@timestamp":"2022-09-13T15:31:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:31:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:32:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=51.9Mi, Sys=18.0Mi, NumGC=188"}
-{"@timestamp":"2022-09-13T15:32:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:32:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:33:40.293+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=52.0Mi, Sys=18.0Mi, NumGC=188"}
-{"@timestamp":"2022-09-13T15:33:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:33:52.381+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:34:40.310+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=52.1Mi, Sys=18.0Mi, NumGC=189"}
-{"@timestamp":"2022-09-13T15:34:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:34:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:35:40.293+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=52.3Mi, Sys=18.0Mi, NumGC=189"}
-{"@timestamp":"2022-09-13T15:35:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:35:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:36:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=52.4Mi, Sys=18.0Mi, NumGC=190"}
-{"@timestamp":"2022-09-13T15:36:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:36:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:37:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=52.5Mi, Sys=18.0Mi, NumGC=190"}
-{"@timestamp":"2022-09-13T15:37:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:37:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:38:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=52.6Mi, Sys=18.0Mi, NumGC=191"}
-{"@timestamp":"2022-09-13T15:38:40.350+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:38:52.374+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:39:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=52.7Mi, Sys=18.0Mi, NumGC=191"}
-{"@timestamp":"2022-09-13T15:39:40.347+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:39:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:40:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=52.8Mi, Sys=18.0Mi, NumGC=192"}
-{"@timestamp":"2022-09-13T15:40:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:40:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:41:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=52.9Mi, Sys=18.0Mi, NumGC=192"}
-{"@timestamp":"2022-09-13T15:41:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:41:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:42:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=53.1Mi, Sys=18.0Mi, NumGC=193"}
-{"@timestamp":"2022-09-13T15:42:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:42:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:43:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=53.2Mi, Sys=18.0Mi, NumGC=193"}
-{"@timestamp":"2022-09-13T15:43:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:43:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:44:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=53.3Mi, Sys=18.0Mi, NumGC=194"}
-{"@timestamp":"2022-09-13T15:44:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:44:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:45:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=53.4Mi, Sys=18.0Mi, NumGC=194"}
-{"@timestamp":"2022-09-13T15:45:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:45:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:46:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=53.5Mi, Sys=18.0Mi, NumGC=195"}
-{"@timestamp":"2022-09-13T15:46:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:46:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:47:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=53.6Mi, Sys=18.0Mi, NumGC=195"}
-{"@timestamp":"2022-09-13T15:47:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:47:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:48:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=53.7Mi, Sys=18.0Mi, NumGC=196"}
-{"@timestamp":"2022-09-13T15:48:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:48:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:49:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=53.9Mi, Sys=18.0Mi, NumGC=196"}
-{"@timestamp":"2022-09-13T15:49:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:49:52.381+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:50:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=54.0Mi, Sys=18.0Mi, NumGC=197"}
-{"@timestamp":"2022-09-13T15:50:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:50:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:51:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=54.1Mi, Sys=18.0Mi, NumGC=197"}
-{"@timestamp":"2022-09-13T15:51:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:51:52.382+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:52:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=54.2Mi, Sys=18.0Mi, NumGC=198"}
-{"@timestamp":"2022-09-13T15:52:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:52:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:53:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=54.3Mi, Sys=18.0Mi, NumGC=198"}
-{"@timestamp":"2022-09-13T15:53:40.330+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:53:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:54:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=54.4Mi, Sys=18.0Mi, NumGC=199"}
-{"@timestamp":"2022-09-13T15:54:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:54:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:55:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=54.5Mi, Sys=18.0Mi, NumGC=199"}
-{"@timestamp":"2022-09-13T15:55:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:55:52.376+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:56:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=54.7Mi, Sys=18.0Mi, NumGC=200"}
-{"@timestamp":"2022-09-13T15:56:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:56:52.381+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:57:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=54.8Mi, Sys=18.0Mi, NumGC=200"}
-{"@timestamp":"2022-09-13T15:57:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:57:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:58:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=54.9Mi, Sys=18.0Mi, NumGC=201"}
-{"@timestamp":"2022-09-13T15:58:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:58:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T15:59:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=55.0Mi, Sys=18.0Mi, NumGC=201"}
-{"@timestamp":"2022-09-13T15:59:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T15:59:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:00:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=55.1Mi, Sys=18.0Mi, NumGC=202"}
-{"@timestamp":"2022-09-13T16:00:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:00:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:01:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=55.2Mi, Sys=18.0Mi, NumGC=202"}
-{"@timestamp":"2022-09-13T16:01:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:01:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:02:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=55.3Mi, Sys=18.0Mi, NumGC=203"}
-{"@timestamp":"2022-09-13T16:02:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:02:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:03:40.306+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=55.5Mi, Sys=18.0Mi, NumGC=203"}
-{"@timestamp":"2022-09-13T16:03:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:03:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:04:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=55.6Mi, Sys=18.0Mi, NumGC=204"}
-{"@timestamp":"2022-09-13T16:04:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:04:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:05:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=55.7Mi, Sys=18.0Mi, NumGC=204"}
-{"@timestamp":"2022-09-13T16:05:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:05:52.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:06:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=55.8Mi, Sys=18.0Mi, NumGC=205"}
-{"@timestamp":"2022-09-13T16:06:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:06:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:07:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=55.9Mi, Sys=18.0Mi, NumGC=205"}
-{"@timestamp":"2022-09-13T16:07:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:07:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:08:40.295+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=56.0Mi, Sys=18.0Mi, NumGC=206"}
-{"@timestamp":"2022-09-13T16:08:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:08:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:09:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=56.1Mi, Sys=18.0Mi, NumGC=206"}
-{"@timestamp":"2022-09-13T16:09:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:09:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:10:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=56.3Mi, Sys=18.0Mi, NumGC=207"}
-{"@timestamp":"2022-09-13T16:10:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:10:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:11:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=56.4Mi, Sys=18.0Mi, NumGC=207"}
-{"@timestamp":"2022-09-13T16:11:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:11:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:12:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=56.5Mi, Sys=18.0Mi, NumGC=208"}
-{"@timestamp":"2022-09-13T16:12:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:12:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:13:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=56.6Mi, Sys=18.0Mi, NumGC=208"}
-{"@timestamp":"2022-09-13T16:13:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:13:52.375+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:14:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=56.7Mi, Sys=18.0Mi, NumGC=209"}
-{"@timestamp":"2022-09-13T16:14:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:14:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:15:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=56.8Mi, Sys=18.0Mi, NumGC=209"}
-{"@timestamp":"2022-09-13T16:15:40.330+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:15:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:16:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=56.9Mi, Sys=18.0Mi, NumGC=210"}
-{"@timestamp":"2022-09-13T16:16:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:16:52.376+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:17:40.293+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=57.1Mi, Sys=18.0Mi, NumGC=210"}
-{"@timestamp":"2022-09-13T16:17:40.340+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:17:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:18:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=57.2Mi, Sys=18.0Mi, NumGC=211"}
-{"@timestamp":"2022-09-13T16:18:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:18:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:19:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=57.3Mi, Sys=18.0Mi, NumGC=211"}
-{"@timestamp":"2022-09-13T16:19:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:19:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:20:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=57.4Mi, Sys=18.0Mi, NumGC=212"}
-{"@timestamp":"2022-09-13T16:20:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:20:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:21:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=57.5Mi, Sys=18.0Mi, NumGC=212"}
-{"@timestamp":"2022-09-13T16:21:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:21:52.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:22:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=57.6Mi, Sys=18.0Mi, NumGC=213"}
-{"@timestamp":"2022-09-13T16:22:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:22:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:23:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=57.7Mi, Sys=18.0Mi, NumGC=213"}
-{"@timestamp":"2022-09-13T16:23:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:23:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:24:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=57.9Mi, Sys=18.0Mi, NumGC=214"}
-{"@timestamp":"2022-09-13T16:24:40.332+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:24:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:25:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=58.0Mi, Sys=18.0Mi, NumGC=214"}
-{"@timestamp":"2022-09-13T16:25:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:25:52.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:26:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=58.1Mi, Sys=18.0Mi, NumGC=215"}
-{"@timestamp":"2022-09-13T16:26:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:26:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:27:40.296+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=58.2Mi, Sys=18.0Mi, NumGC=215"}
-{"@timestamp":"2022-09-13T16:27:40.343+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:27:52.376+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:28:40.302+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=58.3Mi, Sys=18.0Mi, NumGC=216"}
-{"@timestamp":"2022-09-13T16:28:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:28:52.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:29:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=58.4Mi, Sys=18.0Mi, NumGC=216"}
-{"@timestamp":"2022-09-13T16:29:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:29:52.377+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:30:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=58.5Mi, Sys=18.0Mi, NumGC=217"}
-{"@timestamp":"2022-09-13T16:30:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:30:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:31:40.300+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=58.7Mi, Sys=18.0Mi, NumGC=217"}
-{"@timestamp":"2022-09-13T16:31:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:31:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:32:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=58.8Mi, Sys=18.0Mi, NumGC=218"}
-{"@timestamp":"2022-09-13T16:32:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:32:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:33:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=58.9Mi, Sys=18.0Mi, NumGC=218"}
-{"@timestamp":"2022-09-13T16:33:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:33:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:34:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=59.0Mi, Sys=18.0Mi, NumGC=219"}
-{"@timestamp":"2022-09-13T16:34:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:34:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:35:40.295+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=59.1Mi, Sys=18.0Mi, NumGC=219"}
-{"@timestamp":"2022-09-13T16:35:40.342+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:35:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:36:40.297+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=59.2Mi, Sys=18.0Mi, NumGC=220"}
-{"@timestamp":"2022-09-13T16:36:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:36:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:37:40.294+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=59.3Mi, Sys=18.0Mi, NumGC=220"}
-{"@timestamp":"2022-09-13T16:37:40.341+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:37:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:38:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=59.5Mi, Sys=18.0Mi, NumGC=221"}
-{"@timestamp":"2022-09-13T16:38:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:38:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:39:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=59.6Mi, Sys=18.0Mi, NumGC=221"}
-{"@timestamp":"2022-09-13T16:39:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:39:52.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:40:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=59.7Mi, Sys=18.0Mi, NumGC=222"}
-{"@timestamp":"2022-09-13T16:40:40.344+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:40:52.378+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:41:40.301+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=59.8Mi, Sys=18.0Mi, NumGC=222"}
-{"@timestamp":"2022-09-13T16:41:40.333+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:41:52.373+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:42:40.304+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=59.9Mi, Sys=18.0Mi, NumGC=223"}
-{"@timestamp":"2022-09-13T16:42:40.336+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:42:52.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:43:40.305+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=60.0Mi, Sys=18.0Mi, NumGC=223"}
-{"@timestamp":"2022-09-13T16:43:40.335+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:43:52.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:44:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=60.1Mi, Sys=18.0Mi, NumGC=224"}
-{"@timestamp":"2022-09-13T16:44:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:44:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:45:40.307+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=60.3Mi, Sys=18.0Mi, NumGC=224"}
-{"@timestamp":"2022-09-13T16:45:40.337+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:45:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:46:40.298+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=60.4Mi, Sys=18.0Mi, NumGC=225"}
-{"@timestamp":"2022-09-13T16:46:40.345+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:46:52.380+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:47:40.299+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=60.5Mi, Sys=18.0Mi, NumGC=225"}
-{"@timestamp":"2022-09-13T16:47:40.331+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:47:52.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:48:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=60.6Mi, Sys=18.0Mi, NumGC=226"}
-{"@timestamp":"2022-09-13T16:48:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:48:52.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:49:40.303+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=60.7Mi, Sys=18.0Mi, NumGC=226"}
-{"@timestamp":"2022-09-13T16:49:40.334+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:49:52.372+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:50:38.826+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 7676, reqs: 1"}
-{"@timestamp":"2022-09-13T16:50:40.308+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=61.0Mi, Sys=18.0Mi, NumGC=227"}
-{"@timestamp":"2022-09-13T16:50:40.339+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-13T16:50:52.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 60.0ms, med: 60.1ms, 90th: 60.1ms, 99th: 60.1ms, 99.9th: 60.1ms"}
-{"@timestamp":"2022-09-13T16:51:56.297+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89510, reqs: 1"}
-{"@timestamp":"2022-09-13T16:54:55.465+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=8.1Mi, Sys=17.5Mi, NumGC=3"}
-{"@timestamp":"2022-09-13T16:54:55.465+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:55:39.361+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=9.2Mi, Sys=18.0Mi, NumGC=4"}
-{"@timestamp":"2022-09-13T16:55:39.407+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:55:55.479+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 132772.0ms, med: 132772.9ms, 90th: 132772.9ms, 99th: 132772.9ms, 99.9th: 132772.9ms"}
-{"@timestamp":"2022-09-13T16:56:39.365+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.9Mi, TotalAlloc=9.4Mi, Sys=18.0Mi, NumGC=4"}
-{"@timestamp":"2022-09-13T16:56:39.413+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:56:55.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:57:39.364+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=9.5Mi, Sys=18.0Mi, NumGC=5"}
-{"@timestamp":"2022-09-13T16:57:39.411+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:57:55.477+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:58:39.353+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=9.7Mi, Sys=18.0Mi, NumGC=5"}
-{"@timestamp":"2022-09-13T16:58:39.401+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:58:55.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T16:59:39.353+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=9.8Mi, Sys=18.0Mi, NumGC=6"}
-{"@timestamp":"2022-09-13T16:59:39.400+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T16:59:55.482+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:00:39.361+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=10.0Mi, Sys=18.0Mi, NumGC=6"}
-{"@timestamp":"2022-09-13T17:00:39.408+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:00:55.473+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:01:39.361+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=10.2Mi, Sys=18.0Mi, NumGC=7"}
-{"@timestamp":"2022-09-13T17:01:39.409+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:01:55.476+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:02:39.364+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=10.3Mi, Sys=18.0Mi, NumGC=7"}
-{"@timestamp":"2022-09-13T17:02:39.411+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:02:55.473+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:03:39.357+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=10.5Mi, Sys=18.0Mi, NumGC=8"}
-{"@timestamp":"2022-09-13T17:03:39.404+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:03:55.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:04:39.355+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=10.6Mi, Sys=18.0Mi, NumGC=8"}
-{"@timestamp":"2022-09-13T17:04:39.401+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:04:55.481+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:05:39.356+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=10.8Mi, Sys=18.0Mi, NumGC=9"}
-{"@timestamp":"2022-09-13T17:05:39.402+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:05:55.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:06:39.360+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=10.9Mi, Sys=18.0Mi, NumGC=9"}
-{"@timestamp":"2022-09-13T17:06:39.408+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:06:55.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:07:39.367+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=11.1Mi, Sys=18.0Mi, NumGC=10"}
-{"@timestamp":"2022-09-13T17:07:39.413+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:07:55.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:08:39.354+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=11.2Mi, Sys=18.0Mi, NumGC=10"}
-{"@timestamp":"2022-09-13T17:08:39.400+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:08:55.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:09:39.353+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=11.4Mi, Sys=18.0Mi, NumGC=11"}
-{"@timestamp":"2022-09-13T17:09:39.400+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:09:55.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:10:39.357+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=11.5Mi, Sys=18.0Mi, NumGC=11"}
-{"@timestamp":"2022-09-13T17:10:39.404+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:10:55.475+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:11:39.358+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=11.7Mi, Sys=18.0Mi, NumGC=12"}
-{"@timestamp":"2022-09-13T17:11:39.405+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:11:55.479+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:12:39.363+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=11.8Mi, Sys=18.0Mi, NumGC=12"}
-{"@timestamp":"2022-09-13T17:12:39.408+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:12:55.472+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:13:39.366+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=12.0Mi, Sys=18.0Mi, NumGC=13"}
-{"@timestamp":"2022-09-13T17:13:39.415+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:13:55.478+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:14:39.367+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=12.1Mi, Sys=18.0Mi, NumGC=13"}
-{"@timestamp":"2022-09-13T17:14:39.415+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:14:55.481+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:15:39.363+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=12.3Mi, Sys=18.0Mi, NumGC=14"}
-{"@timestamp":"2022-09-13T17:15:39.411+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:15:55.480+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:16:39.360+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=12.4Mi, Sys=18.0Mi, NumGC=14"}
-{"@timestamp":"2022-09-13T17:16:39.407+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:16:55.476+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:17:39.358+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=12.6Mi, Sys=18.0Mi, NumGC=15"}
-{"@timestamp":"2022-09-13T17:17:39.404+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:17:55.477+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:18:39.365+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=12.7Mi, Sys=18.0Mi, NumGC=15"}
-{"@timestamp":"2022-09-13T17:18:39.412+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:18:55.476+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:19:39.366+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=12.9Mi, Sys=18.0Mi, NumGC=16"}
-{"@timestamp":"2022-09-13T17:19:39.411+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:19:55.477+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:20:39.355+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=13.0Mi, Sys=18.0Mi, NumGC=16"}
-{"@timestamp":"2022-09-13T17:20:39.402+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:20:55.468+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:21:39.355+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=13.2Mi, Sys=18.0Mi, NumGC=17"}
-{"@timestamp":"2022-09-13T17:21:39.402+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:21:55.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:22:39.358+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=13.3Mi, Sys=18.0Mi, NumGC=17"}
-{"@timestamp":"2022-09-13T17:22:39.405+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:22:55.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:23:39.366+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=13.4Mi, Sys=18.0Mi, NumGC=18"}
-{"@timestamp":"2022-09-13T17:23:39.411+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:23:55.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:24:39.360+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=13.6Mi, Sys=18.0Mi, NumGC=18"}
-{"@timestamp":"2022-09-13T17:24:39.407+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:24:55.477+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:25:39.362+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=13.8Mi, Sys=18.0Mi, NumGC=19"}
-{"@timestamp":"2022-09-13T17:25:39.408+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:25:55.467+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:26:39.366+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=13.9Mi, Sys=18.0Mi, NumGC=19"}
-{"@timestamp":"2022-09-13T17:26:39.414+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:26:55.477+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:27:39.360+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=14.1Mi, Sys=18.0Mi, NumGC=20"}
-{"@timestamp":"2022-09-13T17:27:39.407+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:27:55.482+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:28:39.359+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=14.2Mi, Sys=18.0Mi, NumGC=20"}
-{"@timestamp":"2022-09-13T17:28:39.406+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:28:55.474+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:29:39.355+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=14.3Mi, Sys=18.0Mi, NumGC=21"}
-{"@timestamp":"2022-09-13T17:29:39.402+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:29:55.475+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:30:39.365+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=14.5Mi, Sys=18.0Mi, NumGC=21"}
-{"@timestamp":"2022-09-13T17:30:39.412+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:30:55.473+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:31:39.365+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=14.7Mi, Sys=18.0Mi, NumGC=22"}
-{"@timestamp":"2022-09-13T17:31:39.411+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:31:55.475+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:32:39.361+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=14.8Mi, Sys=18.0Mi, NumGC=22"}
-{"@timestamp":"2022-09-13T17:32:39.409+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:32:55.470+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:33:39.368+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=15.0Mi, Sys=18.0Mi, NumGC=23"}
-{"@timestamp":"2022-09-13T17:33:39.400+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:33:55.473+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:34:39.357+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=15.1Mi, Sys=18.0Mi, NumGC=23"}
-{"@timestamp":"2022-09-13T17:34:39.404+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:34:55.480+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:35:39.366+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=15.2Mi, Sys=18.0Mi, NumGC=24"}
-{"@timestamp":"2022-09-13T17:35:39.413+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:35:55.482+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:36:39.363+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=15.4Mi, Sys=18.0Mi, NumGC=24"}
-{"@timestamp":"2022-09-13T17:36:39.410+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:36:55.481+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:37:39.354+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=15.5Mi, Sys=18.0Mi, NumGC=25"}
-{"@timestamp":"2022-09-13T17:37:39.401+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:37:55.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:38:39.366+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=15.7Mi, Sys=18.0Mi, NumGC=25"}
-{"@timestamp":"2022-09-13T17:38:39.413+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:38:55.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:39:39.356+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=15.8Mi, Sys=18.0Mi, NumGC=26"}
-{"@timestamp":"2022-09-13T17:39:39.403+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:39:55.471+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:40:39.362+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=16.0Mi, Sys=18.0Mi, NumGC=26"}
-{"@timestamp":"2022-09-13T17:40:39.408+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:40:55.469+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:41:39.354+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=16.1Mi, Sys=18.0Mi, NumGC=27"}
-{"@timestamp":"2022-09-13T17:41:39.401+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-13T17:41:55.482+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-13T17:42:39.360+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=16.3Mi, Sys=18.0Mi, NumGC=27"}
-{"@timestamp":"2022-09-13T17:42:39.406+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}

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

@@ -1,2015 +0,0 @@
-{"@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"}

+ 0 - 430
jyBXSubscribe/api/logs/stat.log-2022-08-29

@@ -1,430 +0,0 @@
-{"@timestamp":"2022-08-29T18:14:40.200+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=8.2Mi, Sys=18.9Mi, NumGC=3"}
-{"@timestamp":"2022-08-29T18:14:40.246+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:15:40.196+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=8.5Mi, Sys=18.9Mi, NumGC=3"}
-{"@timestamp":"2022-08-29T18:15:40.243+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-08-29T18:16:17.296+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.7ms, 90th: 0.7ms, 99th: 0.7ms, 99.9th: 0.7ms"}
-{"@timestamp":"2022-08-29T18:16:39.300+08:00","level":"stat","content":"p2c - conn: 192.168.150.166:8001, load: 1258, reqs: 1"}
-{"@timestamp":"2022-08-29T18:17:36.878+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=8.3Mi, Sys=19.2Mi, NumGC=3"}
-{"@timestamp":"2022-08-29T18:17:36.893+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-08-29T18:17:39.310+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 2.0ms, med: 2.4ms, 90th: 2.4ms, 99th: 2.4ms, 99.9th: 2.4ms"}
-{"@timestamp":"2022-08-29T18:18:36.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=8.6Mi, Sys=19.2Mi, NumGC=3"}
-{"@timestamp":"2022-08-29T18:18:36.899+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:18:39.303+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:19:31.645+08:00","level":"stat","content":"p2c - conn: 192.168.150.166:8001, load: 2423, reqs: 1"}
-{"@timestamp":"2022-08-29T18:20:29.548+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=8.4Mi, Sys=18.4Mi, NumGC=3"}
-{"@timestamp":"2022-08-29T18:20:29.579+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0"}
-{"@timestamp":"2022-08-29T18:20:31.661+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 4.5ms, med: 6.4ms, 90th: 6.4ms, 99th: 6.4ms, 99.9th: 6.4ms"}
-{"@timestamp":"2022-08-29T18:21:29.548+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=8.7Mi, Sys=18.4Mi, NumGC=3"}
-{"@timestamp":"2022-08-29T18:21:29.579+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:21:31.656+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:21:57.202+08:00","level":"stat","content":"p2c - conn: 192.168.150.166:8001, load: 1809, reqs: 2"}
-{"@timestamp":"2022-08-29T18:22:29.554+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=8.9Mi, Sys=18.7Mi, NumGC=4"}
-{"@timestamp":"2022-08-29T18:22:29.585+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0"}
-{"@timestamp":"2022-08-29T18:22:31.660+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 3.5ms, med: 3.8ms, 90th: 3.8ms, 99th: 3.8ms, 99.9th: 3.8ms"}
-{"@timestamp":"2022-08-29T18:23:29.575+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:23:29.575+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=9.1Mi, Sys=18.7Mi, NumGC=4"}
-{"@timestamp":"2022-08-29T18:23:31.660+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:23:53.616+08:00","level":"stat","content":"p2c - conn: 192.168.150.166:8001, load: 2386, reqs: 1"}
-{"@timestamp":"2022-08-29T18:24:50.957+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=8.4Mi, Sys=19.9Mi, NumGC=3"}
-{"@timestamp":"2022-08-29T18:24:50.988+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-08-29T18:24:53.626+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 6.0ms, med: 6.8ms, 90th: 6.8ms, 99th: 6.8ms, 99.9th: 6.8ms"}
-{"@timestamp":"2022-08-29T18:25:02.690+08:00","level":"stat","content":"p2c - conn: 192.168.150.166:8001, load: 2397, reqs: 1"}
-{"@timestamp":"2022-08-29T18:25:50.954+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=8.9Mi, Sys=19.9Mi, NumGC=3"}
-{"@timestamp":"2022-08-29T18:25:50.984+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-08-29T18:25:53.618+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 6.0ms, med: 6.4ms, 90th: 6.4ms, 99th: 6.4ms, 99.9th: 6.4ms"}
-{"@timestamp":"2022-08-29T18:26:50.962+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=9.0Mi, Sys=19.9Mi, NumGC=4"}
-{"@timestamp":"2022-08-29T18:26:50.993+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:26:53.617+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:27:51.025+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=9.1Mi, Sys=19.9Mi, NumGC=4"}
-{"@timestamp":"2022-08-29T18:27:51.027+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:27:53.626+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:28:50.965+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=9.2Mi, Sys=19.9Mi, NumGC=5"}
-{"@timestamp":"2022-08-29T18:28:50.980+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:28:53.629+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:29:50.955+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=9.4Mi, Sys=19.9Mi, NumGC=5"}
-{"@timestamp":"2022-08-29T18:29:50.987+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:29:53.629+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:30:50.960+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=9.5Mi, Sys=20.2Mi, NumGC=6"}
-{"@timestamp":"2022-08-29T18:30:50.990+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:30:53.622+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:32:01.602+08:00","level":"stat","content":"p2c - conn: 192.168.150.166:8001, load: 746, reqs: 1"}
-{"@timestamp":"2022-08-29T18:32:59.277+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=9.0Mi, Sys=19.4Mi, NumGC=4"}
-{"@timestamp":"2022-08-29T18:32:59.308+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-08-29T18:33:01.617+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 2.0ms, med: 2.0ms, 90th: 2.0ms, 99th: 2.0ms, 99.9th: 2.0ms"}
-{"@timestamp":"2022-08-29T18:33:59.279+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=9.2Mi, Sys=19.4Mi, NumGC=4"}
-{"@timestamp":"2022-08-29T18:33:59.309+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:34:01.609+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:34:59.278+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=9.4Mi, Sys=19.7Mi, NumGC=5"}
-{"@timestamp":"2022-08-29T18:34:59.310+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:35:01.617+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:35:59.281+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=9.5Mi, Sys=19.7Mi, NumGC=5"}
-{"@timestamp":"2022-08-29T18:35:59.312+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:36:01.608+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:36:59.292+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=9.6Mi, Sys=19.7Mi, NumGC=6"}
-{"@timestamp":"2022-08-29T18:36:59.308+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:37:01.612+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:37:59.288+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=9.7Mi, Sys=19.7Mi, NumGC=6"}
-{"@timestamp":"2022-08-29T18:37:59.305+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:38:01.617+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:38:59.286+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=9.9Mi, Sys=19.7Mi, NumGC=7"}
-{"@timestamp":"2022-08-29T18:38:59.317+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:39:01.606+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:39:59.287+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=10.0Mi, Sys=19.7Mi, NumGC=7"}
-{"@timestamp":"2022-08-29T18:39:59.318+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:40:54.433+08:00","level":"stat","content":"p2c - conn: 192.168.150.166:8001, load: 733, reqs: 1"}
-{"@timestamp":"2022-08-29T18:41:48.197+08:00","level":"stat","content":"p2c - conn: 192.168.150.166:8001, load: 1038, reqs: 1"}
-{"@timestamp":"2022-08-29T18:42:46.221+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=9.2Mi, Sys=23.5Mi, NumGC=4"}
-{"@timestamp":"2022-08-29T18:42:46.241+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-08-29T18:42:48.201+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-08-29T18:43:46.212+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=9.4Mi, Sys=23.8Mi, NumGC=4"}
-{"@timestamp":"2022-08-29T18:43:46.243+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:43:48.201+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:44:46.216+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=9.6Mi, Sys=23.8Mi, NumGC=5"}
-{"@timestamp":"2022-08-29T18:44:46.247+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:44:48.213+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:45:46.223+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=9.8Mi, Sys=23.8Mi, NumGC=5"}
-{"@timestamp":"2022-08-29T18:45:46.238+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:45:48.205+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:46:46.211+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=9.9Mi, Sys=23.8Mi, NumGC=6"}
-{"@timestamp":"2022-08-29T18:46:46.242+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:46:48.212+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:47:46.210+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=10.1Mi, Sys=23.8Mi, NumGC=6"}
-{"@timestamp":"2022-08-29T18:47:46.240+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:47:48.203+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:48:46.207+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=10.3Mi, Sys=23.8Mi, NumGC=7"}
-{"@timestamp":"2022-08-29T18:48:46.239+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:48:48.210+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:49:46.218+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=10.4Mi, Sys=23.8Mi, NumGC=7"}
-{"@timestamp":"2022-08-29T18:49:46.249+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:49:48.212+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:50:46.220+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=10.6Mi, Sys=23.8Mi, NumGC=8"}
-{"@timestamp":"2022-08-29T18:50:46.251+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:50:48.208+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:51:46.216+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=10.8Mi, Sys=23.8Mi, NumGC=8"}
-{"@timestamp":"2022-08-29T18:51:46.247+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:51:48.202+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:52:46.212+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=10.9Mi, Sys=23.8Mi, NumGC=9"}
-{"@timestamp":"2022-08-29T18:52:46.244+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:52:48.204+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:53:46.215+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=11.1Mi, Sys=23.8Mi, NumGC=9"}
-{"@timestamp":"2022-08-29T18:53:46.246+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:53:48.208+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:54:46.208+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=11.2Mi, Sys=23.8Mi, NumGC=10"}
-{"@timestamp":"2022-08-29T18:54:46.239+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:54:48.198+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:55:46.220+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=11.4Mi, Sys=23.8Mi, NumGC=10"}
-{"@timestamp":"2022-08-29T18:55:46.251+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:55:48.208+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:56:46.219+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=11.5Mi, Sys=23.8Mi, NumGC=11"}
-{"@timestamp":"2022-08-29T18:56:46.249+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:56:48.204+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:57:46.212+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=11.7Mi, Sys=23.8Mi, NumGC=11"}
-{"@timestamp":"2022-08-29T18:57:46.243+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:57:48.211+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:58:46.221+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=11.9Mi, Sys=23.8Mi, NumGC=12"}
-{"@timestamp":"2022-08-29T18:58:46.237+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:58:48.205+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T18:59:46.215+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=12.0Mi, Sys=23.8Mi, NumGC=12"}
-{"@timestamp":"2022-08-29T18:59:46.246+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T18:59:48.201+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:00:46.220+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=12.2Mi, Sys=23.8Mi, NumGC=13"}
-{"@timestamp":"2022-08-29T19:00:46.251+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:00:48.208+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:01:46.211+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=12.3Mi, Sys=23.8Mi, NumGC=13"}
-{"@timestamp":"2022-08-29T19:01:46.241+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:01:48.208+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:02:46.221+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=12.5Mi, Sys=23.8Mi, NumGC=14"}
-{"@timestamp":"2022-08-29T19:02:46.252+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:02:48.198+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:03:46.216+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=12.6Mi, Sys=23.8Mi, NumGC=14"}
-{"@timestamp":"2022-08-29T19:03:46.247+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:03:48.209+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:04:46.210+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=12.8Mi, Sys=23.8Mi, NumGC=15"}
-{"@timestamp":"2022-08-29T19:04:46.241+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:04:48.208+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:05:46.217+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=13.0Mi, Sys=23.8Mi, NumGC=15"}
-{"@timestamp":"2022-08-29T19:05:46.247+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:05:48.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-08-29T19:06:46.208+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=13.1Mi, Sys=23.8Mi, NumGC=16"}
-{"@timestamp":"2022-08-29T19:06:46.239+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:06:48.207+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:07:46.213+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=13.3Mi, Sys=23.8Mi, NumGC=16"}
-{"@timestamp":"2022-08-29T19:07:46.244+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:07:48.204+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:08:46.220+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=13.4Mi, Sys=23.8Mi, NumGC=17"}
-{"@timestamp":"2022-08-29T19:08:46.252+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:08:48.207+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:09:46.209+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=13.6Mi, Sys=23.8Mi, NumGC=17"}
-{"@timestamp":"2022-08-29T19:09:46.240+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:09:48.210+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:10:46.222+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=13.7Mi, Sys=23.8Mi, NumGC=18"}
-{"@timestamp":"2022-08-29T19:10:46.252+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:10:48.198+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:11:46.217+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=13.9Mi, Sys=23.8Mi, NumGC=18"}
-{"@timestamp":"2022-08-29T19:11:46.248+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:11:48.199+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:12:46.214+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=14.1Mi, Sys=23.8Mi, NumGC=19"}
-{"@timestamp":"2022-08-29T19:12:46.245+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:12:48.204+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:13:46.220+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=14.2Mi, Sys=23.8Mi, NumGC=19"}
-{"@timestamp":"2022-08-29T19:13:46.251+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:13:48.207+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:14:46.215+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=14.4Mi, Sys=23.8Mi, NumGC=20"}
-{"@timestamp":"2022-08-29T19:14:46.245+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:14:48.198+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:15:46.220+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=14.5Mi, Sys=23.8Mi, NumGC=20"}
-{"@timestamp":"2022-08-29T19:15:46.250+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:15:48.208+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:16:46.218+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=14.7Mi, Sys=23.8Mi, NumGC=21"}
-{"@timestamp":"2022-08-29T19:16:46.248+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:16:48.210+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:17:46.218+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=14.8Mi, Sys=23.8Mi, NumGC=21"}
-{"@timestamp":"2022-08-29T19:17:46.249+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:17:48.199+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:18:46.210+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=15.0Mi, Sys=23.8Mi, NumGC=22"}
-{"@timestamp":"2022-08-29T19:18:46.241+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:18:48.203+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:19:46.216+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=15.2Mi, Sys=23.8Mi, NumGC=22"}
-{"@timestamp":"2022-08-29T19:19:46.248+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:19:48.201+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:20:46.213+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=15.3Mi, Sys=23.8Mi, NumGC=23"}
-{"@timestamp":"2022-08-29T19:20:46.244+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:20:48.199+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:21:46.214+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=15.5Mi, Sys=23.8Mi, NumGC=23"}
-{"@timestamp":"2022-08-29T19:21:46.244+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:21:48.210+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:22:46.208+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=15.6Mi, Sys=23.8Mi, NumGC=24"}
-{"@timestamp":"2022-08-29T19:22:46.238+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:22:48.212+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:23:46.216+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=15.8Mi, Sys=23.8Mi, NumGC=24"}
-{"@timestamp":"2022-08-29T19:23:46.246+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:23:48.208+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:24:46.213+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=15.9Mi, Sys=23.8Mi, NumGC=25"}
-{"@timestamp":"2022-08-29T19:24:46.243+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:24:48.198+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:25:46.212+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=16.1Mi, Sys=23.8Mi, NumGC=25"}
-{"@timestamp":"2022-08-29T19:25:46.242+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:25:48.204+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:26:46.213+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=16.2Mi, Sys=23.8Mi, NumGC=26"}
-{"@timestamp":"2022-08-29T19:26:46.243+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:26:48.208+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:27:46.214+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=16.4Mi, Sys=23.8Mi, NumGC=26"}
-{"@timestamp":"2022-08-29T19:27:46.245+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:27:48.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-08-29T19:28:46.216+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=16.6Mi, Sys=23.8Mi, NumGC=27"}
-{"@timestamp":"2022-08-29T19:28:46.246+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:28:48.211+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:29:46.228+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=16.7Mi, Sys=23.8Mi, NumGC=27"}
-{"@timestamp":"2022-08-29T19:29:46.251+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:29:48.204+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:34:15.830+08:00","level":"stat","content":"p2c - conn: 192.168.150.166:8001, load: 1025, reqs: 1"}
-{"@timestamp":"2022-08-29T19:35:12.919+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=9.2Mi, Sys=23.8Mi, NumGC=4"}
-{"@timestamp":"2022-08-29T19:35:12.951+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-08-29T19:35:15.843+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 5.0ms, med: 5.3ms, 90th: 5.3ms, 99th: 5.3ms, 99.9th: 5.3ms"}
-{"@timestamp":"2022-08-29T19:37:40.935+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=9.2Mi, Sys=24.3Mi, NumGC=4"}
-{"@timestamp":"2022-08-29T19:37:40.981+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0"}
-{"@timestamp":"2022-08-29T19:37:42.995+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 3.5ms, med: 4.5ms, 90th: 4.5ms, 99th: 4.5ms, 99.9th: 4.5ms"}
-{"@timestamp":"2022-08-29T19:38:40.943+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=9.4Mi, Sys=24.3Mi, NumGC=4"}
-{"@timestamp":"2022-08-29T19:38:40.974+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:38:42.993+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:39:40.937+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=9.6Mi, Sys=24.3Mi, NumGC=5"}
-{"@timestamp":"2022-08-29T19:39:40.982+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:39:42.993+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:40:40.932+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=9.8Mi, Sys=24.3Mi, NumGC=5"}
-{"@timestamp":"2022-08-29T19:40:40.978+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:40:42.991+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:41:40.945+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=9.9Mi, Sys=24.3Mi, NumGC=6"}
-{"@timestamp":"2022-08-29T19:41:40.976+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:41:42.996+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:42:40.943+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=10.1Mi, Sys=24.3Mi, NumGC=6"}
-{"@timestamp":"2022-08-29T19:42:40.974+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:42:42.994+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:43:40.943+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=10.3Mi, Sys=24.3Mi, NumGC=7"}
-{"@timestamp":"2022-08-29T19:43:40.973+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:43:42.993+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:44:40.941+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=10.4Mi, Sys=24.3Mi, NumGC=7"}
-{"@timestamp":"2022-08-29T19:44:40.972+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:44:42.992+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:45:40.940+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=10.6Mi, Sys=24.3Mi, NumGC=8"}
-{"@timestamp":"2022-08-29T19:45:40.971+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:45:43.002+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:46:40.935+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=10.8Mi, Sys=24.3Mi, NumGC=8"}
-{"@timestamp":"2022-08-29T19:46:40.981+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:46:42.994+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:47:40.931+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=10.9Mi, Sys=24.3Mi, NumGC=9"}
-{"@timestamp":"2022-08-29T19:47:40.979+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:47:43.004+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:48:40.937+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=11.1Mi, Sys=24.3Mi, NumGC=9"}
-{"@timestamp":"2022-08-29T19:48:40.984+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:48:43.002+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:49:40.935+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=11.2Mi, Sys=24.3Mi, NumGC=10"}
-{"@timestamp":"2022-08-29T19:49:40.982+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:49:43.005+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:50:40.945+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=11.4Mi, Sys=24.3Mi, NumGC=10"}
-{"@timestamp":"2022-08-29T19:50:40.977+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:50:43.004+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:51:40.933+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=11.6Mi, Sys=24.3Mi, NumGC=11"}
-{"@timestamp":"2022-08-29T19:51:40.979+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:51:43.000+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:52:40.938+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=11.7Mi, Sys=24.3Mi, NumGC=11"}
-{"@timestamp":"2022-08-29T19:52:40.986+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:52:43.003+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:53:40.945+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=11.9Mi, Sys=24.3Mi, NumGC=12"}
-{"@timestamp":"2022-08-29T19:53:40.975+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:53:42.999+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:54:40.938+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=12.0Mi, Sys=24.3Mi, NumGC=12"}
-{"@timestamp":"2022-08-29T19:54:40.985+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:54:42.997+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:55:40.933+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=12.2Mi, Sys=24.3Mi, NumGC=13"}
-{"@timestamp":"2022-08-29T19:55:40.980+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:55:43.004+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:56:40.944+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=12.3Mi, Sys=24.3Mi, NumGC=13"}
-{"@timestamp":"2022-08-29T19:56:40.974+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:56:42.990+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:57:40.938+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=12.5Mi, Sys=24.3Mi, NumGC=14"}
-{"@timestamp":"2022-08-29T19:57:40.985+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:57:42.990+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:58:40.942+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=12.7Mi, Sys=24.3Mi, NumGC=14"}
-{"@timestamp":"2022-08-29T19:58:40.974+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:58:42.998+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T19:59:40.946+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=12.8Mi, Sys=24.3Mi, NumGC=15"}
-{"@timestamp":"2022-08-29T19:59:40.976+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T19:59:42.992+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:00:40.946+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=13.0Mi, Sys=24.3Mi, NumGC=15"}
-{"@timestamp":"2022-08-29T20:00:40.976+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:00:42.999+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:01:40.936+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=13.1Mi, Sys=24.3Mi, NumGC=16"}
-{"@timestamp":"2022-08-29T20:01:40.982+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:01:43.003+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:02:40.940+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=13.3Mi, Sys=24.3Mi, NumGC=16"}
-{"@timestamp":"2022-08-29T20:02:40.972+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:02:43.000+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:03:40.931+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=13.4Mi, Sys=24.3Mi, NumGC=17"}
-{"@timestamp":"2022-08-29T20:03:40.978+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:03:42.999+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:04:40.937+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=13.6Mi, Sys=24.3Mi, NumGC=17"}
-{"@timestamp":"2022-08-29T20:04:40.984+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:04:42.996+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:05:40.935+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=13.8Mi, Sys=24.3Mi, NumGC=18"}
-{"@timestamp":"2022-08-29T20:05:40.982+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:05:42.998+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:06:40.942+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=13.9Mi, Sys=24.3Mi, NumGC=18"}
-{"@timestamp":"2022-08-29T20:06:40.973+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:06:42.996+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:07:40.938+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=14.1Mi, Sys=24.3Mi, NumGC=19"}
-{"@timestamp":"2022-08-29T20:07:40.985+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:07:43.000+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:08:40.931+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=14.2Mi, Sys=24.3Mi, NumGC=19"}
-{"@timestamp":"2022-08-29T20:08:40.977+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:08:42.997+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:09:40.936+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=14.4Mi, Sys=24.3Mi, NumGC=20"}
-{"@timestamp":"2022-08-29T20:09:40.981+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:09:43.004+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:10:40.941+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=14.6Mi, Sys=24.3Mi, NumGC=20"}
-{"@timestamp":"2022-08-29T20:10:40.972+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:10:42.998+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:11:40.936+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=14.7Mi, Sys=24.3Mi, NumGC=21"}
-{"@timestamp":"2022-08-29T20:11:40.983+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:11:42.995+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:12:40.935+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=14.9Mi, Sys=24.3Mi, NumGC=21"}
-{"@timestamp":"2022-08-29T20:12:40.982+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:12:43.002+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:13:40.932+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=15.0Mi, Sys=24.3Mi, NumGC=22"}
-{"@timestamp":"2022-08-29T20:13:40.979+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:13:43.001+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:14:40.941+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=15.2Mi, Sys=24.3Mi, NumGC=22"}
-{"@timestamp":"2022-08-29T20:14:40.972+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:14:43.000+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:15:40.937+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=15.3Mi, Sys=24.3Mi, NumGC=23"}
-{"@timestamp":"2022-08-29T20:15:40.982+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:15:42.999+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:16:40.934+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=15.5Mi, Sys=24.3Mi, NumGC=23"}
-{"@timestamp":"2022-08-29T20:16:40.980+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:16:42.998+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:17:40.937+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=15.7Mi, Sys=24.3Mi, NumGC=24"}
-{"@timestamp":"2022-08-29T20:17:40.982+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:17:42.990+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:18:40.944+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=15.8Mi, Sys=24.3Mi, NumGC=24"}
-{"@timestamp":"2022-08-29T20:18:40.976+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:18:43.001+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:19:40.943+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=16.0Mi, Sys=24.3Mi, NumGC=25"}
-{"@timestamp":"2022-08-29T20:19:40.975+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:19:42.994+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:20:40.935+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=16.1Mi, Sys=24.3Mi, NumGC=25"}
-{"@timestamp":"2022-08-29T20:20:40.982+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:20:42.995+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:21:40.933+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=16.3Mi, Sys=24.3Mi, NumGC=26"}
-{"@timestamp":"2022-08-29T20:21:40.980+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:21:43.000+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:22:40.944+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=16.4Mi, Sys=24.3Mi, NumGC=26"}
-{"@timestamp":"2022-08-29T20:22:40.975+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:22:43.004+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:23:40.940+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=16.6Mi, Sys=24.3Mi, NumGC=27"}
-{"@timestamp":"2022-08-29T20:23:40.972+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:23:43.004+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:24:40.933+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=16.7Mi, Sys=24.3Mi, NumGC=27"}
-{"@timestamp":"2022-08-29T20:24:40.979+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:24:42.995+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:25:40.934+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=16.9Mi, Sys=24.3Mi, NumGC=28"}
-{"@timestamp":"2022-08-29T20:25:40.979+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:25:43.000+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:26:40.936+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=17.1Mi, Sys=24.3Mi, NumGC=28"}
-{"@timestamp":"2022-08-29T20:26:40.982+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:26:42.996+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:27:40.932+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=17.2Mi, Sys=24.3Mi, NumGC=29"}
-{"@timestamp":"2022-08-29T20:27:40.979+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:27:43.000+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:28:40.945+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=17.4Mi, Sys=24.3Mi, NumGC=29"}
-{"@timestamp":"2022-08-29T20:28:40.976+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:28:43.003+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:29:40.939+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=17.5Mi, Sys=24.3Mi, NumGC=30"}
-{"@timestamp":"2022-08-29T20:29:40.986+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:29:42.999+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:30:40.935+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=17.7Mi, Sys=24.3Mi, NumGC=30"}
-{"@timestamp":"2022-08-29T20:30:40.981+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:30:43.005+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:31:40.941+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=17.8Mi, Sys=24.3Mi, NumGC=31"}
-{"@timestamp":"2022-08-29T20:31:40.972+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:31:43.003+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:32:40.938+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=18.0Mi, Sys=24.3Mi, NumGC=31"}
-{"@timestamp":"2022-08-29T20:32:40.984+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:32:43.004+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:33:40.942+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=18.2Mi, Sys=24.3Mi, NumGC=32"}
-{"@timestamp":"2022-08-29T20:33:40.972+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:33:43.004+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:34:40.942+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=18.3Mi, Sys=24.3Mi, NumGC=32"}
-{"@timestamp":"2022-08-29T20:34:40.972+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:34:42.996+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:35:40.943+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=18.5Mi, Sys=24.3Mi, NumGC=33"}
-{"@timestamp":"2022-08-29T20:35:40.974+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:35:43.003+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:36:40.945+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=18.6Mi, Sys=24.3Mi, NumGC=33"}
-{"@timestamp":"2022-08-29T20:36:40.975+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:36:42.998+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:37:40.940+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=18.8Mi, Sys=24.3Mi, NumGC=34"}
-{"@timestamp":"2022-08-29T20:37:40.971+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:37:42.990+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:38:40.932+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=18.9Mi, Sys=24.3Mi, NumGC=34"}
-{"@timestamp":"2022-08-29T20:38:40.978+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:38:42.990+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:39:40.932+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=19.1Mi, Sys=24.3Mi, NumGC=35"}
-{"@timestamp":"2022-08-29T20:39:40.978+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:39:43.001+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:40:40.935+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=19.2Mi, Sys=24.3Mi, NumGC=35"}
-{"@timestamp":"2022-08-29T20:40:40.980+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:40:43.004+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:41:40.943+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=19.4Mi, Sys=24.3Mi, NumGC=36"}
-{"@timestamp":"2022-08-29T20:41:40.974+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:41:42.990+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:42:40.945+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=19.6Mi, Sys=24.3Mi, NumGC=36"}
-{"@timestamp":"2022-08-29T20:42:40.975+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:42:42.997+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:43:40.937+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=19.7Mi, Sys=24.3Mi, NumGC=37"}
-{"@timestamp":"2022-08-29T20:43:40.983+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:43:43.003+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T20:44:40.933+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=19.9Mi, Sys=24.3Mi, NumGC=37"}
-{"@timestamp":"2022-08-29T20:44:40.980+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-08-29T20:44:42.996+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T23:44:50.515+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=19.9Mi, Sys=24.3Mi, NumGC=38"}
-{"@timestamp":"2022-08-29T23:44:50.515+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-08-29T23:44:50.515+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}

+ 0 - 2080
jyBXSubscribe/api/logs/stat.log-2022-09-08

@@ -1,2080 +0,0 @@
-{"@timestamp":"2022-09-08T08:51:08.650+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=8.1Mi, Sys=17.0Mi, NumGC=3"}
-{"@timestamp":"2022-09-08T08:51:08.698+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T08:52:08.642+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=8.4Mi, Sys=17.3Mi, NumGC=3"}
-{"@timestamp":"2022-09-08T08:52:08.705+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T08:53:08.653+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=8.7Mi, Sys=17.5Mi, NumGC=4"}
-{"@timestamp":"2022-09-08T08:53:08.700+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0"}
-{"@timestamp":"2022-09-08T08:53:25.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.1/s, drops: 0, avg time: 0.0ms, med: 0.5ms, 90th: 0.5ms, 99th: 0.5ms, 99.9th: 0.5ms"}
-{"@timestamp":"2022-09-08T08:54:08.639+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=9.1Mi, Sys=17.5Mi, NumGC=4"}
-{"@timestamp":"2022-09-08T08:54:08.701+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 7, pass: 7, drop: 0"}
-{"@timestamp":"2022-09-08T08:54:13.346+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 1214, reqs: 1"}
-{"@timestamp":"2022-09-08T08:54:25.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.1/s, drops: 0, avg time: 0.3ms, med: 0.1ms, 90th: 2.0ms, 99th: 2.0ms, 99.9th: 2.0ms"}
-{"@timestamp":"2022-09-08T08:55:08.647+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=9.7Mi, Sys=17.5Mi, NumGC=5"}
-{"@timestamp":"2022-09-08T08:55:08.696+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 3, pass: 3, drop: 0"}
-{"@timestamp":"2022-09-08T08:55:11.872+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 729, reqs: 1"}
-{"@timestamp":"2022-09-08T08:55:25.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.1/s, drops: 0, avg time: 0.7ms, med: 1.1ms, 90th: 1.1ms, 99th: 1.1ms, 99.9th: 1.1ms"}
-{"@timestamp":"2022-09-08T08:56:08.652+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=10.0Mi, Sys=17.5Mi, NumGC=5"}
-{"@timestamp":"2022-09-08T08:56:08.698+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0"}
-{"@timestamp":"2022-09-08T08:56:25.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 4143.0ms, med: 4143.7ms, 90th: 4143.7ms, 99th: 4143.7ms, 99.9th: 4143.7ms"}
-{"@timestamp":"2022-09-08T08:56:28.922+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89449, reqs: 1"}
-{"@timestamp":"2022-09-08T08:57:08.653+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.1Mi, TotalAlloc=11.2Mi, Sys=17.5Mi, NumGC=6"}
-{"@timestamp":"2022-09-08T08:57:08.700+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T08:57:16.711+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 988, reqs: 1"}
-{"@timestamp":"2022-09-08T08:57:25.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.1/s, drops: 0, avg time: 13525.7ms, med: 38082.9ms, 90th: 38082.9ms, 99th: 38082.9ms, 99.9th: 38082.9ms"}
-{"@timestamp":"2022-09-08T08:57:48.115+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 718, reqs: 1"}
-{"@timestamp":"2022-09-08T08:58:13.947+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89479, reqs: 1"}
-{"@timestamp":"2022-09-08T08:58:35.494+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=8.9Mi, Sys=17.5Mi, NumGC=4"}
-{"@timestamp":"2022-09-08T08:58:35.540+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 4, pass: 2, drop: 0"}
-{"@timestamp":"2022-09-08T08:58:48.122+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.1/s, drops: 0, avg time: 3203.6ms, med: 8006.7ms, 90th: 8010.6ms, 99th: 8010.6ms, 99.9th: 8010.6ms"}
-{"@timestamp":"2022-09-08T08:59:31.429+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89493, reqs: 1"}
-{"@timestamp":"2022-09-08T09:00:19.800+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=8.4Mi, Sys=17.8Mi, NumGC=4"}
-{"@timestamp":"2022-09-08T09:00:19.832+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:00:31.438+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8009.0ms, med: 8009.7ms, 90th: 8009.7ms, 99th: 8009.7ms, 99.9th: 8009.7ms"}
-{"@timestamp":"2022-09-08T09:00:53.477+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89474, reqs: 1"}
-{"@timestamp":"2022-09-08T09:01:08.963+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 59407, reqs: 1"}
-{"@timestamp":"2022-09-08T09:01:19.795+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=9.1Mi, Sys=17.8Mi, NumGC=4"}
-{"@timestamp":"2022-09-08T09:01:19.842+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T09:01:30.171+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 54471, reqs: 1"}
-{"@timestamp":"2022-09-08T09:01:31.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.1/s, drops: 0, avg time: 4834.3ms, med: 8006.7ms, 90th: 8006.7ms, 99th: 8006.7ms, 99.9th: 8006.7ms"}
-{"@timestamp":"2022-09-08T09:02:12.754+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 53339, reqs: 1"}
-{"@timestamp":"2022-09-08T09:02:19.808+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=9.8Mi, Sys=17.8Mi, NumGC=5"}
-{"@timestamp":"2022-09-08T09:02:19.838+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 4, pass: 2, drop: 0"}
-{"@timestamp":"2022-09-08T09:02:31.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.1/s, drops: 0, avg time: 6284.7ms, med: 8007.2ms, 90th: 8007.2ms, 99th: 8007.2ms, 99.9th: 8007.2ms"}
-{"@timestamp":"2022-09-08T09:03:06.827+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89496, reqs: 1"}
-{"@timestamp":"2022-09-08T09:03:19.803+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=10.2Mi, Sys=17.8Mi, NumGC=5"}
-{"@timestamp":"2022-09-08T09:03:19.834+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:03:31.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8009.0ms, med: 8009.6ms, 90th: 8009.6ms, 99th: 8009.6ms, 99.9th: 8009.6ms"}
-{"@timestamp":"2022-09-08T09:03:54.183+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 60028, reqs: 1"}
-{"@timestamp":"2022-09-08T09:04:19.802+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=10.8Mi, Sys=17.8Mi, NumGC=6"}
-{"@timestamp":"2022-09-08T09:04:19.834+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 4, pass: 2, drop: 0"}
-{"@timestamp":"2022-09-08T09:04:31.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.1/s, drops: 0, avg time: 4258.8ms, med: 5419.1ms, 90th: 8011.4ms, 99th: 8011.4ms, 99.9th: 8011.4ms"}
-{"@timestamp":"2022-09-08T09:05:19.795+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=11.1Mi, Sys=17.8Mi, NumGC=6"}
-{"@timestamp":"2022-09-08T09:05:19.842+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T09:05:31.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-09-08T09:06:19.794+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=11.2Mi, Sys=17.8Mi, NumGC=7"}
-{"@timestamp":"2022-09-08T09:06:19.842+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:06:31.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-09-08T09:07:19.802+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=11.3Mi, Sys=17.8Mi, NumGC=7"}
-{"@timestamp":"2022-09-08T09:07:19.835+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:07:31.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-09-08T09:08:19.808+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=11.4Mi, Sys=17.8Mi, NumGC=8"}
-{"@timestamp":"2022-09-08T09:08:19.840+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:08:31.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-09-08T09:09:19.808+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=11.5Mi, Sys=17.8Mi, NumGC=8"}
-{"@timestamp":"2022-09-08T09:09:19.838+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:09:31.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-09-08T09:10:19.795+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=11.6Mi, Sys=17.8Mi, NumGC=9"}
-{"@timestamp":"2022-09-08T09:10:19.842+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:10:31.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-09-08T09:11:19.796+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=11.7Mi, Sys=17.8Mi, NumGC=9"}
-{"@timestamp":"2022-09-08T09:11:19.845+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:11:31.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-09-08T09:12:19.806+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=11.9Mi, Sys=17.8Mi, NumGC=10"}
-{"@timestamp":"2022-09-08T09:12:19.839+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:12:31.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-09-08T09:13:19.801+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.0Mi, Sys=17.8Mi, NumGC=10"}
-{"@timestamp":"2022-09-08T09:13:19.833+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:13:31.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-09-08T09:14:19.809+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=12.1Mi, Sys=17.8Mi, NumGC=11"}
-{"@timestamp":"2022-09-08T09:14:19.841+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:14:31.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-09-08T09:15:19.797+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.2Mi, Sys=17.8Mi, NumGC=11"}
-{"@timestamp":"2022-09-08T09:15:19.844+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:15:31.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-09-08T09:16:19.799+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=12.3Mi, Sys=17.8Mi, NumGC=12"}
-{"@timestamp":"2022-09-08T09:16:19.846+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:16:31.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-09-08T09:17:19.798+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.4Mi, Sys=17.8Mi, NumGC=12"}
-{"@timestamp":"2022-09-08T09:17:19.846+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:17:31.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-09-08T09:18:19.799+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=12.5Mi, Sys=17.8Mi, NumGC=13"}
-{"@timestamp":"2022-09-08T09:18:19.847+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:18:31.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-09-08T09:19:19.801+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=12.7Mi, Sys=17.8Mi, NumGC=13"}
-{"@timestamp":"2022-09-08T09:19:19.832+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:19:31.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-09-08T09:20:19.795+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=12.8Mi, Sys=17.8Mi, NumGC=14"}
-{"@timestamp":"2022-09-08T09:20:19.843+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:20:31.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-09-08T09:21:19.797+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=12.9Mi, Sys=17.8Mi, NumGC=14"}
-{"@timestamp":"2022-09-08T09:21:19.843+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:21:31.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-09-08T09:22:19.801+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=13.0Mi, Sys=17.8Mi, NumGC=15"}
-{"@timestamp":"2022-09-08T09:22:19.834+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:22:31.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-09-08T09:23:19.808+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=13.1Mi, Sys=17.8Mi, NumGC=15"}
-{"@timestamp":"2022-09-08T09:23:19.839+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:23:31.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-09-08T09:24:19.801+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=13.2Mi, Sys=17.8Mi, NumGC=16"}
-{"@timestamp":"2022-09-08T09:24:19.832+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:24:31.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-09-08T09:25:19.799+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=13.4Mi, Sys=17.8Mi, NumGC=16"}
-{"@timestamp":"2022-09-08T09:25:19.847+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:25:31.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-09-08T09:26:19.795+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=13.5Mi, Sys=17.8Mi, NumGC=17"}
-{"@timestamp":"2022-09-08T09:26:19.842+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:26:31.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-09-08T09:27:19.807+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=13.6Mi, Sys=17.8Mi, NumGC=17"}
-{"@timestamp":"2022-09-08T09:27:19.837+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:27:31.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-09-08T09:28:19.805+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=13.7Mi, Sys=17.8Mi, NumGC=18"}
-{"@timestamp":"2022-09-08T09:28:19.837+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:28:31.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-09-08T09:29:19.805+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=13.8Mi, Sys=17.8Mi, NumGC=18"}
-{"@timestamp":"2022-09-08T09:29:19.836+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:29:31.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-09-08T09:30:19.794+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=13.9Mi, Sys=17.8Mi, NumGC=19"}
-{"@timestamp":"2022-09-08T09:30:19.841+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:30:31.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-09-08T09:31:19.795+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=14.0Mi, Sys=17.8Mi, NumGC=19"}
-{"@timestamp":"2022-09-08T09:31:19.843+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:31:31.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-09-08T09:32:19.797+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.2Mi, Sys=17.8Mi, NumGC=20"}
-{"@timestamp":"2022-09-08T09:32:19.846+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:32:31.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-09-08T09:33:19.809+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=14.3Mi, Sys=17.8Mi, NumGC=20"}
-{"@timestamp":"2022-09-08T09:33:19.841+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:33:31.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-09-08T09:34:19.805+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.4Mi, Sys=17.8Mi, NumGC=21"}
-{"@timestamp":"2022-09-08T09:34:19.838+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:34:31.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-09-08T09:35:02.434+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 60149, reqs: 3"}
-{"@timestamp":"2022-09-08T09:35:19.803+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=14.6Mi, Sys=17.8Mi, NumGC=21"}
-{"@timestamp":"2022-09-08T09:35:19.835+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T09:35:31.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 3617.0ms, med: 3618.0ms, 90th: 3618.0ms, 99th: 3618.0ms, 99.9th: 3618.0ms"}
-{"@timestamp":"2022-09-08T09:36:19.803+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.7Mi, Sys=17.8Mi, NumGC=22"}
-{"@timestamp":"2022-09-08T09:36:19.835+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:36:31.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-09-08T09:37:19.802+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=14.9Mi, Sys=17.8Mi, NumGC=22"}
-{"@timestamp":"2022-09-08T09:37:19.835+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:37:31.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-09-08T09:37:35.194+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89449, reqs: 1"}
-{"@timestamp":"2022-09-08T09:38:19.801+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=15.1Mi, Sys=17.8Mi, NumGC=23"}
-{"@timestamp":"2022-09-08T09:38:19.832+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:38:31.434+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8001.0ms, med: 8001.3ms, 90th: 8001.3ms, 99th: 8001.3ms, 99.9th: 8001.3ms"}
-{"@timestamp":"2022-09-08T09:39:19.802+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=15.2Mi, Sys=17.8Mi, NumGC=23"}
-{"@timestamp":"2022-09-08T09:39:19.834+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:39:31.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-09-08T09:40:19.793+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=15.4Mi, Sys=17.8Mi, NumGC=24"}
-{"@timestamp":"2022-09-08T09:40:19.839+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:40:31.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-09-08T09:41:19.800+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=15.5Mi, Sys=17.8Mi, NumGC=24"}
-{"@timestamp":"2022-09-08T09:41:19.832+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:41:31.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-09-08T09:42:15.381+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 54359, reqs: 1"}
-{"@timestamp":"2022-09-08T09:42:19.809+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=15.8Mi, Sys=17.8Mi, NumGC=25"}
-{"@timestamp":"2022-09-08T09:42:19.841+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T09:42:31.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 2954.0ms, med: 2954.9ms, 90th: 2954.9ms, 99th: 2954.9ms, 99.9th: 2954.9ms"}
-{"@timestamp":"2022-09-08T09:43:19.801+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=16.2Mi, Sys=17.8Mi, NumGC=25"}
-{"@timestamp":"2022-09-08T09:43:19.833+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:43:31.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8004.0ms, med: 8004.2ms, 90th: 8004.2ms, 99th: 8004.2ms, 99.9th: 8004.2ms"}
-{"@timestamp":"2022-09-08T09:43:32.744+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89444, reqs: 1"}
-{"@timestamp":"2022-09-08T09:44:19.805+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=16.4Mi, Sys=17.8Mi, NumGC=26"}
-{"@timestamp":"2022-09-08T09:44:19.838+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:44:31.438+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8000.0ms, med: 8000.3ms, 90th: 8000.3ms, 99th: 8000.3ms, 99.9th: 8000.3ms"}
-{"@timestamp":"2022-09-08T09:45:19.796+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=16.5Mi, Sys=17.8Mi, NumGC=26"}
-{"@timestamp":"2022-09-08T09:45:19.844+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:45:31.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-09-08T09:46:15.638+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 42852, reqs: 1"}
-{"@timestamp":"2022-09-08T09:46:19.794+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=16.9Mi, Sys=17.8Mi, NumGC=27"}
-{"@timestamp":"2022-09-08T09:46:19.842+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T09:46:31.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 1836.0ms, med: 1836.3ms, 90th: 1836.3ms, 99th: 1836.3ms, 99.9th: 1836.3ms"}
-{"@timestamp":"2022-09-08T09:47:14.776+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89453, reqs: 1"}
-{"@timestamp":"2022-09-08T09:47:19.795+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=17.5Mi, Sys=17.8Mi, NumGC=27"}
-{"@timestamp":"2022-09-08T09:47:19.842+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 3, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T09:47:31.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.1/s, drops: 0, avg time: 5334.0ms, med: 8001.8ms, 90th: 8001.8ms, 99th: 8001.8ms, 99.9th: 8001.8ms"}
-{"@timestamp":"2022-09-08T09:48:08.469+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89448, reqs: 1"}
-{"@timestamp":"2022-09-08T09:48:19.796+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=17.8Mi, Sys=17.8Mi, NumGC=28"}
-{"@timestamp":"2022-09-08T09:48:19.844+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:48:31.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8001.0ms, med: 8001.6ms, 90th: 8001.6ms, 99th: 8001.6ms, 99.9th: 8001.6ms"}
-{"@timestamp":"2022-09-08T09:48:34.765+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89474, reqs: 1"}
-{"@timestamp":"2022-09-08T09:49:19.799+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=18.2Mi, Sys=17.8Mi, NumGC=28"}
-{"@timestamp":"2022-09-08T09:49:19.847+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:49:31.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8005.0ms, med: 8005.7ms, 90th: 8005.7ms, 99th: 8005.7ms, 99.9th: 8005.7ms"}
-{"@timestamp":"2022-09-08T09:50:19.799+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=18.5Mi, Sys=17.8Mi, NumGC=29"}
-{"@timestamp":"2022-09-08T09:50:19.846+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:50:31.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-09-08T09:50:48.122+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 59776, reqs: 1"}
-{"@timestamp":"2022-09-08T09:51:19.809+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=18.6Mi, Sys=17.8Mi, NumGC=29"}
-{"@timestamp":"2022-09-08T09:51:19.840+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T09:51:31.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 3573.0ms, med: 3573.2ms, 90th: 3573.2ms, 99th: 3573.2ms, 99.9th: 3573.2ms"}
-{"@timestamp":"2022-09-08T09:52:13.113+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89474, reqs: 1"}
-{"@timestamp":"2022-09-08T09:52:19.798+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=18.9Mi, Sys=17.8Mi, NumGC=30"}
-{"@timestamp":"2022-09-08T09:52:19.846+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:52:31.432+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8006.0ms, med: 8006.8ms, 90th: 8006.8ms, 99th: 8006.8ms, 99.9th: 8006.8ms"}
-{"@timestamp":"2022-09-08T09:53:19.801+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=19.1Mi, Sys=17.8Mi, NumGC=30"}
-{"@timestamp":"2022-09-08T09:53:19.833+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:53:31.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-09-08T09:53:38.079+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89510, reqs: 1"}
-{"@timestamp":"2022-09-08T09:54:19.802+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=19.7Mi, Sys=17.8Mi, NumGC=31"}
-{"@timestamp":"2022-09-08T09:54:19.834+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T09:54:31.438+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8012.0ms, med: 8012.7ms, 90th: 8012.7ms, 99th: 8012.7ms, 99.9th: 8012.7ms"}
-{"@timestamp":"2022-09-08T09:54:38.102+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 44783, reqs: 1"}
-{"@timestamp":"2022-09-08T09:55:19.803+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=20.2Mi, Sys=18.0Mi, NumGC=31"}
-{"@timestamp":"2022-09-08T09:55:19.833+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T09:55:31.435+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 5005.0ms, med: 8005.2ms, 90th: 8005.2ms, 99th: 8005.2ms, 99.9th: 8005.2ms"}
-{"@timestamp":"2022-09-08T09:56:06.333+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89488, reqs: 1"}
-{"@timestamp":"2022-09-08T09:56:19.803+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=20.7Mi, Sys=18.0Mi, NumGC=32"}
-{"@timestamp":"2022-09-08T09:56:19.834+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T09:56:31.440+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 4004.0ms, med: 8008.2ms, 90th: 8008.2ms, 99th: 8008.2ms, 99.9th: 8008.2ms"}
-{"@timestamp":"2022-09-08T09:57:01.422+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 40480, reqs: 1"}
-{"@timestamp":"2022-09-08T09:57:19.801+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=21.1Mi, Sys=18.0Mi, NumGC=32"}
-{"@timestamp":"2022-09-08T09:57:19.833+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T09:57:31.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 1638.0ms, med: 1638.6ms, 90th: 1638.6ms, 99th: 1638.6ms, 99.9th: 1638.6ms"}
-{"@timestamp":"2022-09-08T09:58:19.808+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=21.2Mi, Sys=18.0Mi, NumGC=33"}
-{"@timestamp":"2022-09-08T09:58:19.839+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:58:31.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-09-08T09:58:53.553+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89458, reqs: 1"}
-{"@timestamp":"2022-09-08T09:59:19.798+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=21.5Mi, Sys=18.0Mi, NumGC=33"}
-{"@timestamp":"2022-09-08T09:59:19.844+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T09:59:31.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8002.0ms, med: 8002.9ms, 90th: 8002.9ms, 99th: 8002.9ms, 99.9th: 8002.9ms"}
-{"@timestamp":"2022-09-08T10:00:19.798+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=21.6Mi, Sys=18.0Mi, NumGC=34"}
-{"@timestamp":"2022-09-08T10:00:19.844+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:00:31.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-09-08T10:01:19.794+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=21.7Mi, Sys=18.0Mi, NumGC=34"}
-{"@timestamp":"2022-09-08T10:01:19.842+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:01:31.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-09-08T10:02:19.795+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=21.8Mi, Sys=18.0Mi, NumGC=35"}
-{"@timestamp":"2022-09-08T10:02:19.842+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:02:31.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-09-08T10:02:56.995+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89477, reqs: 1"}
-{"@timestamp":"2022-09-08T10:03:19.801+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=22.3Mi, Sys=18.0Mi, NumGC=35"}
-{"@timestamp":"2022-09-08T10:03:19.833+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:03:31.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8010.5ms, med: 8015.2ms, 90th: 8015.2ms, 99th: 8015.2ms, 99.9th: 8015.2ms"}
-{"@timestamp":"2022-09-08T10:04:19.796+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=22.7Mi, Sys=18.0Mi, NumGC=36"}
-{"@timestamp":"2022-09-08T10:04:19.843+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T10:04:29.789+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89458, reqs: 1"}
-{"@timestamp":"2022-09-08T10:04:31.433+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 7116.0ms, med: 8002.8ms, 90th: 8002.8ms, 99th: 8002.8ms, 99.9th: 8002.8ms"}
-{"@timestamp":"2022-09-08T10:05:19.808+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=23.0Mi, Sys=18.0Mi, NumGC=36"}
-{"@timestamp":"2022-09-08T10:05:19.840+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:05:31.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-09-08T10:06:19.807+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=23.1Mi, Sys=18.0Mi, NumGC=37"}
-{"@timestamp":"2022-09-08T10:06:19.838+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:06:29.675+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 37290, reqs: 1"}
-{"@timestamp":"2022-09-08T10:06:31.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 1391.0ms, med: 1391.1ms, 90th: 1391.1ms, 99th: 1391.1ms, 99.9th: 1391.1ms"}
-{"@timestamp":"2022-09-08T10:07:19.798+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=23.6Mi, Sys=18.0Mi, NumGC=37"}
-{"@timestamp":"2022-09-08T10:07:19.844+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0"}
-{"@timestamp":"2022-09-08T10:07:31.441+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 6974.0ms, med: 6974.8ms, 90th: 6974.8ms, 99th: 6974.8ms, 99.9th: 6974.8ms"}
-{"@timestamp":"2022-09-08T10:08:18.740+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 60154, reqs: 2"}
-{"@timestamp":"2022-09-08T10:08:19.805+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=23.8Mi, Sys=18.0Mi, NumGC=38"}
-{"@timestamp":"2022-09-08T10:08:19.835+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T10:08:31.442+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 3613.0ms, med: 3613.8ms, 90th: 3613.8ms, 99th: 3613.8ms, 99.9th: 3613.8ms"}
-{"@timestamp":"2022-09-08T10:09:19.803+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=24.0Mi, Sys=18.0Mi, NumGC=38"}
-{"@timestamp":"2022-09-08T10:09:19.835+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:09:23.601+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89441, reqs: 1"}
-{"@timestamp":"2022-09-08T10:09:31.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8006.0ms, med: 8006.5ms, 90th: 8006.5ms, 99th: 8006.5ms, 99.9th: 8006.5ms"}
-{"@timestamp":"2022-09-08T10:10:19.797+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=24.3Mi, Sys=18.0Mi, NumGC=39"}
-{"@timestamp":"2022-09-08T10:10:19.845+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:10:31.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8010.0ms, med: 8010.1ms, 90th: 8010.1ms, 99th: 8010.1ms, 99.9th: 8010.1ms"}
-{"@timestamp":"2022-09-08T10:10:33.774+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89484, reqs: 2"}
-{"@timestamp":"2022-09-08T10:11:17.872+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 57317, reqs: 1"}
-{"@timestamp":"2022-09-08T10:11:19.796+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=25.0Mi, Sys=18.0Mi, NumGC=39"}
-{"@timestamp":"2022-09-08T10:11:19.844+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 4, pass: 3, drop: 0"}
-{"@timestamp":"2022-09-08T10:11:31.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.1/s, drops: 0, avg time: 2823.0ms, med: 3285.3ms, 90th: 8007.1ms, 99th: 8007.1ms, 99.9th: 8007.1ms"}
-{"@timestamp":"2022-09-08T10:12:19.796+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=25.1Mi, Sys=18.0Mi, NumGC=40"}
-{"@timestamp":"2022-09-08T10:12:19.845+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:12:31.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-09-08T10:13:19.795+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=25.2Mi, Sys=18.0Mi, NumGC=40"}
-{"@timestamp":"2022-09-08T10:13:19.842+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:13:31.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-09-08T10:14:08.166+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 45931, reqs: 1"}
-{"@timestamp":"2022-09-08T10:14:19.808+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=25.6Mi, Sys=18.0Mi, NumGC=41"}
-{"@timestamp":"2022-09-08T10:14:19.841+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T10:14:31.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 2111.0ms, med: 2111.3ms, 90th: 2111.3ms, 99th: 2111.3ms, 99.9th: 2111.3ms"}
-{"@timestamp":"2022-09-08T10:15:19.809+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=25.7Mi, Sys=18.0Mi, NumGC=41"}
-{"@timestamp":"2022-09-08T10:15:19.840+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:15:31.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-09-08T10:16:19.805+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=25.8Mi, Sys=18.0Mi, NumGC=42"}
-{"@timestamp":"2022-09-08T10:16:19.835+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:16:31.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-09-08T10:17:19.808+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=26.0Mi, Sys=18.0Mi, NumGC=42"}
-{"@timestamp":"2022-09-08T10:17:19.841+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:17:31.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-09-08T10:18:19.799+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=26.1Mi, Sys=18.0Mi, NumGC=43"}
-{"@timestamp":"2022-09-08T10:18:19.847+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:18:31.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-09-08T10:19:19.806+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=26.2Mi, Sys=18.0Mi, NumGC=43"}
-{"@timestamp":"2022-09-08T10:19:19.838+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:19:31.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-09-08T10:20:19.806+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=26.3Mi, Sys=18.0Mi, NumGC=44"}
-{"@timestamp":"2022-09-08T10:20:19.836+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:20:31.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-09-08T10:21:19.802+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=26.4Mi, Sys=18.0Mi, NumGC=44"}
-{"@timestamp":"2022-09-08T10:21:19.834+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:21:31.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-09-08T10:22:19.795+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=26.5Mi, Sys=18.0Mi, NumGC=45"}
-{"@timestamp":"2022-09-08T10:22:19.843+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:22:31.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-09-08T10:23:19.796+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=26.6Mi, Sys=18.0Mi, NumGC=45"}
-{"@timestamp":"2022-09-08T10:23:19.843+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:23:31.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-09-08T10:24:19.809+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=26.7Mi, Sys=18.0Mi, NumGC=46"}
-{"@timestamp":"2022-09-08T10:24:19.840+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:24:31.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-09-08T10:25:19.799+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=26.9Mi, Sys=18.0Mi, NumGC=46"}
-{"@timestamp":"2022-09-08T10:25:19.846+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:25:31.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-09-08T10:26:19.794+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=27.0Mi, Sys=18.0Mi, NumGC=47"}
-{"@timestamp":"2022-09-08T10:26:19.842+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:26:31.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-09-08T10:27:19.802+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=27.1Mi, Sys=18.0Mi, NumGC=47"}
-{"@timestamp":"2022-09-08T10:27:19.832+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:27:31.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-09-08T10:27:43.983+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 76117, reqs: 1"}
-{"@timestamp":"2022-09-08T10:28:19.796+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=27.5Mi, Sys=18.0Mi, NumGC=48"}
-{"@timestamp":"2022-09-08T10:28:19.844+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T10:28:31.439+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 6898.5ms, med: 8003.4ms, 90th: 8003.4ms, 99th: 8003.4ms, 99.9th: 8003.4ms"}
-{"@timestamp":"2022-09-08T10:29:19.801+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=27.9Mi, Sys=18.0Mi, NumGC=48"}
-{"@timestamp":"2022-09-08T10:29:19.832+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T10:29:31.430+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 4002.5ms, med: 8004.6ms, 90th: 8004.6ms, 99th: 8004.6ms, 99.9th: 8004.6ms"}
-{"@timestamp":"2022-09-08T10:29:51.955+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89476, reqs: 1"}
-{"@timestamp":"2022-09-08T10:30:19.807+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=28.2Mi, Sys=18.0Mi, NumGC=49"}
-{"@timestamp":"2022-09-08T10:30:19.838+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:30:31.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8006.0ms, med: 8006.1ms, 90th: 8006.1ms, 99th: 8006.1ms, 99.9th: 8006.1ms"}
-{"@timestamp":"2022-09-08T10:31:19.798+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=28.3Mi, Sys=18.0Mi, NumGC=49"}
-{"@timestamp":"2022-09-08T10:31:19.846+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:31:31.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-09-08T10:32:19.809+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=28.4Mi, Sys=18.0Mi, NumGC=50"}
-{"@timestamp":"2022-09-08T10:32:19.841+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:32:31.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-09-08T10:32:55.973+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 38521, reqs: 1"}
-{"@timestamp":"2022-09-08T10:33:19.804+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=28.9Mi, Sys=18.0Mi, NumGC=50"}
-{"@timestamp":"2022-09-08T10:33:19.837+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0"}
-{"@timestamp":"2022-09-08T10:33:31.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 742.0ms, med: 1483.9ms, 90th: 1483.9ms, 99th: 1483.9ms, 99.9th: 1483.9ms"}
-{"@timestamp":"2022-09-08T10:33:40.261+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 21990, reqs: 1"}
-{"@timestamp":"2022-09-08T10:34:19.794+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=29.2Mi, Sys=18.0Mi, NumGC=51"}
-{"@timestamp":"2022-09-08T10:34:19.843+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T10:34:31.444+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 483.0ms, med: 483.6ms, 90th: 483.6ms, 99th: 483.6ms, 99.9th: 483.6ms"}
-{"@timestamp":"2022-09-08T10:34:51.017+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 21849, reqs: 1"}
-{"@timestamp":"2022-09-08T10:35:19.795+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=29.4Mi, Sys=18.0Mi, NumGC=51"}
-{"@timestamp":"2022-09-08T10:35:19.842+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T10:35:31.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 260.0ms, med: 478.3ms, 90th: 478.3ms, 99th: 478.3ms, 99.9th: 478.3ms"}
-{"@timestamp":"2022-09-08T10:36:19.800+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=29.6Mi, Sys=18.0Mi, NumGC=52"}
-{"@timestamp":"2022-09-08T10:36:19.832+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T10:36:31.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-09-08T10:37:19.807+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=29.8Mi, Sys=18.0Mi, NumGC=52"}
-{"@timestamp":"2022-09-08T10:37:19.839+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:37:31.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-09-08T10:38:19.806+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=29.9Mi, Sys=18.0Mi, NumGC=53"}
-{"@timestamp":"2022-09-08T10:38:19.838+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:38:31.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-09-08T10:39:19.808+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=30.0Mi, Sys=18.0Mi, NumGC=53"}
-{"@timestamp":"2022-09-08T10:39:19.839+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:39:31.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-09-08T10:40:19.797+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=30.1Mi, Sys=18.0Mi, NumGC=54"}
-{"@timestamp":"2022-09-08T10:40:19.843+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:40:31.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-09-08T10:41:19.805+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=30.2Mi, Sys=18.0Mi, NumGC=54"}
-{"@timestamp":"2022-09-08T10:41:19.837+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:41:31.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-09-08T10:42:19.806+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=30.3Mi, Sys=18.0Mi, NumGC=55"}
-{"@timestamp":"2022-09-08T10:42:19.838+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:42:31.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-09-08T10:43:19.803+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=30.5Mi, Sys=18.0Mi, NumGC=55"}
-{"@timestamp":"2022-09-08T10:43:19.835+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:43:31.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-09-08T10:44:19.794+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=30.6Mi, Sys=18.0Mi, NumGC=56"}
-{"@timestamp":"2022-09-08T10:44:19.842+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:44:31.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-09-08T10:45:19.806+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=30.7Mi, Sys=18.0Mi, NumGC=56"}
-{"@timestamp":"2022-09-08T10:45:19.837+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:45:31.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-09-08T10:46:19.803+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=30.8Mi, Sys=18.0Mi, NumGC=57"}
-{"@timestamp":"2022-09-08T10:46:19.835+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:46:31.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-09-08T10:47:19.804+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=30.9Mi, Sys=18.0Mi, NumGC=57"}
-{"@timestamp":"2022-09-08T10:47:19.836+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:47:31.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-09-08T10:48:19.807+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=31.0Mi, Sys=18.0Mi, NumGC=58"}
-{"@timestamp":"2022-09-08T10:48:19.839+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:48:31.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-09-08T10:49:19.809+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=31.1Mi, Sys=18.0Mi, NumGC=58"}
-{"@timestamp":"2022-09-08T10:49:19.840+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:49:31.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-09-08T10:50:19.796+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=31.3Mi, Sys=18.0Mi, NumGC=59"}
-{"@timestamp":"2022-09-08T10:50:19.842+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:50:31.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-09-08T10:51:19.805+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=31.4Mi, Sys=18.0Mi, NumGC=59"}
-{"@timestamp":"2022-09-08T10:51:19.837+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:51:31.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-09-08T10:52:19.795+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=31.5Mi, Sys=18.0Mi, NumGC=60"}
-{"@timestamp":"2022-09-08T10:52:19.844+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:52:31.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-09-08T10:53:19.805+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=31.6Mi, Sys=18.0Mi, NumGC=60"}
-{"@timestamp":"2022-09-08T10:53:19.836+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:53:31.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-09-08T10:54:19.798+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=31.7Mi, Sys=18.0Mi, NumGC=61"}
-{"@timestamp":"2022-09-08T10:54:19.846+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:54:31.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-09-08T10:55:19.795+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=31.8Mi, Sys=18.0Mi, NumGC=61"}
-{"@timestamp":"2022-09-08T10:55:19.844+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:55:31.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-09-08T10:56:19.808+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=31.9Mi, Sys=18.0Mi, NumGC=62"}
-{"@timestamp":"2022-09-08T10:56:19.839+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:56:31.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-09-08T10:57:19.802+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=32.1Mi, Sys=18.0Mi, NumGC=62"}
-{"@timestamp":"2022-09-08T10:57:19.834+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:57:31.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-09-08T10:58:19.796+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=32.2Mi, Sys=18.0Mi, NumGC=63"}
-{"@timestamp":"2022-09-08T10:58:19.843+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:58:31.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-09-08T10:59:19.798+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=32.3Mi, Sys=18.0Mi, NumGC=63"}
-{"@timestamp":"2022-09-08T10:59:19.847+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T10:59:31.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-09-08T11:00:19.801+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=32.6Mi, Sys=18.0Mi, NumGC=64"}
-{"@timestamp":"2022-09-08T11:00:19.833+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:00:31.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-09-08T11:01:19.800+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=32.7Mi, Sys=18.0Mi, NumGC=64"}
-{"@timestamp":"2022-09-08T11:01:19.832+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:01:31.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-09-08T11:02:19.797+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=32.8Mi, Sys=18.0Mi, NumGC=65"}
-{"@timestamp":"2022-09-08T11:02:19.845+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:02:31.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-09-08T11:02:44.899+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 21468, reqs: 1"}
-{"@timestamp":"2022-09-08T11:03:19.796+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=33.0Mi, Sys=18.0Mi, NumGC=65"}
-{"@timestamp":"2022-09-08T11:03:19.842+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T11:03:31.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 461.0ms, med: 461.4ms, 90th: 461.4ms, 99th: 461.4ms, 99.9th: 461.4ms"}
-{"@timestamp":"2022-09-08T11:04:12.139+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 21924, reqs: 1"}
-{"@timestamp":"2022-09-08T11:04:19.799+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=33.2Mi, Sys=18.0Mi, NumGC=66"}
-{"@timestamp":"2022-09-08T11:04:19.844+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T11:04:31.438+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 480.0ms, med: 480.8ms, 90th: 480.8ms, 99th: 480.8ms, 99.9th: 480.8ms"}
-{"@timestamp":"2022-09-08T11:05:19.799+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=33.5Mi, Sys=18.0Mi, NumGC=66"}
-{"@timestamp":"2022-09-08T11:05:19.845+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T11:05:31.443+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 448.0ms, med: 448.2ms, 90th: 448.2ms, 99th: 448.2ms, 99.9th: 448.2ms"}
-{"@timestamp":"2022-09-08T11:06:07.341+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 6986, reqs: 2"}
-{"@timestamp":"2022-09-08T11:06:19.801+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=33.7Mi, Sys=18.0Mi, NumGC=67"}
-{"@timestamp":"2022-09-08T11:06:19.832+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T11:06:31.431+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 48.0ms, med: 48.5ms, 90th: 48.5ms, 99th: 48.5ms, 99.9th: 48.5ms"}
-{"@timestamp":"2022-09-08T11:07:19.808+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.0Mi, TotalAlloc=34.5Mi, Sys=22.2Mi, NumGC=67"}
-{"@timestamp":"2022-09-08T11:07:19.839+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 7, pass: 7, drop: 0"}
-{"@timestamp":"2022-09-08T11:07:31.436+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.1/s, drops: 0, avg time: 6.0ms, med: 6.2ms, 90th: 6.7ms, 99th: 6.7ms, 99.9th: 6.7ms"}
-{"@timestamp":"2022-09-08T11:08:19.807+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=34.7Mi, Sys=22.2Mi, NumGC=68"}
-{"@timestamp":"2022-09-08T11:08:19.838+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:08:31.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-09-08T11:09:19.794+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=34.8Mi, Sys=22.2Mi, NumGC=68"}
-{"@timestamp":"2022-09-08T11:09:19.842+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:09:31.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-09-08T11:10:19.797+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=34.9Mi, Sys=22.2Mi, NumGC=69"}
-{"@timestamp":"2022-09-08T11:10:19.845+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:10:31.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-09-08T11:11:19.793+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=35.0Mi, Sys=22.2Mi, NumGC=69"}
-{"@timestamp":"2022-09-08T11:11:19.839+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:11:31.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-09-08T11:12:19.805+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=35.2Mi, Sys=22.2Mi, NumGC=70"}
-{"@timestamp":"2022-09-08T11:12:19.836+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:12:31.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-09-08T11:13:19.802+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=35.3Mi, Sys=22.2Mi, NumGC=70"}
-{"@timestamp":"2022-09-08T11:13:19.833+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:13:31.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-09-08T11:14:19.805+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=35.4Mi, Sys=22.2Mi, NumGC=71"}
-{"@timestamp":"2022-09-08T11:14:19.836+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:14:31.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-09-08T11:15:19.800+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=35.5Mi, Sys=22.2Mi, NumGC=71"}
-{"@timestamp":"2022-09-08T11:15:19.846+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:15:31.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-09-08T11:16:19.795+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=35.6Mi, Sys=22.2Mi, NumGC=72"}
-{"@timestamp":"2022-09-08T11:16:19.842+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:16:31.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-09-08T11:17:19.804+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=35.7Mi, Sys=22.2Mi, NumGC=72"}
-{"@timestamp":"2022-09-08T11:17:19.837+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:17:31.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-09-08T11:18:19.803+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=35.8Mi, Sys=22.2Mi, NumGC=73"}
-{"@timestamp":"2022-09-08T11:18:19.835+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:18:31.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-09-08T11:19:19.795+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=36.0Mi, Sys=22.2Mi, NumGC=73"}
-{"@timestamp":"2022-09-08T11:19:19.844+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:19:31.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-09-08T11:20:19.803+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=36.1Mi, Sys=22.2Mi, NumGC=74"}
-{"@timestamp":"2022-09-08T11:20:19.833+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:20:31.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-09-08T11:21:19.808+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=36.2Mi, Sys=22.2Mi, NumGC=74"}
-{"@timestamp":"2022-09-08T11:21:19.840+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:21:31.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-09-08T11:22:19.798+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=36.3Mi, Sys=22.2Mi, NumGC=75"}
-{"@timestamp":"2022-09-08T11:22:19.845+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:22:31.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-09-08T11:23:19.799+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=36.4Mi, Sys=22.2Mi, NumGC=75"}
-{"@timestamp":"2022-09-08T11:23:19.846+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:23:31.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-09-08T11:24:19.804+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=36.5Mi, Sys=22.2Mi, NumGC=76"}
-{"@timestamp":"2022-09-08T11:24:19.836+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:24:31.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-09-08T11:25:19.801+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=36.6Mi, Sys=22.2Mi, NumGC=76"}
-{"@timestamp":"2022-09-08T11:25:19.833+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:25:31.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-09-08T11:26:19.807+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=36.8Mi, Sys=22.2Mi, NumGC=77"}
-{"@timestamp":"2022-09-08T11:26:19.839+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:26:31.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-09-08T11:27:19.794+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=36.9Mi, Sys=22.2Mi, NumGC=77"}
-{"@timestamp":"2022-09-08T11:27:19.841+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:27:31.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-09-08T11:28:19.794+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=37.0Mi, Sys=22.2Mi, NumGC=78"}
-{"@timestamp":"2022-09-08T11:28:19.841+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:28:31.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-09-08T11:29:19.806+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=37.1Mi, Sys=22.2Mi, NumGC=78"}
-{"@timestamp":"2022-09-08T11:29:19.837+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:29:31.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-09-08T11:30:19.808+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=37.2Mi, Sys=22.2Mi, NumGC=79"}
-{"@timestamp":"2022-09-08T11:30:19.840+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:30:31.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-09-08T11:31:19.795+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=37.3Mi, Sys=22.2Mi, NumGC=79"}
-{"@timestamp":"2022-09-08T11:31:19.843+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:31:31.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-09-08T11:32:19.799+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=37.4Mi, Sys=22.2Mi, NumGC=80"}
-{"@timestamp":"2022-09-08T11:32:19.832+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:32:31.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-09-08T11:33:19.803+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=37.6Mi, Sys=22.2Mi, NumGC=80"}
-{"@timestamp":"2022-09-08T11:33:19.835+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:33:31.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-09-08T11:34:19.795+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=37.7Mi, Sys=22.2Mi, NumGC=81"}
-{"@timestamp":"2022-09-08T11:34:19.844+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:34:31.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-09-08T11:35:19.804+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=37.8Mi, Sys=22.2Mi, NumGC=81"}
-{"@timestamp":"2022-09-08T11:35:19.836+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:35:31.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-09-08T11:36:19.801+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=37.9Mi, Sys=22.2Mi, NumGC=82"}
-{"@timestamp":"2022-09-08T11:36:19.833+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:36:31.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-09-08T11:37:19.802+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=38.0Mi, Sys=22.2Mi, NumGC=82"}
-{"@timestamp":"2022-09-08T11:37:19.833+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:37:31.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-09-08T11:38:19.798+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=38.1Mi, Sys=22.2Mi, NumGC=83"}
-{"@timestamp":"2022-09-08T11:38:19.846+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:38:31.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-09-08T11:39:19.796+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=38.2Mi, Sys=22.2Mi, NumGC=83"}
-{"@timestamp":"2022-09-08T11:39:19.845+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:39:31.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-09-08T11:40:19.803+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=38.4Mi, Sys=22.2Mi, NumGC=84"}
-{"@timestamp":"2022-09-08T11:40:19.835+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:40:31.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-09-08T11:41:19.802+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=38.5Mi, Sys=22.2Mi, NumGC=84"}
-{"@timestamp":"2022-09-08T11:41:19.833+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:41:31.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-09-08T11:42:19.803+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=38.6Mi, Sys=22.2Mi, NumGC=85"}
-{"@timestamp":"2022-09-08T11:42:19.834+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:42:31.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-09-08T11:43:19.796+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=38.7Mi, Sys=22.2Mi, NumGC=85"}
-{"@timestamp":"2022-09-08T11:43:19.844+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:43:31.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-09-08T11:44:19.802+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=38.8Mi, Sys=22.2Mi, NumGC=86"}
-{"@timestamp":"2022-09-08T11:44:19.834+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:44:31.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-09-08T11:45:19.808+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=38.9Mi, Sys=22.2Mi, NumGC=86"}
-{"@timestamp":"2022-09-08T11:45:19.839+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:45:31.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-09-08T11:46:19.796+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=39.0Mi, Sys=22.2Mi, NumGC=87"}
-{"@timestamp":"2022-09-08T11:46:19.844+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:46:31.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-09-08T11:47:19.806+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=39.1Mi, Sys=22.2Mi, NumGC=87"}
-{"@timestamp":"2022-09-08T11:47:19.836+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:47:31.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-09-08T11:48:19.794+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=39.3Mi, Sys=22.2Mi, NumGC=88"}
-{"@timestamp":"2022-09-08T11:48:19.841+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:48:31.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-09-08T11:49:19.798+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=39.4Mi, Sys=22.2Mi, NumGC=88"}
-{"@timestamp":"2022-09-08T11:49:19.846+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:49:31.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-09-08T11:50:19.794+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=39.5Mi, Sys=22.2Mi, NumGC=89"}
-{"@timestamp":"2022-09-08T11:50:19.841+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:50:31.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-09-08T11:51:19.799+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=39.6Mi, Sys=22.2Mi, NumGC=89"}
-{"@timestamp":"2022-09-08T11:51:19.846+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:51:31.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-09-08T11:52:19.799+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=39.7Mi, Sys=22.2Mi, NumGC=90"}
-{"@timestamp":"2022-09-08T11:52:19.845+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:52:31.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-09-08T11:53:19.797+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=39.8Mi, Sys=22.2Mi, NumGC=90"}
-{"@timestamp":"2022-09-08T11:53:19.846+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:53:31.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-09-08T11:54:19.802+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=39.9Mi, Sys=22.2Mi, NumGC=91"}
-{"@timestamp":"2022-09-08T11:54:19.835+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:54:31.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-09-08T11:55:19.804+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=40.1Mi, Sys=22.2Mi, NumGC=91"}
-{"@timestamp":"2022-09-08T11:55:19.836+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:55:31.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-09-08T11:56:19.802+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=40.2Mi, Sys=22.2Mi, NumGC=92"}
-{"@timestamp":"2022-09-08T11:56:19.835+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:56:31.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-09-08T11:57:19.801+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=40.3Mi, Sys=22.2Mi, NumGC=92"}
-{"@timestamp":"2022-09-08T11:57:19.834+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:57:31.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-09-08T11:58:19.805+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=40.4Mi, Sys=22.2Mi, NumGC=93"}
-{"@timestamp":"2022-09-08T11:58:19.835+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:58:31.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-09-08T11:59:19.794+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=40.5Mi, Sys=22.2Mi, NumGC=93"}
-{"@timestamp":"2022-09-08T11:59:19.843+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T11:59:31.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-09-08T12:00:19.809+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=40.6Mi, Sys=22.2Mi, NumGC=94"}
-{"@timestamp":"2022-09-08T12:00:19.841+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:00:31.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-09-08T12:01:19.799+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=40.7Mi, Sys=22.2Mi, NumGC=94"}
-{"@timestamp":"2022-09-08T12:01:19.832+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:01:31.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-09-08T12:02:19.799+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=40.9Mi, Sys=22.2Mi, NumGC=95"}
-{"@timestamp":"2022-09-08T12:02:19.846+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:02:31.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-09-08T12:03:19.794+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=41.0Mi, Sys=22.2Mi, NumGC=95"}
-{"@timestamp":"2022-09-08T12:03:19.842+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:03:31.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-09-08T12:04:19.803+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=41.1Mi, Sys=22.2Mi, NumGC=96"}
-{"@timestamp":"2022-09-08T12:04:19.834+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:04:31.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-09-08T12:05:19.801+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=41.2Mi, Sys=22.2Mi, NumGC=96"}
-{"@timestamp":"2022-09-08T12:05:19.832+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:05:31.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-09-08T12:06:19.804+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=41.3Mi, Sys=22.2Mi, NumGC=97"}
-{"@timestamp":"2022-09-08T12:06:19.837+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:06:31.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-09-08T12:07:19.807+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=41.4Mi, Sys=22.2Mi, NumGC=97"}
-{"@timestamp":"2022-09-08T12:07:19.840+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:07:31.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-09-08T12:08:19.796+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=41.5Mi, Sys=22.2Mi, NumGC=98"}
-{"@timestamp":"2022-09-08T12:08:19.843+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:08:31.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-09-08T12:09:19.803+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=41.7Mi, Sys=22.2Mi, NumGC=98"}
-{"@timestamp":"2022-09-08T12:09:19.836+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:09:31.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-09-08T12:10:19.795+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=41.8Mi, Sys=22.2Mi, NumGC=99"}
-{"@timestamp":"2022-09-08T12:10:19.843+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:10:31.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-09-08T12:11:19.800+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=41.9Mi, Sys=22.2Mi, NumGC=99"}
-{"@timestamp":"2022-09-08T12:11:19.832+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:11:31.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-09-08T12:12:19.804+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=42.0Mi, Sys=22.2Mi, NumGC=100"}
-{"@timestamp":"2022-09-08T12:12:19.836+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:12:31.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-09-08T12:13:19.806+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=42.1Mi, Sys=22.2Mi, NumGC=100"}
-{"@timestamp":"2022-09-08T12:13:19.839+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:13:31.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-09-08T12:14:19.802+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=42.2Mi, Sys=22.2Mi, NumGC=101"}
-{"@timestamp":"2022-09-08T12:14:19.834+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:14:31.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-09-08T12:15:19.798+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=42.3Mi, Sys=22.2Mi, NumGC=101"}
-{"@timestamp":"2022-09-08T12:15:19.846+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:15:31.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-09-08T12:16:19.809+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=42.4Mi, Sys=22.2Mi, NumGC=102"}
-{"@timestamp":"2022-09-08T12:16:19.842+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:16:31.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-09-08T12:17:19.803+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=42.6Mi, Sys=22.2Mi, NumGC=102"}
-{"@timestamp":"2022-09-08T12:17:19.835+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:17:31.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-09-08T12:18:19.809+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=42.7Mi, Sys=22.2Mi, NumGC=103"}
-{"@timestamp":"2022-09-08T12:18:19.840+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:18:31.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-09-08T12:19:19.806+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=42.8Mi, Sys=22.2Mi, NumGC=103"}
-{"@timestamp":"2022-09-08T12:19:19.837+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:19:31.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-09-08T12:20:19.806+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=42.9Mi, Sys=22.2Mi, NumGC=104"}
-{"@timestamp":"2022-09-08T12:20:19.837+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:20:31.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-09-08T12:21:19.809+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=43.0Mi, Sys=22.2Mi, NumGC=104"}
-{"@timestamp":"2022-09-08T12:21:19.840+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:21:31.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-09-08T12:22:19.798+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=43.1Mi, Sys=22.2Mi, NumGC=105"}
-{"@timestamp":"2022-09-08T12:22:19.844+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:22:31.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-09-08T12:23:19.796+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=43.3Mi, Sys=22.2Mi, NumGC=105"}
-{"@timestamp":"2022-09-08T12:23:19.843+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:23:31.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-09-08T12:24:19.807+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=43.4Mi, Sys=22.2Mi, NumGC=106"}
-{"@timestamp":"2022-09-08T12:24:19.839+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:24:31.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-09-08T12:25:19.808+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=43.5Mi, Sys=22.2Mi, NumGC=106"}
-{"@timestamp":"2022-09-08T12:25:19.840+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:25:31.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-09-08T12:26:19.794+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=43.6Mi, Sys=22.2Mi, NumGC=107"}
-{"@timestamp":"2022-09-08T12:26:19.840+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:26:31.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-09-08T12:27:19.794+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=43.7Mi, Sys=22.2Mi, NumGC=107"}
-{"@timestamp":"2022-09-08T12:27:19.842+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:27:33.333+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:28:21.709+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=43.8Mi, Sys=22.2Mi, NumGC=108"}
-{"@timestamp":"2022-09-08T12:28:21.740+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:28:33.345+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:29:21.705+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=43.9Mi, Sys=22.2Mi, NumGC=108"}
-{"@timestamp":"2022-09-08T12:29:21.737+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:29:33.334+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:30:21.712+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=44.0Mi, Sys=22.2Mi, NumGC=109"}
-{"@timestamp":"2022-09-08T12:30:21.745+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:30:33.343+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:31:21.707+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=44.2Mi, Sys=22.2Mi, NumGC=109"}
-{"@timestamp":"2022-09-08T12:31:21.739+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:31:33.336+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:32:21.701+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=44.3Mi, Sys=22.2Mi, NumGC=110"}
-{"@timestamp":"2022-09-08T12:32:21.748+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:32:33.338+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:33:21.705+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=44.4Mi, Sys=22.2Mi, NumGC=110"}
-{"@timestamp":"2022-09-08T12:33:21.737+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:33:33.339+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:34:21.703+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=44.5Mi, Sys=22.2Mi, NumGC=111"}
-{"@timestamp":"2022-09-08T12:34:21.749+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:34:33.344+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:35:21.700+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=44.6Mi, Sys=22.2Mi, NumGC=111"}
-{"@timestamp":"2022-09-08T12:35:21.747+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:35:33.342+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:36:21.701+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=44.7Mi, Sys=22.2Mi, NumGC=112"}
-{"@timestamp":"2022-09-08T12:36:21.750+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:36:33.337+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:37:21.699+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=44.8Mi, Sys=22.2Mi, NumGC=112"}
-{"@timestamp":"2022-09-08T12:37:21.746+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:37:33.336+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:38:21.704+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=45.0Mi, Sys=22.2Mi, NumGC=113"}
-{"@timestamp":"2022-09-08T12:38:21.737+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:38:33.347+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:39:21.709+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=45.1Mi, Sys=22.2Mi, NumGC=113"}
-{"@timestamp":"2022-09-08T12:39:21.743+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:39:33.336+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:40:21.703+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=45.2Mi, Sys=22.2Mi, NumGC=114"}
-{"@timestamp":"2022-09-08T12:40:21.750+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:40:33.344+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:41:21.706+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=45.3Mi, Sys=22.2Mi, NumGC=114"}
-{"@timestamp":"2022-09-08T12:41:21.739+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:41:33.340+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:42:21.707+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=45.4Mi, Sys=22.2Mi, NumGC=115"}
-{"@timestamp":"2022-09-08T12:42:21.738+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:42:33.344+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:43:21.701+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=45.5Mi, Sys=22.2Mi, NumGC=115"}
-{"@timestamp":"2022-09-08T12:43:21.748+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:43:33.339+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:44:21.700+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=45.7Mi, Sys=22.2Mi, NumGC=116"}
-{"@timestamp":"2022-09-08T12:44:21.748+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:44:33.339+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:45:21.700+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=45.8Mi, Sys=22.2Mi, NumGC=116"}
-{"@timestamp":"2022-09-08T12:45:21.748+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:45:33.342+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:46:21.704+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=46.0Mi, Sys=22.2Mi, NumGC=117"}
-{"@timestamp":"2022-09-08T12:46:21.751+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:46:33.345+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:47:21.710+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=46.1Mi, Sys=22.2Mi, NumGC=117"}
-{"@timestamp":"2022-09-08T12:47:21.742+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:47:33.343+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:48:21.705+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=46.3Mi, Sys=22.2Mi, NumGC=118"}
-{"@timestamp":"2022-09-08T12:48:21.737+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:48:33.347+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:49:21.711+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=46.4Mi, Sys=22.2Mi, NumGC=118"}
-{"@timestamp":"2022-09-08T12:49:21.743+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:49:33.337+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:50:21.699+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=46.5Mi, Sys=22.2Mi, NumGC=119"}
-{"@timestamp":"2022-09-08T12:50:21.747+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:50:33.336+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:51:21.705+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=46.6Mi, Sys=22.2Mi, NumGC=119"}
-{"@timestamp":"2022-09-08T12:51:21.738+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:51:33.342+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:52:21.699+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=46.7Mi, Sys=22.2Mi, NumGC=120"}
-{"@timestamp":"2022-09-08T12:52:21.747+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:52:33.339+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:53:21.713+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=46.8Mi, Sys=22.2Mi, NumGC=120"}
-{"@timestamp":"2022-09-08T12:53:21.744+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:53:33.346+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:54:21.705+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=46.9Mi, Sys=22.2Mi, NumGC=121"}
-{"@timestamp":"2022-09-08T12:54:21.736+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:54:33.333+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:55:21.705+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=47.1Mi, Sys=22.2Mi, NumGC=121"}
-{"@timestamp":"2022-09-08T12:55:21.738+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:55:33.345+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:56:21.704+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=47.2Mi, Sys=22.2Mi, NumGC=122"}
-{"@timestamp":"2022-09-08T12:56:21.737+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:56:33.340+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:57:21.700+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=47.3Mi, Sys=22.2Mi, NumGC=122"}
-{"@timestamp":"2022-09-08T12:57:21.748+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:57:33.337+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:58:21.710+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=47.4Mi, Sys=22.2Mi, NumGC=123"}
-{"@timestamp":"2022-09-08T12:58:21.742+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:58:33.338+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T12:59:21.709+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=47.5Mi, Sys=22.2Mi, NumGC=123"}
-{"@timestamp":"2022-09-08T12:59:21.741+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T12:59:33.342+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:00:21.700+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=47.6Mi, Sys=22.2Mi, NumGC=124"}
-{"@timestamp":"2022-09-08T13:00:21.747+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:00:33.334+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:01:21.700+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=47.7Mi, Sys=22.2Mi, NumGC=124"}
-{"@timestamp":"2022-09-08T13:01:21.748+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:01:33.336+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:02:21.700+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=47.9Mi, Sys=22.2Mi, NumGC=125"}
-{"@timestamp":"2022-09-08T13:02:21.748+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:02:33.347+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:03:21.698+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=48.0Mi, Sys=22.2Mi, NumGC=125"}
-{"@timestamp":"2022-09-08T13:03:21.745+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:03:33.345+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:04:21.708+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=48.1Mi, Sys=22.2Mi, NumGC=126"}
-{"@timestamp":"2022-09-08T13:04:21.740+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:04:33.337+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:05:21.710+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=48.2Mi, Sys=22.2Mi, NumGC=126"}
-{"@timestamp":"2022-09-08T13:05:21.742+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:05:33.337+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:06:21.699+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=48.3Mi, Sys=22.2Mi, NumGC=127"}
-{"@timestamp":"2022-09-08T13:06:21.747+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:06:33.347+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:07:21.711+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=48.4Mi, Sys=22.2Mi, NumGC=127"}
-{"@timestamp":"2022-09-08T13:07:21.744+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:07:33.333+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:08:21.709+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=48.5Mi, Sys=22.2Mi, NumGC=128"}
-{"@timestamp":"2022-09-08T13:08:21.742+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:08:33.332+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:09:21.712+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=48.7Mi, Sys=22.2Mi, NumGC=128"}
-{"@timestamp":"2022-09-08T13:09:21.745+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:09:33.335+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:10:21.700+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=48.8Mi, Sys=22.2Mi, NumGC=129"}
-{"@timestamp":"2022-09-08T13:10:21.748+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:10:33.349+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:11:21.699+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=48.9Mi, Sys=22.2Mi, NumGC=129"}
-{"@timestamp":"2022-09-08T13:11:21.747+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:11:33.343+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:12:21.707+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=49.0Mi, Sys=22.2Mi, NumGC=130"}
-{"@timestamp":"2022-09-08T13:12:21.739+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:12:33.337+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:13:21.708+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=49.1Mi, Sys=22.2Mi, NumGC=130"}
-{"@timestamp":"2022-09-08T13:13:21.739+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:13:33.346+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:14:21.707+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=49.2Mi, Sys=22.2Mi, NumGC=131"}
-{"@timestamp":"2022-09-08T13:14:21.739+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:14:33.336+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:15:21.709+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=49.3Mi, Sys=22.2Mi, NumGC=131"}
-{"@timestamp":"2022-09-08T13:15:21.740+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:15:33.343+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:16:21.710+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=49.5Mi, Sys=22.2Mi, NumGC=132"}
-{"@timestamp":"2022-09-08T13:16:21.741+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:16:33.337+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:17:21.701+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=49.6Mi, Sys=22.2Mi, NumGC=132"}
-{"@timestamp":"2022-09-08T13:17:21.750+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:17:33.336+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:18:21.705+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=49.7Mi, Sys=22.2Mi, NumGC=133"}
-{"@timestamp":"2022-09-08T13:18:21.737+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:18:33.347+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:19:21.703+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=49.8Mi, Sys=22.2Mi, NumGC=133"}
-{"@timestamp":"2022-09-08T13:19:21.735+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:19:33.334+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:20:21.705+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=49.9Mi, Sys=22.2Mi, NumGC=134"}
-{"@timestamp":"2022-09-08T13:20:21.737+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:20:33.340+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:21:21.706+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=50.0Mi, Sys=22.2Mi, NumGC=134"}
-{"@timestamp":"2022-09-08T13:21:21.738+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:21:33.339+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:22:21.710+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=50.2Mi, Sys=22.2Mi, NumGC=135"}
-{"@timestamp":"2022-09-08T13:22:21.742+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:22:33.343+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:23:21.706+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=50.4Mi, Sys=22.2Mi, NumGC=135"}
-{"@timestamp":"2022-09-08T13:23:21.739+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:23:33.333+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:24:21.700+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=50.6Mi, Sys=22.2Mi, NumGC=136"}
-{"@timestamp":"2022-09-08T13:24:21.746+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:24:33.340+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:25:21.707+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=50.7Mi, Sys=22.2Mi, NumGC=136"}
-{"@timestamp":"2022-09-08T13:25:21.739+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:25:33.336+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:26:21.697+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=50.8Mi, Sys=22.2Mi, NumGC=137"}
-{"@timestamp":"2022-09-08T13:26:21.744+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:26:33.345+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:27:21.700+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=50.9Mi, Sys=22.2Mi, NumGC=137"}
-{"@timestamp":"2022-09-08T13:27:21.747+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:27:33.334+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:28:21.700+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=51.0Mi, Sys=22.2Mi, NumGC=138"}
-{"@timestamp":"2022-09-08T13:28:21.748+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:28:33.344+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:29:21.698+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=51.2Mi, Sys=22.2Mi, NumGC=138"}
-{"@timestamp":"2022-09-08T13:29:21.744+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:29:33.334+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:30:21.701+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=51.3Mi, Sys=22.2Mi, NumGC=139"}
-{"@timestamp":"2022-09-08T13:30:21.748+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:30:33.346+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:31:21.708+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=51.4Mi, Sys=22.2Mi, NumGC=139"}
-{"@timestamp":"2022-09-08T13:31:21.740+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:31:33.340+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:32:21.697+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=51.5Mi, Sys=22.2Mi, NumGC=140"}
-{"@timestamp":"2022-09-08T13:32:21.744+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:32:33.333+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:33:21.709+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=51.6Mi, Sys=22.2Mi, NumGC=140"}
-{"@timestamp":"2022-09-08T13:33:21.740+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:33:33.333+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:34:21.712+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=51.8Mi, Sys=22.2Mi, NumGC=141"}
-{"@timestamp":"2022-09-08T13:34:21.743+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:34:33.347+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:35:21.704+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=51.9Mi, Sys=22.2Mi, NumGC=141"}
-{"@timestamp":"2022-09-08T13:35:21.750+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:35:33.337+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:36:21.706+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=52.0Mi, Sys=22.2Mi, NumGC=142"}
-{"@timestamp":"2022-09-08T13:36:21.737+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:36:33.333+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:37:21.703+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=52.1Mi, Sys=22.2Mi, NumGC=142"}
-{"@timestamp":"2022-09-08T13:37:21.751+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:37:33.344+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:38:21.712+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=52.2Mi, Sys=22.2Mi, NumGC=143"}
-{"@timestamp":"2022-09-08T13:38:21.743+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:38:33.347+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:39:21.704+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=52.4Mi, Sys=22.2Mi, NumGC=143"}
-{"@timestamp":"2022-09-08T13:39:21.735+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:39:33.335+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:40:21.707+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=52.5Mi, Sys=22.2Mi, NumGC=144"}
-{"@timestamp":"2022-09-08T13:40:21.738+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:40:33.336+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:41:21.703+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=52.6Mi, Sys=22.2Mi, NumGC=144"}
-{"@timestamp":"2022-09-08T13:41:21.751+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:41:33.339+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:42:21.710+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=52.7Mi, Sys=22.2Mi, NumGC=145"}
-{"@timestamp":"2022-09-08T13:42:21.742+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:42:33.333+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:43:21.711+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=52.8Mi, Sys=22.2Mi, NumGC=145"}
-{"@timestamp":"2022-09-08T13:43:21.742+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:43:33.338+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:44:21.706+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=52.9Mi, Sys=22.2Mi, NumGC=146"}
-{"@timestamp":"2022-09-08T13:44:21.738+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:44:33.344+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:45:21.702+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=53.1Mi, Sys=22.2Mi, NumGC=146"}
-{"@timestamp":"2022-09-08T13:45:21.750+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:45:33.346+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:46:21.709+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=53.2Mi, Sys=22.2Mi, NumGC=147"}
-{"@timestamp":"2022-09-08T13:46:21.740+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:46:33.345+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:47:21.704+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=53.3Mi, Sys=22.2Mi, NumGC=147"}
-{"@timestamp":"2022-09-08T13:47:21.736+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:47:33.339+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:48:21.698+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=53.4Mi, Sys=22.2Mi, NumGC=148"}
-{"@timestamp":"2022-09-08T13:48:21.745+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:48:33.342+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:49:21.701+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=53.5Mi, Sys=22.2Mi, NumGC=148"}
-{"@timestamp":"2022-09-08T13:49:21.747+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:49:33.339+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:50:21.703+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=53.7Mi, Sys=22.2Mi, NumGC=149"}
-{"@timestamp":"2022-09-08T13:50:21.735+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:50:33.342+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:51:21.708+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=53.8Mi, Sys=22.2Mi, NumGC=149"}
-{"@timestamp":"2022-09-08T13:51:21.739+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:51:33.345+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:52:21.699+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=53.9Mi, Sys=22.2Mi, NumGC=150"}
-{"@timestamp":"2022-09-08T13:52:21.745+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:52:33.332+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:53:21.698+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=54.0Mi, Sys=22.2Mi, NumGC=150"}
-{"@timestamp":"2022-09-08T13:53:21.744+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:53:33.344+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:54:21.704+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=54.1Mi, Sys=22.2Mi, NumGC=151"}
-{"@timestamp":"2022-09-08T13:54:21.735+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:54:33.342+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:55:21.700+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=54.3Mi, Sys=22.2Mi, NumGC=151"}
-{"@timestamp":"2022-09-08T13:55:21.746+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:55:33.345+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:56:21.702+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=54.4Mi, Sys=22.2Mi, NumGC=152"}
-{"@timestamp":"2022-09-08T13:56:21.748+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:56:33.336+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:57:21.703+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=54.5Mi, Sys=22.2Mi, NumGC=152"}
-{"@timestamp":"2022-09-08T13:57:21.736+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:57:33.346+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:58:21.711+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=54.6Mi, Sys=22.2Mi, NumGC=153"}
-{"@timestamp":"2022-09-08T13:58:21.742+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:58:33.345+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T13:59:21.707+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=54.7Mi, Sys=22.2Mi, NumGC=153"}
-{"@timestamp":"2022-09-08T13:59:21.740+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T13:59:33.336+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T14:00:21.708+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=54.8Mi, Sys=22.2Mi, NumGC=154"}
-{"@timestamp":"2022-09-08T14:00:21.740+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:00:33.346+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T14:01:21.706+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=55.0Mi, Sys=22.2Mi, NumGC=154"}
-{"@timestamp":"2022-09-08T14:01:21.738+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:01:33.335+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T14:02:21.700+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=55.2Mi, Sys=22.2Mi, NumGC=155"}
-{"@timestamp":"2022-09-08T14:02:21.747+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:02:33.339+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T14:03:21.710+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=55.3Mi, Sys=22.2Mi, NumGC=155"}
-{"@timestamp":"2022-09-08T14:03:21.741+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:03:33.338+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T14:04:21.704+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=55.4Mi, Sys=22.2Mi, NumGC=156"}
-{"@timestamp":"2022-09-08T14:04:21.747+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:04:33.337+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T14:05:21.704+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=55.5Mi, Sys=22.2Mi, NumGC=156"}
-{"@timestamp":"2022-09-08T14:05:21.736+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:05:33.333+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T14:06:21.711+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=55.6Mi, Sys=22.2Mi, NumGC=157"}
-{"@timestamp":"2022-09-08T14:06:21.742+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:06:33.345+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T14:07:21.697+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=55.8Mi, Sys=22.2Mi, NumGC=157"}
-{"@timestamp":"2022-09-08T14:07:21.745+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:07:33.345+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T14:08:21.705+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=55.9Mi, Sys=22.2Mi, NumGC=158"}
-{"@timestamp":"2022-09-08T14:08:21.736+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:08:33.334+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T14:09:21.700+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=56.0Mi, Sys=22.2Mi, NumGC=158"}
-{"@timestamp":"2022-09-08T14:09:21.747+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:09:33.342+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T14:10:21.699+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=56.1Mi, Sys=22.2Mi, NumGC=159"}
-{"@timestamp":"2022-09-08T14:10:21.746+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:10:33.333+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T14:11:21.707+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=56.2Mi, Sys=22.2Mi, NumGC=159"}
-{"@timestamp":"2022-09-08T14:11:21.751+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:11:33.339+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T14:12:21.708+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=56.3Mi, Sys=22.2Mi, NumGC=160"}
-{"@timestamp":"2022-09-08T14:12:21.739+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:12:33.340+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T14:13:42.242+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=8.1Mi, Sys=17.8Mi, NumGC=4"}
-{"@timestamp":"2022-09-08T14:13:42.275+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:14:42.229+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=8.3Mi, Sys=17.8Mi, NumGC=4"}
-{"@timestamp":"2022-09-08T14:14:42.275+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:15:42.243+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=8.4Mi, Sys=17.8Mi, NumGC=5"}
-{"@timestamp":"2022-09-08T14:15:42.275+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:16:42.243+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=8.6Mi, Sys=17.8Mi, NumGC=5"}
-{"@timestamp":"2022-09-08T14:16:42.275+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:17:42.244+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=8.7Mi, Sys=17.8Mi, NumGC=6"}
-{"@timestamp":"2022-09-08T14:17:42.276+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:18:42.236+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=8.8Mi, Sys=17.8Mi, NumGC=6"}
-{"@timestamp":"2022-09-08T14:18:42.285+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:19:42.231+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=8.9Mi, Sys=17.8Mi, NumGC=7"}
-{"@timestamp":"2022-09-08T14:19:42.279+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:20:42.239+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.0Mi, Sys=17.8Mi, NumGC=7"}
-{"@timestamp":"2022-09-08T14:20:42.287+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:21:42.230+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.1Mi, Sys=17.8Mi, NumGC=8"}
-{"@timestamp":"2022-09-08T14:21:42.277+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:22:42.232+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.3Mi, Sys=17.8Mi, NumGC=8"}
-{"@timestamp":"2022-09-08T14:22:42.280+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:23:42.236+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.4Mi, Sys=17.8Mi, NumGC=9"}
-{"@timestamp":"2022-09-08T14:23:42.283+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:24:42.242+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.5Mi, Sys=17.8Mi, NumGC=9"}
-{"@timestamp":"2022-09-08T14:24:42.274+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:25:42.237+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.6Mi, Sys=17.8Mi, NumGC=10"}
-{"@timestamp":"2022-09-08T14:25:42.285+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:26:42.229+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.7Mi, Sys=17.8Mi, NumGC=10"}
-{"@timestamp":"2022-09-08T14:26:42.277+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:27:42.242+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.8Mi, Sys=17.8Mi, NumGC=11"}
-{"@timestamp":"2022-09-08T14:27:42.272+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:28:42.233+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.9Mi, Sys=17.8Mi, NumGC=11"}
-{"@timestamp":"2022-09-08T14:28:42.279+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:29:42.238+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=10.1Mi, Sys=17.8Mi, NumGC=12"}
-{"@timestamp":"2022-09-08T14:29:42.285+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:30:42.235+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.2Mi, Sys=17.8Mi, NumGC=12"}
-{"@timestamp":"2022-09-08T14:30:42.282+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:31:42.229+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=10.3Mi, Sys=17.8Mi, NumGC=13"}
-{"@timestamp":"2022-09-08T14:31:42.277+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:32:42.232+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.4Mi, Sys=17.8Mi, NumGC=13"}
-{"@timestamp":"2022-09-08T14:32:42.281+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:33:42.244+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=10.5Mi, Sys=17.8Mi, NumGC=14"}
-{"@timestamp":"2022-09-08T14:33:42.275+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:34:42.236+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.6Mi, Sys=17.8Mi, NumGC=14"}
-{"@timestamp":"2022-09-08T14:34:42.282+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:35:42.241+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=10.7Mi, Sys=17.8Mi, NumGC=15"}
-{"@timestamp":"2022-09-08T14:35:42.272+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:36:42.244+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.9Mi, Sys=17.8Mi, NumGC=15"}
-{"@timestamp":"2022-09-08T14:36:42.276+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:37:42.235+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=11.0Mi, Sys=17.8Mi, NumGC=16"}
-{"@timestamp":"2022-09-08T14:37:42.282+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:38:42.235+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=11.1Mi, Sys=17.8Mi, NumGC=16"}
-{"@timestamp":"2022-09-08T14:38:42.281+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:39:42.238+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=11.2Mi, Sys=17.8Mi, NumGC=17"}
-{"@timestamp":"2022-09-08T14:39:42.284+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:40:42.241+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=11.3Mi, Sys=17.8Mi, NumGC=17"}
-{"@timestamp":"2022-09-08T14:40:42.273+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:41:42.241+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=11.4Mi, Sys=17.8Mi, NumGC=18"}
-{"@timestamp":"2022-09-08T14:41:42.273+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:42:42.232+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=11.5Mi, Sys=17.8Mi, NumGC=18"}
-{"@timestamp":"2022-09-08T14:42:42.278+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:43:42.239+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=11.7Mi, Sys=17.8Mi, NumGC=19"}
-{"@timestamp":"2022-09-08T14:43:42.285+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:44:42.231+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=11.8Mi, Sys=17.8Mi, NumGC=19"}
-{"@timestamp":"2022-09-08T14:44:42.278+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:45:42.232+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=11.9Mi, Sys=17.8Mi, NumGC=20"}
-{"@timestamp":"2022-09-08T14:45:42.280+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:46:42.234+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.0Mi, Sys=17.8Mi, NumGC=20"}
-{"@timestamp":"2022-09-08T14:46:42.283+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:47:42.236+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=12.1Mi, Sys=17.8Mi, NumGC=21"}
-{"@timestamp":"2022-09-08T14:47:42.284+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:48:42.233+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.2Mi, Sys=17.8Mi, NumGC=21"}
-{"@timestamp":"2022-09-08T14:48:42.280+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:49:42.245+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=12.3Mi, Sys=17.8Mi, NumGC=22"}
-{"@timestamp":"2022-09-08T14:49:42.276+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:50:42.241+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.5Mi, Sys=17.8Mi, NumGC=22"}
-{"@timestamp":"2022-09-08T14:50:42.274+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:51:42.240+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=12.6Mi, Sys=17.8Mi, NumGC=23"}
-{"@timestamp":"2022-09-08T14:51:42.287+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:52:42.244+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.7Mi, Sys=17.8Mi, NumGC=23"}
-{"@timestamp":"2022-09-08T14:52:42.274+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:53:42.245+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=12.8Mi, Sys=17.8Mi, NumGC=24"}
-{"@timestamp":"2022-09-08T14:53:42.276+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:54:42.244+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.9Mi, Sys=17.8Mi, NumGC=24"}
-{"@timestamp":"2022-09-08T14:54:42.276+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:55:42.242+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=13.0Mi, Sys=17.8Mi, NumGC=25"}
-{"@timestamp":"2022-09-08T14:55:42.274+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:56:42.244+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=13.1Mi, Sys=17.8Mi, NumGC=25"}
-{"@timestamp":"2022-09-08T14:56:42.274+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:57:42.236+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=13.3Mi, Sys=17.8Mi, NumGC=26"}
-{"@timestamp":"2022-09-08T14:57:42.283+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:58:42.232+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=13.4Mi, Sys=17.8Mi, NumGC=26"}
-{"@timestamp":"2022-09-08T14:58:42.280+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T14:59:42.234+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=13.5Mi, Sys=17.8Mi, NumGC=27"}
-{"@timestamp":"2022-09-08T14:59:42.282+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:00:42.235+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=13.6Mi, Sys=17.8Mi, NumGC=27"}
-{"@timestamp":"2022-09-08T15:00:42.282+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:01:42.242+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=13.7Mi, Sys=17.8Mi, NumGC=28"}
-{"@timestamp":"2022-09-08T15:01:42.274+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:02:42.234+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=13.8Mi, Sys=17.8Mi, NumGC=28"}
-{"@timestamp":"2022-09-08T15:02:42.282+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:03:42.243+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=13.9Mi, Sys=17.8Mi, NumGC=29"}
-{"@timestamp":"2022-09-08T15:03:42.276+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:04:42.244+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.1Mi, Sys=17.8Mi, NumGC=29"}
-{"@timestamp":"2022-09-08T15:04:42.274+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:05:42.239+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=14.2Mi, Sys=17.8Mi, NumGC=30"}
-{"@timestamp":"2022-09-08T15:05:42.287+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:06:42.230+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.3Mi, Sys=17.8Mi, NumGC=30"}
-{"@timestamp":"2022-09-08T15:06:42.278+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:07:42.244+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=14.4Mi, Sys=17.8Mi, NumGC=31"}
-{"@timestamp":"2022-09-08T15:07:42.275+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:08:42.239+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=14.6Mi, Sys=17.8Mi, NumGC=31"}
-{"@timestamp":"2022-09-08T15:08:42.286+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T15:08:47.857+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 8405, reqs: 1"}
-{"@timestamp":"2022-09-08T15:09:38.383+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.1/s, drops: 0, avg time: 1622.0ms, med: 71.2ms, 90th: 8004.5ms, 99th: 8004.5ms, 99.9th: 8004.5ms"}
-{"@timestamp":"2022-09-08T15:09:42.231+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=15.4Mi, Sys=17.8Mi, NumGC=32"}
-{"@timestamp":"2022-09-08T15:09:42.278+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 5, pass: 3, drop: 0"}
-{"@timestamp":"2022-09-08T15:09:43.415+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 46643, reqs: 1"}
-{"@timestamp":"2022-09-08T15:10:38.390+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 2175.0ms, med: 2175.6ms, 90th: 2175.6ms, 99th: 2175.6ms, 99.9th: 2175.6ms"}
-{"@timestamp":"2022-09-08T15:10:42.242+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=15.5Mi, Sys=17.8Mi, NumGC=32"}
-{"@timestamp":"2022-09-08T15:10:42.287+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T15:11:38.379+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:11:42.231+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=15.6Mi, Sys=17.8Mi, NumGC=33"}
-{"@timestamp":"2022-09-08T15:11:42.277+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:12:38.382+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:12:42.230+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=15.7Mi, Sys=17.8Mi, NumGC=33"}
-{"@timestamp":"2022-09-08T15:12:42.277+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:13:38.387+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:13:42.238+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=16.0Mi, Sys=17.8Mi, NumGC=34"}
-{"@timestamp":"2022-09-08T15:13:42.285+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:14:24.380+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 85652, reqs: 1"}
-{"@timestamp":"2022-09-08T15:14:56.173+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=8.5Mi, Sys=17.5Mi, NumGC=4"}
-{"@timestamp":"2022-09-08T15:14:56.208+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T15:15:09.272+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89508, reqs: 1"}
-{"@timestamp":"2022-09-08T15:15:24.389+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.1/s, drops: 0, avg time: 5838.0ms, med: 8003.2ms, 90th: 8011.9ms, 99th: 8011.9ms, 99.9th: 8011.9ms"}
-{"@timestamp":"2022-09-08T15:15:56.163+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=9.3Mi, Sys=17.5Mi, NumGC=4"}
-{"@timestamp":"2022-09-08T15:15:56.210+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 3, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T15:16:03.278+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89438, reqs: 1"}
-{"@timestamp":"2022-09-08T15:16:24.385+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8000.0ms, med: 8000.2ms, 90th: 8000.2ms, 99th: 8000.2ms, 99.9th: 8000.2ms"}
-{"@timestamp":"2022-09-08T15:16:56.172+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.5Mi, Sys=17.5Mi, NumGC=5"}
-{"@timestamp":"2022-09-08T15:16:56.220+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:17:24.391+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:17:41.154+08:00","level":"stat","content":"p2c - conn: 192.168.40.101:8001, load: 89507, reqs: 1"}
-{"@timestamp":"2022-09-08T15:17:56.173+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=9.8Mi, Sys=17.5Mi, NumGC=5"}
-{"@timestamp":"2022-09-08T15:17:56.205+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:18:24.384+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8012.0ms, med: 8012.3ms, 90th: 8012.3ms, 99th: 8012.3ms, 99.9th: 8012.3ms"}
-{"@timestamp":"2022-09-08T15:18:56.173+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.1Mi, Sys=17.8Mi, NumGC=6"}
-{"@timestamp":"2022-09-08T15:18:56.205+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:19:24.395+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:19:56.165+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=10.2Mi, Sys=17.8Mi, NumGC=6"}
-{"@timestamp":"2022-09-08T15:19:56.213+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:20:24.382+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:20:56.177+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.3Mi, Sys=18.0Mi, NumGC=7"}
-{"@timestamp":"2022-09-08T15:20:56.209+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:21:24.395+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:21:56.165+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=10.5Mi, Sys=18.0Mi, NumGC=7"}
-{"@timestamp":"2022-09-08T15:21:56.213+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:22:24.392+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:22:56.164+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.6Mi, Sys=18.0Mi, NumGC=8"}
-{"@timestamp":"2022-09-08T15:22:56.213+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:23:24.389+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:23:56.179+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=10.7Mi, Sys=18.0Mi, NumGC=8"}
-{"@timestamp":"2022-09-08T15:23:56.211+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:24:24.395+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:24:56.170+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=10.8Mi, Sys=18.0Mi, NumGC=9"}
-{"@timestamp":"2022-09-08T15:24:56.217+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:25:24.383+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:25:56.164+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.9Mi, Sys=18.0Mi, NumGC=9"}
-{"@timestamp":"2022-09-08T15:25:56.211+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:26:24.383+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:26:56.165+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=11.0Mi, Sys=18.0Mi, NumGC=10"}
-{"@timestamp":"2022-09-08T15:26:56.213+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:27:24.384+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:27:56.168+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=11.2Mi, Sys=18.0Mi, NumGC=10"}
-{"@timestamp":"2022-09-08T15:27:56.216+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:28:24.393+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:28:56.177+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=11.3Mi, Sys=18.0Mi, NumGC=11"}
-{"@timestamp":"2022-09-08T15:28:56.208+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:29:24.384+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:29:56.178+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=11.5Mi, Sys=18.0Mi, NumGC=11"}
-{"@timestamp":"2022-09-08T15:29:56.210+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T15:30:24.382+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:30:56.174+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=11.6Mi, Sys=18.0Mi, NumGC=12"}
-{"@timestamp":"2022-09-08T15:30:56.207+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:31:24.387+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:31:56.165+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=11.7Mi, Sys=18.0Mi, NumGC=12"}
-{"@timestamp":"2022-09-08T15:31:56.213+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:32:24.394+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:32:56.168+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=11.8Mi, Sys=18.0Mi, NumGC=13"}
-{"@timestamp":"2022-09-08T15:32:56.216+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:33:24.395+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:33:56.169+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=11.9Mi, Sys=18.0Mi, NumGC=13"}
-{"@timestamp":"2022-09-08T15:33:56.217+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:34:24.393+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:34:56.174+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=12.1Mi, Sys=18.0Mi, NumGC=14"}
-{"@timestamp":"2022-09-08T15:34:56.205+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:35:24.382+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:35:56.172+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=12.2Mi, Sys=18.0Mi, NumGC=14"}
-{"@timestamp":"2022-09-08T15:35:56.204+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:36:24.383+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:36:56.165+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.3Mi, Sys=18.0Mi, NumGC=15"}
-{"@timestamp":"2022-09-08T15:36:56.213+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:37:24.387+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:37:56.169+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=12.4Mi, Sys=18.0Mi, NumGC=15"}
-{"@timestamp":"2022-09-08T15:37:56.215+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:38:24.392+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:38:56.173+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=12.6Mi, Sys=18.0Mi, NumGC=16"}
-{"@timestamp":"2022-09-08T15:38:56.204+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:39:24.387+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:39:56.178+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=12.8Mi, Sys=18.0Mi, NumGC=16"}
-{"@timestamp":"2022-09-08T15:39:56.210+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T15:40:24.382+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-09-08T15:40:43.113+08:00","level":"stat","content":"p2c - conn: 192.168.40.149:8001, load: 89466, reqs: 1"}
-{"@timestamp":"2022-09-08T15:40:56.168+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=13.3Mi, Sys=18.0Mi, NumGC=17"}
-{"@timestamp":"2022-09-08T15:40:56.215+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T15:41:24.386+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8004.0ms, med: 8004.3ms, 90th: 8004.3ms, 99th: 8004.3ms, 99.9th: 8004.3ms"}
-{"@timestamp":"2022-09-08T15:41:56.169+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=13.4Mi, Sys=18.0Mi, NumGC=17"}
-{"@timestamp":"2022-09-08T15:41:56.216+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:42:24.395+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:42:56.165+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=13.5Mi, Sys=18.0Mi, NumGC=18"}
-{"@timestamp":"2022-09-08T15:42:56.212+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:43:24.386+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:43:56.170+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=13.6Mi, Sys=18.0Mi, NumGC=18"}
-{"@timestamp":"2022-09-08T15:43:56.218+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:44:24.386+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:44:56.175+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=13.8Mi, Sys=18.0Mi, NumGC=19"}
-{"@timestamp":"2022-09-08T15:44:56.206+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:45:24.388+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:45:56.206+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=13.9Mi, Sys=18.0Mi, NumGC=19"}
-{"@timestamp":"2022-09-08T15:45:56.205+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:46:24.396+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:46:56.169+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=14.0Mi, Sys=18.0Mi, NumGC=20"}
-{"@timestamp":"2022-09-08T15:46:56.216+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:47:24.393+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:47:56.168+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.1Mi, Sys=18.0Mi, NumGC=20"}
-{"@timestamp":"2022-09-08T15:47:56.215+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:48:24.390+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:48:56.163+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=14.2Mi, Sys=18.0Mi, NumGC=21"}
-{"@timestamp":"2022-09-08T15:48:56.211+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:49:24.395+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:49:56.173+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.4Mi, Sys=18.0Mi, NumGC=21"}
-{"@timestamp":"2022-09-08T15:49:56.205+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:50:24.397+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:50:56.175+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.6Mi, Sys=18.0Mi, NumGC=22"}
-{"@timestamp":"2022-09-08T15:50:56.206+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T15:51:22.892+08:00","level":"stat","content":"p2c - conn: 192.168.40.149:8001, load: 89501, reqs: 1"}
-{"@timestamp":"2022-09-08T15:51:24.391+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 4005.0ms, med: 8010.6ms, 90th: 8010.6ms, 99th: 8010.6ms, 99.9th: 8010.6ms"}
-{"@timestamp":"2022-09-08T15:51:56.175+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=15.1Mi, Sys=18.0Mi, NumGC=22"}
-{"@timestamp":"2022-09-08T15:51:56.207+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:52:24.386+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:52:56.175+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=15.2Mi, Sys=18.0Mi, NumGC=23"}
-{"@timestamp":"2022-09-08T15:52:56.207+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:53:24.387+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:53:56.164+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=15.3Mi, Sys=18.0Mi, NumGC=23"}
-{"@timestamp":"2022-09-08T15:53:56.213+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:54:24.388+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:54:56.177+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=15.5Mi, Sys=18.0Mi, NumGC=24"}
-{"@timestamp":"2022-09-08T15:54:56.208+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:55:24.386+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:55:56.171+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=15.6Mi, Sys=18.0Mi, NumGC=24"}
-{"@timestamp":"2022-09-08T15:55:56.218+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:56:24.384+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:56:56.178+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=15.7Mi, Sys=18.0Mi, NumGC=25"}
-{"@timestamp":"2022-09-08T15:56:56.212+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:57:24.388+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:57:56.168+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=16.0Mi, Sys=18.0Mi, NumGC=25"}
-{"@timestamp":"2022-09-08T15:57:56.216+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:58:24.396+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T15:58:34.357+08:00","level":"stat","content":"p2c - conn: 192.168.40.149:8001, load: 89528, reqs: 1"}
-{"@timestamp":"2022-09-08T15:58:56.175+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=16.4Mi, Sys=18.0Mi, NumGC=26"}
-{"@timestamp":"2022-09-08T15:58:56.207+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T15:59:37.355+08:00","level":"stat","content":"p2c - conn: 192.168.40.149:8001, load: 68589, reqs: 1"}
-{"@timestamp":"2022-09-08T16:00:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=8.6Mi, Sys=18.3Mi, NumGC=4"}
-{"@timestamp":"2022-09-08T16:00:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T16:00:35.914+08:00","level":"stat","content":"p2c - conn: 192.168.40.149:8001, load: 89515, reqs: 1"}
-{"@timestamp":"2022-09-08T16:00:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.1/s, drops: 0, avg time: 6909.0ms, med: 8013.1ms, 90th: 8013.1ms, 99th: 8013.1ms, 99.9th: 8013.1ms"}
-{"@timestamp":"2022-09-08T16:01:12.874+08:00","level":"stat","content":"p2c - conn: 192.168.40.149:8001, load: 11788, reqs: 1"}
-{"@timestamp":"2022-09-08T16:01:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=10.5Mi, Sys=22.4Mi, NumGC=5"}
-{"@timestamp":"2022-09-08T16:01:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T16:01:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 138.0ms, med: 139.0ms, 90th: 139.0ms, 99th: 139.0ms, 99.9th: 139.0ms"}
-{"@timestamp":"2022-09-08T16:01:43.503+08:00","level":"stat","content":"p2c - conn: 192.168.40.149:8001, load: 89529, reqs: 1"}
-{"@timestamp":"2022-09-08T16:02:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.0Mi, TotalAlloc=11.2Mi, Sys=22.4Mi, NumGC=5"}
-{"@timestamp":"2022-09-08T16:02:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:02:32.437+08:00","level":"stat","content":"p2c - conn: 192.168.40.149:8001, load: 9298, reqs: 1"}
-{"@timestamp":"2022-09-08T16:02:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 4051.0ms, med: 8015.5ms, 90th: 8015.5ms, 99th: 8015.5ms, 99.9th: 8015.5ms"}
-{"@timestamp":"2022-09-08T16:03:26.766+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=11.6Mi, Sys=22.4Mi, NumGC=6"}
-{"@timestamp":"2022-09-08T16:03:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0"}
-{"@timestamp":"2022-09-08T16:03:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 3202.0ms, med: 3202.8ms, 90th: 3202.8ms, 99th: 3202.8ms, 99.9th: 3202.8ms"}
-{"@timestamp":"2022-09-08T16:03:42.582+08:00","level":"stat","content":"p2c - conn: 192.168.40.149:8001, load: 89259, reqs: 2"}
-{"@timestamp":"2022-09-08T16:04:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=12.0Mi, Sys=22.4Mi, NumGC=6"}
-{"@timestamp":"2022-09-08T16:04:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:04:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8000.0ms, med: 8000.6ms, 90th: 8000.6ms, 99th: 8000.6ms, 99.9th: 8000.6ms"}
-{"@timestamp":"2022-09-08T16:04:41.796+08:00","level":"stat","content":"p2c - conn: 192.168.40.149:8001, load: 10054, reqs: 1"}
-{"@timestamp":"2022-09-08T16:05:17.749+08:00","level":"stat","content":"p2c - conn: 192.168.40.149:8001, load: 89491, reqs: 1"}
-{"@timestamp":"2022-09-08T16:05:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=12.8Mi, Sys=22.4Mi, NumGC=7"}
-{"@timestamp":"2022-09-08T16:05:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 3, pass: 2, drop: 0"}
-{"@timestamp":"2022-09-08T16:05:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.1/s, drops: 0, avg time: 2756.3ms, med: 8008.9ms, 90th: 8008.9ms, 99th: 8008.9ms, 99.9th: 8008.9ms"}
-{"@timestamp":"2022-09-08T16:06:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=13.0Mi, Sys=22.4Mi, NumGC=7"}
-{"@timestamp":"2022-09-08T16:06:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:06:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:07:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=13.4Mi, Sys=22.4Mi, NumGC=8"}
-{"@timestamp":"2022-09-08T16:07:26.831+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T16:07:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:07:40.038+08:00","level":"stat","content":"p2c - conn: 192.168.40.149:8001, load: 89474, reqs: 1"}
-{"@timestamp":"2022-09-08T16:08:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=13.8Mi, Sys=22.4Mi, NumGC=8"}
-{"@timestamp":"2022-09-08T16:08:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:08:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8005.0ms, med: 8005.8ms, 90th: 8005.8ms, 99th: 8005.8ms, 99.9th: 8005.8ms"}
-{"@timestamp":"2022-09-08T16:09:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=13.9Mi, Sys=22.4Mi, NumGC=9"}
-{"@timestamp":"2022-09-08T16:09:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:09:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:09:48.727+08:00","level":"stat","content":"p2c - conn: 192.168.40.149:8001, load: 14436, reqs: 1"}
-{"@timestamp":"2022-09-08T16:10:23.108+08:00","level":"stat","content":"p2c - conn: 192.168.40.149:8001, load: 89490, reqs: 1"}
-{"@timestamp":"2022-09-08T16:10:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.9Mi, TotalAlloc=14.5Mi, Sys=22.4Mi, NumGC=9"}
-{"@timestamp":"2022-09-08T16:10:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T16:10:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 4109.0ms, med: 8009.0ms, 90th: 8009.0ms, 99th: 8009.0ms, 99.9th: 8009.0ms"}
-{"@timestamp":"2022-09-08T16:11:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=14.7Mi, Sys=22.4Mi, NumGC=10"}
-{"@timestamp":"2022-09-08T16:11:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:11:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:12:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=14.8Mi, Sys=22.4Mi, NumGC=10"}
-{"@timestamp":"2022-09-08T16:12:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:12:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:13:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=15.0Mi, Sys=22.4Mi, NumGC=10"}
-{"@timestamp":"2022-09-08T16:13:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:13:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:14:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=15.1Mi, Sys=22.4Mi, NumGC=11"}
-{"@timestamp":"2022-09-08T16:14:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:14:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:15:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=15.3Mi, Sys=22.4Mi, NumGC=11"}
-{"@timestamp":"2022-09-08T16:15:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:15:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:16:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=15.5Mi, Sys=22.4Mi, NumGC=12"}
-{"@timestamp":"2022-09-08T16:16:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:16:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:17:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=15.6Mi, Sys=22.4Mi, NumGC=12"}
-{"@timestamp":"2022-09-08T16:17:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:17:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:18:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=15.8Mi, Sys=22.4Mi, NumGC=13"}
-{"@timestamp":"2022-09-08T16:18:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:18:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:19:26.766+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=15.9Mi, Sys=22.4Mi, NumGC=13"}
-{"@timestamp":"2022-09-08T16:19:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:19:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:19:59.395+08:00","level":"stat","content":"p2c - conn: 192.168.40.149:8001, load: 60342, reqs: 1"}
-{"@timestamp":"2022-09-08T16:20:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=16.4Mi, Sys=22.4Mi, NumGC=14"}
-{"@timestamp":"2022-09-08T16:20:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T16:20:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 3641.0ms, med: 3641.8ms, 90th: 3641.8ms, 99th: 3641.8ms, 99.9th: 3641.8ms"}
-{"@timestamp":"2022-09-08T16:21:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=16.5Mi, Sys=22.4Mi, NumGC=14"}
-{"@timestamp":"2022-09-08T16:21:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:21:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:22:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=16.7Mi, Sys=22.4Mi, NumGC=15"}
-{"@timestamp":"2022-09-08T16:22:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:22:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:23:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=16.8Mi, Sys=22.4Mi, NumGC=15"}
-{"@timestamp":"2022-09-08T16:23:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:23:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:24:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=17.0Mi, Sys=22.4Mi, NumGC=16"}
-{"@timestamp":"2022-09-08T16:24:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:24:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:25:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=17.1Mi, Sys=22.4Mi, NumGC=16"}
-{"@timestamp":"2022-09-08T16:25:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:25:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:26:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=17.3Mi, Sys=22.4Mi, NumGC=17"}
-{"@timestamp":"2022-09-08T16:26:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:26:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:27:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=17.4Mi, Sys=22.4Mi, NumGC=17"}
-{"@timestamp":"2022-09-08T16:27:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:27:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:28:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=17.6Mi, Sys=22.4Mi, NumGC=18"}
-{"@timestamp":"2022-09-08T16:28:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:28:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:29:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=17.7Mi, Sys=22.4Mi, NumGC=18"}
-{"@timestamp":"2022-09-08T16:29:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:29:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:30:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=17.9Mi, Sys=22.4Mi, NumGC=19"}
-{"@timestamp":"2022-09-08T16:30:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:30:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:31:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=18.0Mi, Sys=22.4Mi, NumGC=19"}
-{"@timestamp":"2022-09-08T16:31:26.831+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:31:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:32:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=18.2Mi, Sys=22.4Mi, NumGC=20"}
-{"@timestamp":"2022-09-08T16:32:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:32:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:33:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=18.3Mi, Sys=22.4Mi, NumGC=20"}
-{"@timestamp":"2022-09-08T16:33:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:33:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:34:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=18.5Mi, Sys=22.4Mi, NumGC=21"}
-{"@timestamp":"2022-09-08T16:34:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:34:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:35:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=18.6Mi, Sys=22.4Mi, NumGC=21"}
-{"@timestamp":"2022-09-08T16:35:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:35:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:36:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=18.8Mi, Sys=22.4Mi, NumGC=22"}
-{"@timestamp":"2022-09-08T16:36:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:36:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:37:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=18.9Mi, Sys=22.4Mi, NumGC=22"}
-{"@timestamp":"2022-09-08T16:37:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:37:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:38:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=19.1Mi, Sys=22.4Mi, NumGC=23"}
-{"@timestamp":"2022-09-08T16:38:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:38:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:39:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=19.2Mi, Sys=22.4Mi, NumGC=23"}
-{"@timestamp":"2022-09-08T16:39:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:39:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:40:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=19.4Mi, Sys=22.4Mi, NumGC=24"}
-{"@timestamp":"2022-09-08T16:40:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:40:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:41:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=19.5Mi, Sys=22.4Mi, NumGC=24"}
-{"@timestamp":"2022-09-08T16:41:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:41:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:41:51.686+08:00","level":"stat","content":"p2c - conn: 192.168.40.149:8001, load: 89446, reqs: 1"}
-{"@timestamp":"2022-09-08T16:42:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=19.9Mi, Sys=22.4Mi, NumGC=25"}
-{"@timestamp":"2022-09-08T16:42:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:42:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8001.0ms, med: 8001.3ms, 90th: 8001.3ms, 99th: 8001.3ms, 99.9th: 8001.3ms"}
-{"@timestamp":"2022-09-08T16:42:41.199+08:00","level":"stat","content":"p2c - conn: 192.168.40.149:8001, load: 43988, reqs: 1"}
-{"@timestamp":"2022-09-08T16:43:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.1Mi, TotalAlloc=20.4Mi, Sys=22.4Mi, NumGC=25"}
-{"@timestamp":"2022-09-08T16:43:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T16:43:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 1936.0ms, med: 1936.8ms, 90th: 1936.8ms, 99th: 1936.8ms, 99.9th: 1936.8ms"}
-{"@timestamp":"2022-09-08T16:44:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=20.5Mi, Sys=22.4Mi, NumGC=26"}
-{"@timestamp":"2022-09-08T16:44:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:44:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:45:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=20.7Mi, Sys=22.4Mi, NumGC=26"}
-{"@timestamp":"2022-09-08T16:45:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:45:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:46:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=20.8Mi, Sys=22.4Mi, NumGC=27"}
-{"@timestamp":"2022-09-08T16:46:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:46:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:47:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=21.0Mi, Sys=22.4Mi, NumGC=27"}
-{"@timestamp":"2022-09-08T16:47:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:47:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:48:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=21.1Mi, Sys=22.4Mi, NumGC=28"}
-{"@timestamp":"2022-09-08T16:48:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:48:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:49:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=21.3Mi, Sys=22.4Mi, NumGC=28"}
-{"@timestamp":"2022-09-08T16:49:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:49:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:50:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=21.4Mi, Sys=22.4Mi, NumGC=29"}
-{"@timestamp":"2022-09-08T16:50:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:50:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:51:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=21.6Mi, Sys=22.4Mi, NumGC=29"}
-{"@timestamp":"2022-09-08T16:51:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:51:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:52:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=21.7Mi, Sys=22.4Mi, NumGC=30"}
-{"@timestamp":"2022-09-08T16:52:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:52:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:53:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=21.9Mi, Sys=22.4Mi, NumGC=30"}
-{"@timestamp":"2022-09-08T16:53:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:53:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:54:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=22.0Mi, Sys=22.4Mi, NumGC=31"}
-{"@timestamp":"2022-09-08T16:54:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:54:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:55:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=22.2Mi, Sys=22.4Mi, NumGC=31"}
-{"@timestamp":"2022-09-08T16:55:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:55:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:55:47.403+08:00","level":"stat","content":"p2c - conn: 192.168.40.149:8001, load: 89514, reqs: 1"}
-{"@timestamp":"2022-09-08T16:56:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=22.5Mi, Sys=22.4Mi, NumGC=32"}
-{"@timestamp":"2022-09-08T16:56:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:56:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8014.0ms, med: 8014.6ms, 90th: 8014.6ms, 99th: 8014.6ms, 99.9th: 8014.6ms"}
-{"@timestamp":"2022-09-08T16:57:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=22.7Mi, Sys=22.4Mi, NumGC=32"}
-{"@timestamp":"2022-09-08T16:57:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:57:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:58:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=22.8Mi, Sys=22.4Mi, NumGC=33"}
-{"@timestamp":"2022-09-08T16:58:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:58:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T16:59:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=23.0Mi, Sys=22.4Mi, NumGC=33"}
-{"@timestamp":"2022-09-08T16:59:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T16:59:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:00:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=23.1Mi, Sys=22.4Mi, NumGC=34"}
-{"@timestamp":"2022-09-08T17:00:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:00:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:01:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=23.4Mi, Sys=22.4Mi, NumGC=34"}
-{"@timestamp":"2022-09-08T17:01:26.831+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T17:01:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.7ms, 90th: 0.7ms, 99th: 0.7ms, 99.9th: 0.7ms"}
-{"@timestamp":"2022-09-08T17:01:48.886+08:00","level":"stat","content":"p2c - conn: 192.168.40.149:8001, load: 79830, reqs: 1"}
-{"@timestamp":"2022-09-08T17:02:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.9Mi, TotalAlloc=24.0Mi, Sys=22.4Mi, NumGC=35"}
-{"@timestamp":"2022-09-08T17:02:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T17:02:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 7192.5ms, med: 8011.2ms, 90th: 8011.2ms, 99th: 8011.2ms, 99.9th: 8011.2ms"}
-{"@timestamp":"2022-09-08T17:03:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.1Mi, TotalAlloc=24.2Mi, Sys=22.4Mi, NumGC=35"}
-{"@timestamp":"2022-09-08T17:03:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:03:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:04:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=24.3Mi, Sys=22.4Mi, NumGC=36"}
-{"@timestamp":"2022-09-08T17:04:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:04:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:05:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=24.5Mi, Sys=22.4Mi, NumGC=36"}
-{"@timestamp":"2022-09-08T17:05:26.832+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:05:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:06:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=24.7Mi, Sys=22.4Mi, NumGC=37"}
-{"@timestamp":"2022-09-08T17:06:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:06:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:07:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=24.8Mi, Sys=22.4Mi, NumGC=37"}
-{"@timestamp":"2022-09-08T17:07:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:07:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:08:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=25.0Mi, Sys=22.4Mi, NumGC=38"}
-{"@timestamp":"2022-09-08T17:08:26.831+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:08:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:09:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=25.1Mi, Sys=22.4Mi, NumGC=38"}
-{"@timestamp":"2022-09-08T17:09:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:09:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:10:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=25.3Mi, Sys=22.4Mi, NumGC=39"}
-{"@timestamp":"2022-09-08T17:10:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:10:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:11:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=25.4Mi, Sys=22.4Mi, NumGC=39"}
-{"@timestamp":"2022-09-08T17:11:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:11:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:12:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=25.6Mi, Sys=22.4Mi, NumGC=40"}
-{"@timestamp":"2022-09-08T17:12:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:12:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:13:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=25.7Mi, Sys=22.4Mi, NumGC=40"}
-{"@timestamp":"2022-09-08T17:13:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:13:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:14:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=25.9Mi, Sys=22.4Mi, NumGC=41"}
-{"@timestamp":"2022-09-08T17:14:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:14:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:15:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=26.0Mi, Sys=22.4Mi, NumGC=41"}
-{"@timestamp":"2022-09-08T17:15:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:15:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:16:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=26.2Mi, Sys=22.4Mi, NumGC=42"}
-{"@timestamp":"2022-09-08T17:16:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:16:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:17:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=26.3Mi, Sys=22.4Mi, NumGC=42"}
-{"@timestamp":"2022-09-08T17:17:26.831+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:17:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:18:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=26.5Mi, Sys=22.4Mi, NumGC=43"}
-{"@timestamp":"2022-09-08T17:18:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:18:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:19:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=26.6Mi, Sys=22.4Mi, NumGC=43"}
-{"@timestamp":"2022-09-08T17:19:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:19:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:20:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=26.8Mi, Sys=22.4Mi, NumGC=44"}
-{"@timestamp":"2022-09-08T17:20:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:20:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:21:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=26.9Mi, Sys=22.4Mi, NumGC=44"}
-{"@timestamp":"2022-09-08T17:21:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:21:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:22:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=27.1Mi, Sys=22.4Mi, NumGC=45"}
-{"@timestamp":"2022-09-08T17:22:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:22:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:23:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=27.2Mi, Sys=22.4Mi, NumGC=45"}
-{"@timestamp":"2022-09-08T17:23:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:23:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:24:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=27.4Mi, Sys=22.4Mi, NumGC=46"}
-{"@timestamp":"2022-09-08T17:24:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:24:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:25:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=27.5Mi, Sys=22.4Mi, NumGC=46"}
-{"@timestamp":"2022-09-08T17:25:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:25:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:26:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=27.7Mi, Sys=22.4Mi, NumGC=47"}
-{"@timestamp":"2022-09-08T17:26:26.831+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:26:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:27:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=27.8Mi, Sys=22.4Mi, NumGC=47"}
-{"@timestamp":"2022-09-08T17:27:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:27:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:28:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=28.0Mi, Sys=22.4Mi, NumGC=48"}
-{"@timestamp":"2022-09-08T17:28:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:28:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:29:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=28.1Mi, Sys=22.4Mi, NumGC=48"}
-{"@timestamp":"2022-09-08T17:29:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:29:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:30:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=28.2Mi, Sys=22.4Mi, NumGC=49"}
-{"@timestamp":"2022-09-08T17:30:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:30:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:31:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=28.4Mi, Sys=22.4Mi, NumGC=49"}
-{"@timestamp":"2022-09-08T17:31:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:31:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:32:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=28.5Mi, Sys=22.4Mi, NumGC=50"}
-{"@timestamp":"2022-09-08T17:32:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:32:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:33:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=28.7Mi, Sys=22.4Mi, NumGC=50"}
-{"@timestamp":"2022-09-08T17:33:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:33:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:34:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=28.8Mi, Sys=22.4Mi, NumGC=51"}
-{"@timestamp":"2022-09-08T17:34:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:34:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:35:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=29.0Mi, Sys=22.4Mi, NumGC=51"}
-{"@timestamp":"2022-09-08T17:35:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:35:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:36:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=29.1Mi, Sys=22.4Mi, NumGC=52"}
-{"@timestamp":"2022-09-08T17:36:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:36:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:37:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=29.3Mi, Sys=22.4Mi, NumGC=52"}
-{"@timestamp":"2022-09-08T17:37:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:37:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:38:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=29.4Mi, Sys=22.4Mi, NumGC=53"}
-{"@timestamp":"2022-09-08T17:38:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:38:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:39:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=29.6Mi, Sys=22.4Mi, NumGC=53"}
-{"@timestamp":"2022-09-08T17:39:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:39:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:40:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=29.7Mi, Sys=22.4Mi, NumGC=54"}
-{"@timestamp":"2022-09-08T17:40:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:40:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:41:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=29.9Mi, Sys=22.4Mi, NumGC=54"}
-{"@timestamp":"2022-09-08T17:41:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:41:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:42:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=30.0Mi, Sys=22.4Mi, NumGC=55"}
-{"@timestamp":"2022-09-08T17:42:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:42:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:43:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=30.2Mi, Sys=22.4Mi, NumGC=55"}
-{"@timestamp":"2022-09-08T17:43:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:43:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:44:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=30.3Mi, Sys=22.4Mi, NumGC=56"}
-{"@timestamp":"2022-09-08T17:44:26.831+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:44:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:45:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=30.5Mi, Sys=22.4Mi, NumGC=56"}
-{"@timestamp":"2022-09-08T17:45:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:45:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:46:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=30.6Mi, Sys=22.4Mi, NumGC=57"}
-{"@timestamp":"2022-09-08T17:46:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:46:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:47:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=30.8Mi, Sys=22.4Mi, NumGC=57"}
-{"@timestamp":"2022-09-08T17:47:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:47:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:48:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=30.9Mi, Sys=22.4Mi, NumGC=58"}
-{"@timestamp":"2022-09-08T17:48:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:48:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:49:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=31.1Mi, Sys=22.4Mi, NumGC=58"}
-{"@timestamp":"2022-09-08T17:49:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:49:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:50:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=31.2Mi, Sys=22.4Mi, NumGC=59"}
-{"@timestamp":"2022-09-08T17:50:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:50:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:51:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=31.4Mi, Sys=22.4Mi, NumGC=59"}
-{"@timestamp":"2022-09-08T17:51:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:51:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:52:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=31.5Mi, Sys=22.4Mi, NumGC=60"}
-{"@timestamp":"2022-09-08T17:52:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:52:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:53:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=31.7Mi, Sys=22.4Mi, NumGC=60"}
-{"@timestamp":"2022-09-08T17:53:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:53:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:54:26.766+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=31.8Mi, Sys=22.4Mi, NumGC=61"}
-{"@timestamp":"2022-09-08T17:54:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:54:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:55:26.765+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=32.0Mi, Sys=22.4Mi, NumGC=61"}
-{"@timestamp":"2022-09-08T17:55:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:55:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:56:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=32.1Mi, Sys=22.4Mi, NumGC=62"}
-{"@timestamp":"2022-09-08T17:56:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:56:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:57:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=32.3Mi, Sys=22.4Mi, NumGC=62"}
-{"@timestamp":"2022-09-08T17:57:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:57:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:58:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=32.4Mi, Sys=22.4Mi, NumGC=63"}
-{"@timestamp":"2022-09-08T17:58:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:58:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T17:59:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=32.6Mi, Sys=22.4Mi, NumGC=63"}
-{"@timestamp":"2022-09-08T17:59:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T17:59:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:00:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=32.7Mi, Sys=22.4Mi, NumGC=64"}
-{"@timestamp":"2022-09-08T18:00:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:00:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:01:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=32.9Mi, Sys=22.4Mi, NumGC=64"}
-{"@timestamp":"2022-09-08T18:01:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:01:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:02:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=33.0Mi, Sys=22.4Mi, NumGC=65"}
-{"@timestamp":"2022-09-08T18:02:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:02:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:03:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=33.2Mi, Sys=22.4Mi, NumGC=65"}
-{"@timestamp":"2022-09-08T18:03:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:03:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:04:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=33.4Mi, Sys=22.4Mi, NumGC=66"}
-{"@timestamp":"2022-09-08T18:04:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:04:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:05:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=33.5Mi, Sys=22.4Mi, NumGC=66"}
-{"@timestamp":"2022-09-08T18:05:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:05:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:06:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=33.7Mi, Sys=22.4Mi, NumGC=67"}
-{"@timestamp":"2022-09-08T18:06:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:06:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:07:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=33.8Mi, Sys=22.4Mi, NumGC=67"}
-{"@timestamp":"2022-09-08T18:07:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:07:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:08:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=34.0Mi, Sys=22.4Mi, NumGC=68"}
-{"@timestamp":"2022-09-08T18:08:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:08:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:09:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=34.1Mi, Sys=22.4Mi, NumGC=68"}
-{"@timestamp":"2022-09-08T18:09:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:09:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:10:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=34.3Mi, Sys=22.4Mi, NumGC=69"}
-{"@timestamp":"2022-09-08T18:10:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:10:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:11:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=34.4Mi, Sys=22.4Mi, NumGC=69"}
-{"@timestamp":"2022-09-08T18:11:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:11:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:12:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=34.6Mi, Sys=22.4Mi, NumGC=70"}
-{"@timestamp":"2022-09-08T18:12:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:12:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:13:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=34.7Mi, Sys=22.4Mi, NumGC=70"}
-{"@timestamp":"2022-09-08T18:13:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:13:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:14:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=34.9Mi, Sys=22.4Mi, NumGC=71"}
-{"@timestamp":"2022-09-08T18:14:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:14:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:15:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=35.0Mi, Sys=22.4Mi, NumGC=71"}
-{"@timestamp":"2022-09-08T18:15:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:15:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:16:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=35.2Mi, Sys=22.4Mi, NumGC=72"}
-{"@timestamp":"2022-09-08T18:16:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:16:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:17:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=35.3Mi, Sys=22.4Mi, NumGC=72"}
-{"@timestamp":"2022-09-08T18:17:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:17:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:18:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=35.4Mi, Sys=22.4Mi, NumGC=73"}
-{"@timestamp":"2022-09-08T18:18:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:18:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:19:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=35.6Mi, Sys=22.4Mi, NumGC=73"}
-{"@timestamp":"2022-09-08T18:19:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:19:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:20:26.765+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=35.7Mi, Sys=22.4Mi, NumGC=74"}
-{"@timestamp":"2022-09-08T18:20:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:20:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:21:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=35.9Mi, Sys=22.4Mi, NumGC=74"}
-{"@timestamp":"2022-09-08T18:21:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:21:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:22:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=36.0Mi, Sys=22.4Mi, NumGC=75"}
-{"@timestamp":"2022-09-08T18:22:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:22:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:23:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=36.2Mi, Sys=22.4Mi, NumGC=75"}
-{"@timestamp":"2022-09-08T18:23:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:23:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:24:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=36.3Mi, Sys=22.4Mi, NumGC=76"}
-{"@timestamp":"2022-09-08T18:24:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:24:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:25:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=36.5Mi, Sys=22.4Mi, NumGC=76"}
-{"@timestamp":"2022-09-08T18:25:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:25:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:26:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=36.6Mi, Sys=22.4Mi, NumGC=77"}
-{"@timestamp":"2022-09-08T18:26:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:26:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:27:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=36.8Mi, Sys=22.4Mi, NumGC=77"}
-{"@timestamp":"2022-09-08T18:27:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:27:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:28:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=36.9Mi, Sys=22.4Mi, NumGC=78"}
-{"@timestamp":"2022-09-08T18:28:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:28:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:29:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=37.1Mi, Sys=22.4Mi, NumGC=78"}
-{"@timestamp":"2022-09-08T18:29:26.831+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:29:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:30:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=37.4Mi, Sys=22.4Mi, NumGC=79"}
-{"@timestamp":"2022-09-08T18:30:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:30:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:30:38.975+08:00","level":"stat","content":"p2c - conn: 192.168.137.1:8001, load: 89462, reqs: 1"}
-{"@timestamp":"2022-09-08T18:31:07.766+08:00","level":"stat","content":"p2c - conn: 192.168.137.1:8001, load: 89442, reqs: 1"}
-{"@timestamp":"2022-09-08T18:31:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.2Mi, TotalAlloc=38.0Mi, Sys=22.4Mi, NumGC=79"}
-{"@timestamp":"2022-09-08T18:31:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:31:35.938+08:00","level":"stat","content":"p2c - conn: 192.168.137.1:8001, load: 89474, reqs: 1"}
-{"@timestamp":"2022-09-08T18:31:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.1/s, drops: 0, avg time: 8003.3ms, med: 8005.7ms, 90th: 8005.7ms, 99th: 8005.7ms, 99.9th: 8005.7ms"}
-{"@timestamp":"2022-09-08T18:31:49.170+08:00","level":"stat","content":"p2c - conn: 192.168.137.1:8001, load: 89443, reqs: 1"}
-{"@timestamp":"2022-09-08T18:32:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.0Mi, TotalAlloc=38.7Mi, Sys=22.4Mi, NumGC=80"}
-{"@timestamp":"2022-09-08T18:32:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:32:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8000.0ms, med: 8000.1ms, 90th: 8000.1ms, 99th: 8000.1ms, 99.9th: 8000.1ms"}
-{"@timestamp":"2022-09-08T18:33:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.3Mi, TotalAlloc=38.9Mi, Sys=22.4Mi, NumGC=80"}
-{"@timestamp":"2022-09-08T18:33:26.815+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:33:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:34:26.765+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=39.1Mi, Sys=22.4Mi, NumGC=81"}
-{"@timestamp":"2022-09-08T18:34:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:34:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:35:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.9Mi, TotalAlloc=39.3Mi, Sys=22.4Mi, NumGC=81"}
-{"@timestamp":"2022-09-08T18:35:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:35:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:36:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=39.4Mi, Sys=22.4Mi, NumGC=82"}
-{"@timestamp":"2022-09-08T18:36:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:36:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:37:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=39.6Mi, Sys=22.4Mi, NumGC=82"}
-{"@timestamp":"2022-09-08T18:37:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:37:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:38:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=39.7Mi, Sys=22.4Mi, NumGC=83"}
-{"@timestamp":"2022-09-08T18:38:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:38:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:38:51.487+08:00","level":"stat","content":"p2c - conn: 192.168.137.1:8001, load: 89473, reqs: 1"}
-{"@timestamp":"2022-09-08T18:39:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=40.0Mi, Sys=22.4Mi, NumGC=83"}
-{"@timestamp":"2022-09-08T18:39:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:39:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 8005.0ms, med: 8005.5ms, 90th: 8005.5ms, 99th: 8005.5ms, 99.9th: 8005.5ms"}
-{"@timestamp":"2022-09-08T18:39:53.879+08:00","level":"stat","content":"p2c - conn: 192.168.137.1:8001, load: 86733, reqs: 1"}
-{"@timestamp":"2022-09-08T18:40:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=40.5Mi, Sys=22.4Mi, NumGC=84"}
-{"@timestamp":"2022-09-08T18:40:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
-{"@timestamp":"2022-09-08T18:40:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 7522.0ms, med: 7522.8ms, 90th: 7522.8ms, 99th: 7522.8ms, 99.9th: 7522.8ms"}
-{"@timestamp":"2022-09-08T18:41:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.0Mi, TotalAlloc=40.6Mi, Sys=22.4Mi, NumGC=84"}
-{"@timestamp":"2022-09-08T18:41:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:41:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:42:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=40.8Mi, Sys=22.4Mi, NumGC=85"}
-{"@timestamp":"2022-09-08T18:42:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:42:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:43:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.9Mi, TotalAlloc=41.1Mi, Sys=22.4Mi, NumGC=85"}
-{"@timestamp":"2022-09-08T18:43:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:43:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:44:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=41.2Mi, Sys=22.4Mi, NumGC=86"}
-{"@timestamp":"2022-09-08T18:44:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:44:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:45:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=41.4Mi, Sys=22.4Mi, NumGC=86"}
-{"@timestamp":"2022-09-08T18:45:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:45:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:46:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=41.5Mi, Sys=22.4Mi, NumGC=87"}
-{"@timestamp":"2022-09-08T18:46:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:46:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:47:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=41.7Mi, Sys=22.4Mi, NumGC=87"}
-{"@timestamp":"2022-09-08T18:47:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:47:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:48:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=41.8Mi, Sys=22.4Mi, NumGC=88"}
-{"@timestamp":"2022-09-08T18:48:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:48:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:49:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=42.0Mi, Sys=22.4Mi, NumGC=88"}
-{"@timestamp":"2022-09-08T18:49:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:49:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:50:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=42.1Mi, Sys=22.4Mi, NumGC=89"}
-{"@timestamp":"2022-09-08T18:50:26.831+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:50:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:51:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=42.2Mi, Sys=22.4Mi, NumGC=89"}
-{"@timestamp":"2022-09-08T18:51:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:51:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:52:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=42.4Mi, Sys=22.4Mi, NumGC=90"}
-{"@timestamp":"2022-09-08T18:52:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:52:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:53:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=42.5Mi, Sys=22.4Mi, NumGC=90"}
-{"@timestamp":"2022-09-08T18:53:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:53:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:54:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=42.7Mi, Sys=22.4Mi, NumGC=91"}
-{"@timestamp":"2022-09-08T18:54:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:54:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:55:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=42.8Mi, Sys=22.4Mi, NumGC=91"}
-{"@timestamp":"2022-09-08T18:55:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:55:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:56:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=43.0Mi, Sys=22.4Mi, NumGC=92"}
-{"@timestamp":"2022-09-08T18:56:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:56:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:57:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=43.1Mi, Sys=22.4Mi, NumGC=92"}
-{"@timestamp":"2022-09-08T18:57:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:57:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:58:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=43.3Mi, Sys=22.4Mi, NumGC=93"}
-{"@timestamp":"2022-09-08T18:58:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:58:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T18:59:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=43.4Mi, Sys=22.4Mi, NumGC=93"}
-{"@timestamp":"2022-09-08T18:59:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T18:59:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:00:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=43.6Mi, Sys=22.4Mi, NumGC=94"}
-{"@timestamp":"2022-09-08T19:00:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:00:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:01:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=43.7Mi, Sys=22.4Mi, NumGC=94"}
-{"@timestamp":"2022-09-08T19:01:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:01:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:02:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=43.9Mi, Sys=22.4Mi, NumGC=95"}
-{"@timestamp":"2022-09-08T19:02:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:02:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:03:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=44.0Mi, Sys=22.4Mi, NumGC=95"}
-{"@timestamp":"2022-09-08T19:03:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:03:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:04:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=44.2Mi, Sys=22.4Mi, NumGC=96"}
-{"@timestamp":"2022-09-08T19:04:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:04:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:05:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=44.3Mi, Sys=22.4Mi, NumGC=96"}
-{"@timestamp":"2022-09-08T19:05:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:05:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:06:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=44.5Mi, Sys=22.4Mi, NumGC=97"}
-{"@timestamp":"2022-09-08T19:06:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:06:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:07:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=44.6Mi, Sys=22.4Mi, NumGC=97"}
-{"@timestamp":"2022-09-08T19:07:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:07:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:08:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=44.8Mi, Sys=22.4Mi, NumGC=98"}
-{"@timestamp":"2022-09-08T19:08:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:08:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:09:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=44.9Mi, Sys=22.4Mi, NumGC=98"}
-{"@timestamp":"2022-09-08T19:09:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:09:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:10:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=45.1Mi, Sys=22.4Mi, NumGC=99"}
-{"@timestamp":"2022-09-08T19:10:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:10:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:11:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=45.2Mi, Sys=22.4Mi, NumGC=99"}
-{"@timestamp":"2022-09-08T19:11:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:11:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:12:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=45.4Mi, Sys=22.4Mi, NumGC=100"}
-{"@timestamp":"2022-09-08T19:12:26.831+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:12:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:13:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=45.5Mi, Sys=22.4Mi, NumGC=100"}
-{"@timestamp":"2022-09-08T19:13:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:13:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:14:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=45.7Mi, Sys=22.4Mi, NumGC=101"}
-{"@timestamp":"2022-09-08T19:14:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:14:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:15:26.763+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=45.8Mi, Sys=22.4Mi, NumGC=101"}
-{"@timestamp":"2022-09-08T19:15:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:15:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:16:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=46.0Mi, Sys=22.4Mi, NumGC=102"}
-{"@timestamp":"2022-09-08T19:16:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:16:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:17:26.752+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=46.1Mi, Sys=22.4Mi, NumGC=102"}
-{"@timestamp":"2022-09-08T19:17:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:17:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:18:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=46.3Mi, Sys=22.4Mi, NumGC=103"}
-{"@timestamp":"2022-09-08T19:18:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:18:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:19:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=46.4Mi, Sys=22.4Mi, NumGC=103"}
-{"@timestamp":"2022-09-08T19:19:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:19:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:20:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=46.6Mi, Sys=22.4Mi, NumGC=104"}
-{"@timestamp":"2022-09-08T19:20:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:20:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:21:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=46.7Mi, Sys=22.4Mi, NumGC=104"}
-{"@timestamp":"2022-09-08T19:21:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:21:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:22:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=46.9Mi, Sys=22.4Mi, NumGC=105"}
-{"@timestamp":"2022-09-08T19:22:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:22:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:23:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=47.0Mi, Sys=22.4Mi, NumGC=105"}
-{"@timestamp":"2022-09-08T19:23:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:23:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:24:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=47.1Mi, Sys=22.4Mi, NumGC=106"}
-{"@timestamp":"2022-09-08T19:24:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:24:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:25:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=47.3Mi, Sys=22.4Mi, NumGC=106"}
-{"@timestamp":"2022-09-08T19:25:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:25:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:26:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=47.4Mi, Sys=22.4Mi, NumGC=107"}
-{"@timestamp":"2022-09-08T19:26:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:26:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:27:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=47.6Mi, Sys=22.4Mi, NumGC=107"}
-{"@timestamp":"2022-09-08T19:27:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:27:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:28:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=47.7Mi, Sys=22.4Mi, NumGC=108"}
-{"@timestamp":"2022-09-08T19:28:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:28:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:29:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=47.9Mi, Sys=22.4Mi, NumGC=108"}
-{"@timestamp":"2022-09-08T19:29:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:29:37.357+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:30:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=48.0Mi, Sys=22.4Mi, NumGC=109"}
-{"@timestamp":"2022-09-08T19:30:26.831+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:30:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:31:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=48.2Mi, Sys=22.4Mi, NumGC=109"}
-{"@timestamp":"2022-09-08T19:31:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:31:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:32:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=48.3Mi, Sys=22.4Mi, NumGC=110"}
-{"@timestamp":"2022-09-08T19:32:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:32:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:33:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=48.5Mi, Sys=22.4Mi, NumGC=110"}
-{"@timestamp":"2022-09-08T19:33:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:33:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:34:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=48.6Mi, Sys=22.4Mi, NumGC=111"}
-{"@timestamp":"2022-09-08T19:34:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:34:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:35:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=48.8Mi, Sys=22.4Mi, NumGC=111"}
-{"@timestamp":"2022-09-08T19:35:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:35:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:36:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=48.9Mi, Sys=22.4Mi, NumGC=112"}
-{"@timestamp":"2022-09-08T19:36:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:36:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:37:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=49.1Mi, Sys=22.4Mi, NumGC=112"}
-{"@timestamp":"2022-09-08T19:37:26.824+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:37:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:38:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=49.2Mi, Sys=22.4Mi, NumGC=113"}
-{"@timestamp":"2022-09-08T19:38:26.831+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:38:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:39:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=49.4Mi, Sys=22.4Mi, NumGC=113"}
-{"@timestamp":"2022-09-08T19:39:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:39:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:40:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=49.5Mi, Sys=22.4Mi, NumGC=114"}
-{"@timestamp":"2022-09-08T19:40:26.825+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:40:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:41:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=49.7Mi, Sys=22.4Mi, NumGC=114"}
-{"@timestamp":"2022-09-08T19:41:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:41:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:42:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=49.8Mi, Sys=22.4Mi, NumGC=115"}
-{"@timestamp":"2022-09-08T19:42:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:42:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:43:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=50.0Mi, Sys=22.4Mi, NumGC=115"}
-{"@timestamp":"2022-09-08T19:43:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:43:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:44:26.761+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=50.1Mi, Sys=22.4Mi, NumGC=116"}
-{"@timestamp":"2022-09-08T19:44:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:44:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:45:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=50.3Mi, Sys=22.4Mi, NumGC=116"}
-{"@timestamp":"2022-09-08T19:45:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:45:37.367+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:46:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=50.4Mi, Sys=22.4Mi, NumGC=117"}
-{"@timestamp":"2022-09-08T19:46:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:46:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:47:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=50.6Mi, Sys=22.4Mi, NumGC=117"}
-{"@timestamp":"2022-09-08T19:47:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:47:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:48:26.751+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=50.7Mi, Sys=22.4Mi, NumGC=118"}
-{"@timestamp":"2022-09-08T19:48:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:48:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:49:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=50.9Mi, Sys=22.4Mi, NumGC=118"}
-{"@timestamp":"2022-09-08T19:49:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:49:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:50:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=51.0Mi, Sys=22.4Mi, NumGC=119"}
-{"@timestamp":"2022-09-08T19:50:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:50:37.363+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:51:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=51.2Mi, Sys=22.4Mi, NumGC=119"}
-{"@timestamp":"2022-09-08T19:51:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:51:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:52:26.762+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=51.3Mi, Sys=22.4Mi, NumGC=120"}
-{"@timestamp":"2022-09-08T19:52:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:52:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:53:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=51.5Mi, Sys=22.4Mi, NumGC=120"}
-{"@timestamp":"2022-09-08T19:53:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:53:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:54:26.765+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=51.6Mi, Sys=22.4Mi, NumGC=121"}
-{"@timestamp":"2022-09-08T19:54:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:54:37.371+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:55:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=51.8Mi, Sys=22.4Mi, NumGC=121"}
-{"@timestamp":"2022-09-08T19:55:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:55:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:56:26.765+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=51.9Mi, Sys=22.4Mi, NumGC=122"}
-{"@timestamp":"2022-09-08T19:56:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:56:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:57:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=52.1Mi, Sys=22.4Mi, NumGC=122"}
-{"@timestamp":"2022-09-08T19:57:26.827+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:57:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:58:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=52.2Mi, Sys=22.4Mi, NumGC=123"}
-{"@timestamp":"2022-09-08T19:58:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:58:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T19:59:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=52.4Mi, Sys=22.4Mi, NumGC=123"}
-{"@timestamp":"2022-09-08T19:59:26.819+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T19:59:37.368+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T20:00:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=52.5Mi, Sys=22.4Mi, NumGC=124"}
-{"@timestamp":"2022-09-08T20:00:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T20:00:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T20:01:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=52.6Mi, Sys=22.4Mi, NumGC=124"}
-{"@timestamp":"2022-09-08T20:01:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T20:01:37.356+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T20:02:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=52.8Mi, Sys=22.4Mi, NumGC=125"}
-{"@timestamp":"2022-09-08T20:02:26.820+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T20:02:37.360+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T20:03:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=52.9Mi, Sys=22.4Mi, NumGC=125"}
-{"@timestamp":"2022-09-08T20:03:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T20:03:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T20:04:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=53.1Mi, Sys=22.4Mi, NumGC=126"}
-{"@timestamp":"2022-09-08T20:04:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T20:04:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T20:05:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=53.2Mi, Sys=22.4Mi, NumGC=126"}
-{"@timestamp":"2022-09-08T20:05:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T20:05:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T20:06:26.753+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=53.4Mi, Sys=22.4Mi, NumGC=127"}
-{"@timestamp":"2022-09-08T20:06:26.816+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T20:06:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T20:07:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=53.5Mi, Sys=22.4Mi, NumGC=127"}
-{"@timestamp":"2022-09-08T20:07:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T20:07:37.370+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T20:08:26.760+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=53.7Mi, Sys=22.4Mi, NumGC=128"}
-{"@timestamp":"2022-09-08T20:08:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T20:08:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T20:09:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=53.8Mi, Sys=22.4Mi, NumGC=128"}
-{"@timestamp":"2022-09-08T20:09:26.817+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T20:09:37.361+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T20:10:26.765+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=54.0Mi, Sys=22.4Mi, NumGC=129"}
-{"@timestamp":"2022-09-08T20:10:26.828+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T20:10:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T20:11:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=54.1Mi, Sys=22.4Mi, NumGC=129"}
-{"@timestamp":"2022-09-08T20:11:26.826+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T20:11:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T20:12:26.754+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=54.3Mi, Sys=22.4Mi, NumGC=130"}
-{"@timestamp":"2022-09-08T20:12:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T20:12:37.359+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T20:13:26.750+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=54.4Mi, Sys=22.4Mi, NumGC=130"}
-{"@timestamp":"2022-09-08T20:13:26.830+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T20:13:37.364+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T20:14:26.759+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=54.6Mi, Sys=22.4Mi, NumGC=131"}
-{"@timestamp":"2022-09-08T20:14:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T20:14:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T20:15:26.756+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=54.7Mi, Sys=22.4Mi, NumGC=131"}
-{"@timestamp":"2022-09-08T20:15:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T20:15:37.358+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T20:16:26.764+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=54.9Mi, Sys=22.4Mi, NumGC=132"}
-{"@timestamp":"2022-09-08T20:16:26.829+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T20:16:37.355+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T20:17:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=55.0Mi, Sys=22.4Mi, NumGC=132"}
-{"@timestamp":"2022-09-08T20:17:26.818+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T20:17:37.362+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T20:18:26.755+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=55.2Mi, Sys=22.4Mi, NumGC=133"}
-{"@timestamp":"2022-09-08T20:18:26.821+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T20:18:37.369+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T20:19:26.758+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=55.3Mi, Sys=22.4Mi, NumGC=133"}
-{"@timestamp":"2022-09-08T20:19:26.823+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T20:19:37.365+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
-{"@timestamp":"2022-09-08T20:20:26.757+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=55.5Mi, Sys=22.4Mi, NumGC=134"}
-{"@timestamp":"2022-09-08T20:20:26.822+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
-{"@timestamp":"2022-09-08T20:20:37.366+08:00","level":"stat","content":"(bxsubscribe-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}

+ 9 - 0
jyBXSubscribe/rpc/bxsubscribe.proto

@@ -23,6 +23,7 @@ message SubscribeInfosReq {
   string deptId = 17;
   int64 newUserId = 18;
   bool IsEnt=19;
+  string SelectIds=20;
 }
 
 message SubscribeInfosResp {
@@ -92,6 +93,12 @@ message StatusResp{
 	int64 error_code=2;
   	int64 status = 3;
 }
+message ByPushHistoryResp{
+  string error_msg =1;
+  int64 error_code=2;
+  string data = 3;
+}
+
 
 message UpdateSubScribeInfoReq{
 	map<string,CityList> area = 1; //地区
@@ -137,4 +144,6 @@ service Bxsubscribe {
   rpc GetSubSomeInfo(SomeInfoReq) returns(SomeInfoResp);
   //修改订阅信息接口
   rpc UpdateSubScribeInfo(UpdateSubScribeInfoReq)returns(StatusResp);
+  //推送页面筛选导出
+  rpc ByPushHistory(SubscribeInfosReq)returns(ByPushHistoryResp);
 }

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

@@ -13,6 +13,7 @@ import (
 )
 
 type (
+	ByPushHistoryResp      = bxsubscribe.ByPushHistoryResp
 	CityList               = bxsubscribe.CityList
 	Items                  = bxsubscribe.Items
 	Keys                   = bxsubscribe.Keys
@@ -33,6 +34,8 @@ type (
 		GetSubSomeInfo(ctx context.Context, in *SomeInfoReq, opts ...grpc.CallOption) (*SomeInfoResp, error)
 		// 修改订阅信息接口
 		UpdateSubScribeInfo(ctx context.Context, in *UpdateSubScribeInfoReq, opts ...grpc.CallOption) (*StatusResp, error)
+		// 推送页面筛选导出
+		ByPushHistory(ctx context.Context, in *SubscribeInfosReq, opts ...grpc.CallOption) (*ByPushHistoryResp, error)
 	}
 
 	defaultBxsubscribe struct {
@@ -63,3 +66,9 @@ func (m *defaultBxsubscribe) UpdateSubScribeInfo(ctx context.Context, in *Update
 	client := bxsubscribe.NewBxsubscribeClient(m.cli.Conn())
 	return client.UpdateSubScribeInfo(ctx, in, opts...)
 }
+
+// 推送页面筛选导出
+func (m *defaultBxsubscribe) ByPushHistory(ctx context.Context, in *SubscribeInfosReq, opts ...grpc.CallOption) (*ByPushHistoryResp, error) {
+	client := bxsubscribe.NewBxsubscribeClient(m.cli.Conn())
+	return client.ByPushHistory(ctx, in, opts...)
+}

+ 1 - 1
jyBXSubscribe/rpc/etc/db.yaml

@@ -26,7 +26,7 @@ redis:
         - push=127.0.0.1:6379
         - pushcache_1=127.0.0.1:6379
         - pushcache_2_a=127.0.0.1:6379
-        - pushcache_2_b=127.0.0.1:6379
+        - pushcache_2_b=127.0.0.1:5002
 es:
     addr: http://192.168.3.206:9800
     size: 30

+ 113 - 0
jyBXSubscribe/rpc/internal/logic/bypushhistorylogic.go

@@ -0,0 +1,113 @@
+package logic
+
+import (
+	"app.yhyue.com/moapp/jybase/encrypt"
+	"context"
+	"github.com/zeromicro/go-zero/core/logx"
+	IC "jyBXSubscribe/rpc/init"
+	"jyBXSubscribe/rpc/internal/svc"
+	"jyBXSubscribe/rpc/model"
+	"jyBXSubscribe/rpc/type/bxsubscribe"
+	"jyBXSubscribe/rpc/util"
+	"strings"
+	"time"
+)
+
+type ByPushHistoryLogic struct {
+	ctx    context.Context
+	svcCtx *svc.ServiceContext
+	logx.Logger
+}
+
+func NewByPushHistoryLogic(ctx context.Context, svcCtx *svc.ServiceContext) *ByPushHistoryLogic {
+	return &ByPushHistoryLogic{
+		ctx:    ctx,
+		svcCtx: svcCtx,
+		Logger: logx.WithContext(ctx),
+	}
+}
+
+// 推送页面筛选导出
+func (l *ByPushHistoryLogic) ByPushHistory(in *bxsubscribe.SubscribeInfosReq) (*bxsubscribe.ByPushHistoryResp, error) {
+	// todo: add your logic here and delete this line
+	vipType := in.UserType
+	spqp := &model.SubPushQueryParam{
+		Mgo_bidding:      IC.MgoBidding,                      //mongo
+		Bidding:          IC.DB.Mongo.Bidding.Collection,     //招标信息 表
+		Bidding_back:     IC.DB.Mongo.Bidding.CollectionBack, //招标信息备份数据 表名
+		UserId:           in.UserId,                          //用户id
+		PageNum:          1,                                  //当前页码
+		PageSize:         20000,                              //每页多少条数据
+		SelectTime:       in.SelectTime,                      //时间跨度
+		Area:             in.Area,                            //省份
+		City:             in.City,                            //城市
+		Export:           true,
+		Buyerclass:       in.BuyerClass, //采购单位类型
+		Subtype:          in.Subtype,    //信息类型
+		Subscopeclass:    in.Industry,   //行业
+		Key:              in.KeyWords,   //关键词
+		Price:            in.Price,      //价格区间
+		FileExists:       in.FileExists, //是否有附件
+		EntId:            in.EntId,      //商机管理企业id
+		EntUserId:        in.EntUserId,  //商机管理用户id
+		DeptId:           in.DeptId,     //商机管理部门id
+		NewUserId:        in.NewUserId,
+		BaseServiceMysql: IC.BaseServiceMysql,
+		IsEnt:            in.IsEnt,
+	}
+	logx.Info("数据导出查询参数", in)
+	if selectIds := strings.TrimSpace(in.SelectIds); selectIds != "" {
+		//encodeArr := strings.Split(selectIds, ",")
+		//idArr := make([]string, 0, len(encodeArr))
+		//for _, encodeId := range encodeArr {
+		//	if tmp := util.DecodeId(encodeId); tmp != "" {
+		//		idArr = append(idArr, tmp)
+		//	}
+		//}
+		spqp.SelectInfoIds = strings.Split(selectIds, ",")
+	}
+
+	_, _, list := model.NewSubscribePush(vipType).Datas(spqp)
+	if list == nil || len(list) == 0 {
+		return &bxsubscribe.ByPushHistoryResp{
+			ErrorCode: 1,
+			ErrorMsg:  "未查询到数据",
+		}, nil
+	}
+	ids := make([]string, 0, len(list))
+	keyWords := make([]string, 0, len(list))
+	listMap := make(map[string]string)
+	//去重 防止list有重复数据
+	for _, pushData := range list {
+		if pushData.XId != "" {
+			listMap[pushData.XId] = strings.Join(pushData.MatchKeys, ",")
+		}
+	}
+	logx.Info("数据导出搜索条数与去重后对比+++++++++++++", len(list), len(listMap))
+	//获取id与对应关键词
+	for k, v := range listMap {
+		if xid := util.DecodeId(k); len(xid) > 0 {
+			ids = append(ids, xid)
+			keyWords = append(keyWords, v)
+		}
+	}
+	saveData := map[string]interface{}{
+		"s_userid":     in.UserId,
+		"comeinfrom":   "pushHistory",
+		"comeintime":   time.Now().Unix(),
+		"selectIds":    ids,
+		"pushKeyWords": keyWords,
+	}
+
+	_id := IC.Mgo.Save("export_search", saveData)
+	if _id == "" {
+		return &bxsubscribe.ByPushHistoryResp{
+			ErrorCode: 1,
+			ErrorMsg:  "创建导出异常",
+		}, nil
+	}
+
+	return &bxsubscribe.ByPushHistoryResp{
+		Data: encrypt.SE.Encode2Hex(_id),
+	}, nil
+}

+ 6 - 0
jyBXSubscribe/rpc/internal/server/bxsubscribeserver.go

@@ -39,3 +39,9 @@ func (s *BxsubscribeServer) UpdateSubScribeInfo(ctx context.Context, in *bxsubsc
 	l := logic.NewUpdateSubScribeInfoLogic(ctx, s.svcCtx)
 	return l.UpdateSubScribeInfo(in)
 }
+
+// 推送页面筛选导出
+func (s *BxsubscribeServer) ByPushHistory(ctx context.Context, in *bxsubscribe.SubscribeInfosReq) (*bxsubscribe.ByPushHistoryResp, error) {
+	l := logic.NewByPushHistoryLogic(ctx, s.svcCtx)
+	return l.ByPushHistory(in)
+}

+ 190 - 169
jyBXSubscribe/rpc/model/push.go

@@ -25,7 +25,6 @@ import (
 	"time"
 )
 
-//
 const (
 	pageSize            = 100
 	AllSubPushCacheSize = 500
@@ -76,7 +75,7 @@ type PushCa struct {
 	FileExists bool
 }
 
-//查询参数
+// 查询参数
 type SubPushQueryParam struct {
 	Mgo_bidding      mongodb.MongodbSim //
 	Bidding          string             //
@@ -100,10 +99,11 @@ type SubPushQueryParam struct {
 	BaseServiceMysql *mysql.Mysql
 	NewUserId        int64
 	IsEnt            bool
+	SelectInfoIds    []string
 }
 
 func (spqp *SubPushQueryParam) IsEmpty() bool {
-	return spqp.SelectTime == "" && spqp.Area == "" && spqp.City == "" && spqp.Buyerclass == "" && spqp.Subscopeclass == "" && spqp.Subtype == "" && spqp.Key == "" && spqp.Price == "" && spqp.FileExists == ""
+	return (spqp.SelectTime == "" || spqp.SelectTime == "all") && spqp.Area == "" && spqp.City == "" && spqp.Buyerclass == "" && spqp.Subscopeclass == "" && spqp.Subtype == "" && spqp.Key == "" && spqp.Price == "" && spqp.FileExists == ""
 }
 
 type subscribePush struct {
@@ -118,7 +118,7 @@ func NewSubscribePush(module ...string) *subscribePush {
 	return &subscribePush{m}
 }
 
-//从pushcache_2_a中取
+// 从pushcache_2_a中取
 func (s *subscribePush) GetTodayCache(userId string) (*SubPush, error) {
 	pc_a, err := redis.GetNewBytes("pushcache_2_b", s.todayKey(userId))
 	if err != nil {
@@ -134,12 +134,12 @@ func (s *subscribePush) GetTodayCache(userId string) (*SubPush, error) {
 	return p, nil
 }
 
-//往pushcache_2_a中放
+// 往pushcache_2_a中放
 func (s *subscribePush) PutTodayCache(userId string, pc_a *SubPush) {
 	redis.Put("pushcache_2_b", s.todayKey(userId), pc_a, oneDay)
 }
 
-//获取redis key
+// 获取redis key
 func (s *subscribePush) todayKey(userId string) string {
 	return fmt.Sprintf("%s_%s", aboutDbMsg[s.ModuleFlag].RedisKeyFlag, userId)
 }
@@ -147,7 +147,7 @@ func (s *subscribePush) allKey(userId string) string {
 	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" {
@@ -168,14 +168,6 @@ func (s *subscribePush) InfoFormat(p *PushCa, info *map[string]interface{}) *bxs
 	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"])
@@ -267,7 +259,11 @@ func (s *subscribePush) Datas(spqp *SubPushQueryParam) (hasNextPage bool, total
 			result = subPush.Datas[start:end]
 		}
 		total = int64(length)
+<<<<<<< HEAD
 	} else if spqp.IsEmpty() && (spqp.PageNum-1)*spqp.PageSize < 500 { //全部,没有过滤条件 之前缓存500
+=======
+	} else if spqp.IsEmpty() && (spqp.PageNum-1)*spqp.PageSize < 250 && len(spqp.SelectInfoIds) == 0 && !spqp.Export { //全部,没有过滤条件 之前缓存5页*50条=250 非数据导出
+>>>>>>> feature/v1.1.5
 		logx.Info("a2:", s.allKey(spqp.UserId))
 		allCache := &SubPush{}
 		var err error
@@ -287,7 +283,7 @@ func (s *subscribePush) Datas(spqp *SubPushQueryParam) (hasNextPage bool, total
 				Count: countSearch,
 			}
 			if spqp.IsEnt == false {
-				s.PutTodayCache(spqp.UserId, allCache)
+				s.PutAllCache(spqp.UserId, allCache)
 			}
 		}
 		length := len(allCache.Datas)
@@ -311,160 +307,172 @@ func (s *subscribePush) Datas(spqp *SubPushQueryParam) (hasNextPage bool, total
 	return
 }
 
-//
 func (s *subscribePush) getDatasFromMysql(spqp *SubPushQueryParam, starttime, endtime int64, size int, isLimit bool) (result []*bxsubscribe.SubscribeInfo, count int64) {
 	querys := []string{}
-	if spqp.IsEnt {
-		querys = []string{fmt.Sprintf("a.entid='%s'", spqp.EntId)}
+	var (
+		searchSql, findSql string
+	)
+	if spqp.SelectInfoIds != nil && len(spqp.SelectInfoIds) > 0 {
+		searchSql = fmt.Sprintf(" from %s a LEFT JOIN %s b ON a.infoid = b.infoid where %s order by a.id desc", aboutDbMsg[s.ModuleFlag].MysqlTable, Baseinfo, fmt.Sprintf("a.id in ('%s')", strings.Join(spqp.SelectInfoIds, "','")))
+		fmt.Println("searchSql", searchSql)
+		//查询总数
+		count = spqp.BaseServiceMysql.CountBySql(fmt.Sprintf("select count(a.id)" + searchSql))
+		findSql = "select a.id,a.date,a.infoid,a.isvisit,a.matchkeys,a.type,b.isvalidfile as attachment_count"
 	} else {
-		querys = []string{fmt.Sprintf("a.userid='%s'", common.If(s.ModuleFlag == "eType", spqp.EntUserId, common.InterfaceToStr(spqp.NewUserId)))}
+		if spqp.IsEnt {
+			querys = []string{fmt.Sprintf("a.entid='%s'", spqp.EntId)}
+		} else {
+			querys = []string{fmt.Sprintf("a.userid='%s'", common.If(s.ModuleFlag == "eType", spqp.EntUserId, common.InterfaceToStr(spqp.NewUserId)))}
 
-	}
-	codeMap, err := IC.CodeLib.CodeTransformation(context.Background(), &codeservice.Request{})
-	if codeMap.Data == nil || err != nil {
-		logx.Error("代码表获取失败")
-		return result, count
-	}
-	//时间
-	if starttime > 0 && endtime > 0 {
-		querys = append(querys, fmt.Sprintf("a.date>=%d and date<=%d", starttime, endtime))
-	} else if starttime > 0 && endtime == 0 {
-		querys = append(querys, fmt.Sprintf("a.date>=%d", starttime))
-	} else if starttime == 0 && endtime > 0 {
-		querys = append(querys, fmt.Sprintf("a.date<=%d", endtime))
-	}
-	if spqp.Area != "" || spqp.City != "" {
-		var sqlAreaCity = ""
-		//城市
-		city := []string{}
-		for _, v := range strings.Split(spqp.City, ",") {
-			if codeMap.Data.City[v] != "" {
-				city = append(city, fmt.Sprint(codeMap.Data.City[v]))
-			} else {
-				city = append(city, "-1")
-			}
-		}
-		if len(city) == 1 {
-			city = append(city, "9999")
 		}
-		if len(city) > 0 {
-			sqlAreaCity = fmt.Sprintf("b.city_code in (%s)", strings.Join(city, ","))
-		}
-		//区域
-		var sqlArea = ""
-		area := []string{}
-		for _, v := range strings.Split(spqp.Area, ",") {
-			if codeMap.Data.Area[v] != "" {
-				area = append(area, fmt.Sprint(codeMap.Data.Area[v]))
-			} else {
-				area = append(area, "-1")
+		codeMap, err := IC.CodeLib.CodeTransformation(context.Background(), &codeservice.Request{})
+		if codeMap.Data == nil || err != nil {
+			logx.Error("代码表获取失败")
+			return result, count
+		}
+		//时间
+		logx.Info("starttime,endtime", starttime, endtime)
+		if starttime > 0 && endtime > 0 {
+			querys = append(querys, fmt.Sprintf("a.date>=%d and date<=%d", starttime, endtime))
+		} else if starttime > 0 && endtime == 0 {
+			querys = append(querys, fmt.Sprintf("a.date>=%d", starttime))
+		} else if starttime == 0 && endtime > 0 {
+			querys = append(querys, fmt.Sprintf("a.date<=%d", endtime))
+		}
+		if spqp.Area != "" || spqp.City != "" {
+			var sqlAreaCity = ""
+			//城市
+			city := []string{}
+			for _, v := range strings.Split(spqp.City, ",") {
+				if codeMap.Data.City[v] != "" {
+					city = append(city, fmt.Sprint(codeMap.Data.City[v]))
+				} else {
+					city = append(city, "-1")
+				}
 			}
-		}
-		if len(area) == 1 {
-			area = append(area, "9999")
-		}
-		if len(area) > 0 {
-			sqlArea = fmt.Sprintf("b.area_code 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, ",") {
-			if codeMap.Data.Buyerclass[v] != "" {
-				buyerclass = append(buyerclass, fmt.Sprint(codeMap.Data.Buyerclass[v]))
+			if len(city) == 1 {
+				city = append(city, "9999")
+			}
+			if len(city) > 0 {
+				sqlAreaCity = fmt.Sprintf("b.city_code in (%s)", strings.Join(city, ","))
+			}
+			//区域
+			var sqlArea = ""
+			area := []string{}
+			for _, v := range strings.Split(spqp.Area, ",") {
+				if codeMap.Data.Area[v] != "" {
+					area = append(area, fmt.Sprint(codeMap.Data.Area[v]))
+				} else {
+					area = append(area, "-1")
+				}
+			}
+			if len(area) == 1 {
+				area = append(area, "9999")
+			}
+			if len(area) > 0 {
+				sqlArea = fmt.Sprintf("b.area_code 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 len(buyerclass) == 1 {
-			buyerclass = append(buyerclass, "9999")
-		}
-		if len(buyerclass) > 0 {
-			querys = append(querys, fmt.Sprintf("b.buyerclass_code in (%s)", strings.Join(buyerclass, ",")))
-		}
-
-	}
-	//信息类型
-	if spqp.Subtype != "" {
-		subtype := []string{}
-		for _, v := range strings.Split(spqp.Subtype, ",") {
-			if codeMap.Data.Subtype[v] != "" {
-				subtype = append(subtype, fmt.Sprint(codeMap.Data.Subtype[v]))
+		//采购单位行业
+		if spqp.Buyerclass != "" {
+			buyerclass := []string{}
+			for _, v := range strings.Split(spqp.Buyerclass, ",") {
+				if codeMap.Data.Buyerclass[v] != "" {
+					buyerclass = append(buyerclass, fmt.Sprint(codeMap.Data.Buyerclass[v]))
+				}
+			}
+			if len(buyerclass) == 1 {
+				buyerclass = append(buyerclass, "9999")
+			}
+			if len(buyerclass) > 0 {
+				querys = append(querys, fmt.Sprintf("b.buyerclass_code in (%s)", strings.Join(buyerclass, ",")))
 			}
 
 		}
-		if len(subtype) == 1 {
-			subtype = append(subtype, "9999")
-		}
-		if len(subtype) > 0 {
-			querys = append(querys, fmt.Sprintf("b.subtype_code in (%s)", strings.Join(subtype, ",")))
-		}
+		//信息类型
+		if spqp.Subtype != "" {
+			subtype := []string{}
+			for _, v := range strings.Split(spqp.Subtype, ",") {
+				if codeMap.Data.Subtype[v] != "" {
+					subtype = append(subtype, fmt.Sprint(codeMap.Data.Subtype[v]))
+				}
 
-	}
-	//信息行业
-	if spqp.Subscopeclass != "" {
-		find_in_set := []string{}
-		for _, v := range strings.Split(spqp.Subscopeclass, ",") {
-			if codeMap.Data.Subscopeclass[v] != "" {
-				find_in_set = append(find_in_set, codeMap.Data.Subscopeclass[v])
+			}
+			if len(subtype) == 1 {
+				subtype = append(subtype, "9999")
+			}
+			if len(subtype) > 0 {
+				querys = append(querys, fmt.Sprintf("b.subtype_code in (%s)", strings.Join(subtype, ",")))
 			}
 
 		}
-		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(" t.labelvalues in (%s)", strings.Join(find_in_set, ",")))
-		}
-	}
-	//关键词
-	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(a.matchkeys,'+',','),' ',','))", v))
+		//信息行业
+		if spqp.Subscopeclass != "" {
+			find_in_set := []string{}
+			for _, v := range strings.Split(spqp.Subscopeclass, ",") {
+				if codeMap.Data.Subscopeclass[v] != "" {
+					find_in_set = append(find_in_set, codeMap.Data.Subscopeclass[v])
+				}
+
+			}
+			if len(find_in_set) == 1 {
+				find_in_set = append(find_in_set, "9999")
+			}
+			if len(find_in_set) > 0 {
+				querys = append(querys, fmt.Sprintf(" t.labelvalues in (%s)", strings.Join(find_in_set, ",")))
+			}
 		}
-		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(a.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 ")))
+			}
 		}
-	}
-	//价格- 预算和中标金额
-	if spqp.Price != "" && strings.Contains(spqp.Price, "-") {
-		minPriceStr, maxPriceStr := strings.Split(spqp.Price, "-")[0], strings.Split(spqp.Price, "-")[1]
-		minPrice := common.Int64All(common.Float64All(minPriceStr) * 10000) //换成元
-		maxPrice := common.Int64All(common.Float64All(maxPriceStr) * 10000) //换成元
-		if minPriceStr != "" && maxPriceStr != "" {
-			querys = append(querys, fmt.Sprintf("((b.bidamount>=%d and b.bidamount<=%d) or (b.budget>=%d and b.budget<=%d and b.bidamount is null))", minPrice, maxPrice, minPrice, maxPrice))
-		} else if minPriceStr != "" {
-			querys = append(querys, fmt.Sprintf("(b.bidamount>=%d  or (b.budget>=%d and b.bidamount is null))", minPrice, minPrice))
-		} else if maxPriceStr != "" {
-			querys = append(querys, fmt.Sprintf("(b.bidamount<=%d or (b.budget<=%d and b.bidamount is null))", maxPrice, maxPrice))
+		//价格- 预算和中标金额
+		if spqp.Price != "" && strings.Contains(spqp.Price, "-") {
+			minPriceStr, maxPriceStr := strings.Split(spqp.Price, "-")[0], strings.Split(spqp.Price, "-")[1]
+			minPrice := common.Int64All(common.Float64All(minPriceStr) * 10000) //换成元
+			maxPrice := common.Int64All(common.Float64All(maxPriceStr) * 10000) //换成元
+			if minPriceStr != "" && maxPriceStr != "" {
+				querys = append(querys, fmt.Sprintf("((b.bidamount>=%d and b.bidamount<=%d) or (b.budget>=%d and b.budget<=%d and b.bidamount is null))", minPrice, maxPrice, minPrice, maxPrice))
+			} else if minPriceStr != "" {
+				querys = append(querys, fmt.Sprintf("(b.bidamount>=%d  or (b.budget>=%d and b.bidamount is null))", minPrice, minPrice))
+			} else if maxPriceStr != "" {
+				querys = append(querys, fmt.Sprintf("(b.bidamount<=%d or (b.budget<=%d and b.bidamount is null))", maxPrice, maxPrice))
+			}
 		}
-	}
-	//附件
-	if spqp.FileExists != "" {
-		if spqp.FileExists == "1" {
-			querys = append(querys, fmt.Sprintf("b.isvalidfile =1 "))
-		} else if spqp.FileExists == "-1" {
-			querys = append(querys, fmt.Sprintf("b.isvalidfile =0 "))
+		//附件
+		if spqp.FileExists != "" {
+			if spqp.FileExists == "1" {
+				querys = append(querys, fmt.Sprintf("b.isvalidfile =1 "))
+			} else if spqp.FileExists == "-1" {
+				querys = append(querys, fmt.Sprintf("b.isvalidfile =0 "))
+			}
 		}
+		searchSql = fmt.Sprintf(" from %s  a LEFT JOIN %s b ON a.infoid = b.infoid LEFT JOIN %s t on t.infoid = b.infoid and t.labelcode=2  where %s"+
+			" order by a.id desc", aboutDbMsg[s.ModuleFlag].MysqlTable, Baseinfo, BidTags, strings.Join(querys, " and "))
+		fmt.Println("searchSql", searchSql)
+		//查询总数
+		count = spqp.BaseServiceMysql.CountBySql(fmt.Sprintf("select count(a.id)" + searchSql))
+		logx.Info("count:", count, "---", s.ModuleFlag)
+		findSql = "select a.id,a.date,a.infoid,a.isvisit,a.matchkeys,a.type,b.isvalidfile as attachment_count"
 	}
-	searchSql := fmt.Sprintf(" from %s  a LEFT JOIN %s b ON a.infoid = b.infoid LEFT JOIN %s t on t.infoid = b.infoid and t.labelcode=2  where %s"+
-		" order by a.id desc", aboutDbMsg[s.ModuleFlag].MysqlTable, Baseinfo, BidTags, strings.Join(querys, " and "))
-	fmt.Println("searchSql", searchSql)
-	//查询总数
-	count = spqp.BaseServiceMysql.CountBySql(fmt.Sprintf("select count(a.id)" + searchSql))
-	logx.Info("count:", count, "---", s.ModuleFlag)
-	findSql := "select a.id,a.date,a.infoid,a.isvisit,a.matchkeys,a.type,b.isvalidfile as attachment_count"
 	if s.ModuleFlag != MemberFlag && s.ModuleFlag != EntnicheFlag {
-		findSql += ",isvip"
+		findSql += ",a.isvip"
 	}
 	findSql += searchSql
 	if isLimit {
@@ -474,14 +482,27 @@ func (s *subscribePush) getDatasFromMysql(spqp *SubPushQueryParam, starttime, en
 	list := spqp.BaseServiceMysql.SelectBySql(findSql)
 	if list != nil && len(*list) > 0 {
 		pushCas := s.GetJyPushs(*list)
-		result = s.GetInfoByIds(spqp.Mgo_bidding, spqp.Bidding, spqp.Bidding_back, pushCas)
+		if !spqp.Export {
+			result = s.GetInfoByIds(spqp.Mgo_bidding, spqp.Bidding, spqp.Bidding_back, pushCas)
+		} else {
+			result = s.GetOnlyExportInfo(pushCas)
+		}
 	} else {
 		result = []*bxsubscribe.SubscribeInfo{}
 	}
 	return
 }
 
-//根据id取内容
+// GetOnlyInfoId 获取信息id
+func (s *subscribePush) GetOnlyExportInfo(pushCas []*PushCa) []*bxsubscribe.SubscribeInfo {
+	array := make([]*bxsubscribe.SubscribeInfo, len(pushCas))
+	for k, v := range pushCas {
+		array[k] = &bxsubscribe.SubscribeInfo{XId: encrypt.EncodeArticleId2ByCheck(v.InfoId), MatchKeys: v.Keys}
+	}
+	return array
+}
+
+// 根据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 {
@@ -566,7 +587,7 @@ func (s *subscribePush) GetInfoByIds(Mgo_bidding mongodb.MongodbSim, bidding, bi
 	return array
 }
 
-//获取历史推送
+// 获取历史推送
 func (s *subscribePush) GetJyPushs(datas []map[string]interface{}) (pushCas []*PushCa) {
 	pushCas = []*PushCa{}
 	for _, v := range datas {
@@ -588,7 +609,7 @@ func (s *subscribePush) GetJyPushs(datas []map[string]interface{}) (pushCas []*P
 	return
 }
 
-//查看全部列表缓存
+// 查看全部列表缓存
 func (s *subscribePush) PutAllCache(userId string, datas *SubPush) {
 	log.Println(s.allKey(userId), datas, oneDay)
 	redis.Put("pushcache_2_a", s.allKey(userId), datas, oneDay)
@@ -613,7 +634,7 @@ func (s *subscribePush) GetCache(code, key string) (*SubPush, error) {
 	return p, nil
 }
 
-//是否收藏
+// 是否收藏
 func (s *subscribePush) MakeCollection(userId string, list []*bxsubscribe.SubscribeInfo) {
 	if list == nil || len(list) == 0 {
 		return
@@ -643,7 +664,7 @@ func (s *subscribePush) MakeCollection(userId string, list []*bxsubscribe.Subscr
 	}
 }
 
-//仅移动端首页使用,历史推送7天信息
+// 仅移动端首页使用,历史推送7天信息
 func (s *subscribePush) sevenDayKey(userId string) string {
 	return fmt.Sprintf("7day_subpush_%s", userId)
 }
@@ -652,7 +673,7 @@ func (s *subscribePush) PutSevenDayCache(userId string, datas []*bxsubscribe.Sub
 	redis.Put("pushcache_2_a", s.sevenDayKey(userId), SubPush{Datas: datas}, 7*24*60*60)
 }
 
-//从pushcache_2_a中取
+// 从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 {
@@ -661,7 +682,7 @@ func (s *subscribePush) GetSevenDayCache(userId string) ([]*bxsubscribe.Subscrib
 	return nil, nil
 }
 
-//历史推送记录中单条信息格式化
+// 历史推送记录中单条信息格式化
 func InfoFormats(info map[string]interface{}, tmp map[string]interface{}) map[string]interface{} {
 	area := common.ObjToString(info["area"])
 	if area == "A" {
@@ -694,7 +715,7 @@ func InfoFormats(info map[string]interface{}, tmp map[string]interface{}) map[st
 	return info
 }
 
-//UpdateUserPushUnread 更新app未读标识为已读
+// UpdateUserPushUnread 更新app未读标识为已读
 func UpdateUserPushUnread(userid string, vt string) {
 	if vt == MemberFlag {
 		IC.Mgo.UpdateById("user", userid, map[string]interface{}{"$set": map[string]interface{}{"i_member_apppushunread": 0}})
@@ -707,7 +728,7 @@ func UpdateUserPushUnread(userid string, vt string) {
 
 //
 
-//获取用户信息
+// 获取用户信息
 func (s *subscribePush) UserInfo(userId string) (*map[string]interface{}, int64) {
 	user, ok := IC.Mgo.FindById("user", userId, `{"s_m_openid":1,"a_m_openid":1,"s_phone":1,"a_mergeorder":1,"o_jy":1,"l_firstpushtime":1,"i_vip_status":1,"l_vip_endtime":1,"o_vipjy":1,"i_member_status":1,"o_member_jy":1}`)
 	if !ok || user == nil {
@@ -716,7 +737,7 @@ func (s *subscribePush) UserInfo(userId string) (*map[string]interface{}, int64)
 	return user, common.Int64All((*user)["l_firstpushtime"])
 }
 
-//是否有订阅词
+// 是否有订阅词
 func GetKeySet(t string, u *map[string]interface{}, data []string) (bool, []string) {
 	var industry_ = []string{}
 	if u != nil {
@@ -764,8 +785,8 @@ const (
 	findfields = `"title"`
 )
 
-//首次访问推送页面 默认生成推送数据
-//默认匹配es 7天内数据
+// 首次访问推送页面 默认生成推送数据
+// 默认匹配es 7天内数据
 func (s *subscribePush) DefaultDatas(spqp *SubPushQueryParam) (hasNextPage bool, total int64, result []*bxsubscribe.SubscribeInfo) {
 	if spqp.UserId == "" {
 		return false, 0, nil
@@ -802,7 +823,7 @@ func (s *subscribePush) DefaultDatas(spqp *SubPushQueryParam) (hasNextPage bool,
 	return
 }
 
-//保存推送表
+// 保存推送表
 func (s *subscribePush) listManager(spqp *SubPushQueryParam, list []map[string]interface{}, keyword []ViewKeyWord, ccount int) (resultList []*bxsubscribe.SubscribeInfo) {
 	t2 := time.Now()
 	now := time.Now().Unix()
@@ -866,7 +887,7 @@ func (s *subscribePush) listManager(spqp *SubPushQueryParam, list []map[string]i
 	return
 }
 
-//获取匹配得关键词
+// 获取匹配得关键词
 func getKeys(title string, keywords []ViewKeyWord) (str []string) {
 	if len(keywords) > 0 {
 	L:
@@ -888,7 +909,7 @@ func getKeys(title string, keywords []ViewKeyWord) (str []string) {
 	return
 }
 
-//获取查询语句
+// 获取查询语句
 func (s *subscribePush) getDefaultDatasSQL(bsp *ViewCondition) (str string) {
 	query := `{"query":{"bool":{"must":[%s],"should":[%s],"minimum_should_match": %d}}}`
 	query_bool_should := `{"bool":{"should":[%s],"minimum_should_match": 1}}`
@@ -1024,7 +1045,7 @@ type ViewCondition struct {
 	Size       int           //数量
 }
 
-//获取用户信息
+// 获取用户信息
 func (s *subscribePush) getUserInfo(spqp *SubPushQueryParam) (vc *ViewCondition) {
 	var isPayBool = false
 	var tmpInfo = struct {
@@ -1113,7 +1134,7 @@ func (s *subscribePush) getUserInfo(spqp *SubPushQueryParam) (vc *ViewCondition)
 	return
 }
 
-//关键词 附加词 排除词
+// 关键词 附加词 排除词
 func getKeyWordArrFromDbResult(a_items []interface{}, item string, index int) (arr []ViewKeyWord) {
 	if a_items == nil {
 		return
@@ -1188,7 +1209,7 @@ func getKeyWordArrFromDbResultByFree(a_items []interface{}, item string, index i
 	return
 }
 
-//地区格式化
+// 地区格式化
 func getStringArrFromDbResult(area map[string]interface{}, i int) (arr []string) {
 	if area == nil {
 		return
@@ -1210,7 +1231,7 @@ func getStringArrFromDbResult(area map[string]interface{}, i int) (arr []string)
 	return
 }
 
-//IsInTsGuide 是否进入向导
+// IsInTsGuide 是否进入向导
 func (s *subscribePush) IsInTsGuide(userid string) bool {
 	if userid == "" {
 		return false

+ 389 - 0
jyBXSubscribe/rpc/type/bxsubscribe/bxsubscribe.pb.go

@@ -1,7 +1,12 @@
 // Code generated by protoc-gen-go. DO NOT EDIT.
 // versions:
+<<<<<<< HEAD
 // 	protoc-gen-go v1.28.0
 // 	protoc        v3.15.1
+=======
+// 	protoc-gen-go v1.28.1
+// 	protoc        v3.19.4
+>>>>>>> feature/v1.1.5
 // source: bxsubscribe.proto
 
 package bxsubscribe
@@ -44,6 +49,10 @@ type SubscribeInfosReq struct {
 	DeptId     string `protobuf:"bytes,17,opt,name=deptId,proto3" json:"deptId,omitempty"`
 	NewUserId  int64  `protobuf:"varint,18,opt,name=newUserId,proto3" json:"newUserId,omitempty"`
 	IsEnt      bool   `protobuf:"varint,19,opt,name=IsEnt,proto3" json:"IsEnt,omitempty"`
+<<<<<<< HEAD
+=======
+	SelectIds  string `protobuf:"bytes,20,opt,name=SelectIds,proto3" json:"SelectIds,omitempty"`
+>>>>>>> feature/v1.1.5
 }
 
 func (x *SubscribeInfosReq) Reset() {
@@ -211,6 +220,16 @@ func (x *SubscribeInfosReq) GetIsEnt() bool {
 	return false
 }
 
+<<<<<<< HEAD
+=======
+func (x *SubscribeInfosReq) GetSelectIds() string {
+	if x != nil {
+		return x.SelectIds
+	}
+	return ""
+}
+
+>>>>>>> feature/v1.1.5
 type SubscribeInfosResp struct {
 	state         protoimpl.MessageState
 	sizeCache     protoimpl.SizeCache
@@ -544,7 +563,10 @@ func (x *SubscribeInfo) GetCaFileExists() bool {
 	return false
 }
 
+<<<<<<< HEAD
 //
+=======
+>>>>>>> feature/v1.1.5
 type SomeInfoReq struct {
 	state         protoimpl.MessageState
 	sizeCache     protoimpl.SizeCache
@@ -790,7 +812,10 @@ func (x *SomeInfo) GetUserId() string {
 	return ""
 }
 
+<<<<<<< HEAD
 //
+=======
+>>>>>>> feature/v1.1.5
 type StatusResp struct {
 	state         protoimpl.MessageState
 	sizeCache     protoimpl.SizeCache
@@ -854,6 +879,72 @@ func (x *StatusResp) GetStatus() int64 {
 	return 0
 }
 
+<<<<<<< HEAD
+=======
+type ByPushHistoryResp struct {
+	state         protoimpl.MessageState
+	sizeCache     protoimpl.SizeCache
+	unknownFields protoimpl.UnknownFields
+
+	ErrorMsg  string `protobuf:"bytes,1,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
+	ErrorCode int64  `protobuf:"varint,2,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
+	Data      string `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
+}
+
+func (x *ByPushHistoryResp) Reset() {
+	*x = ByPushHistoryResp{}
+	if protoimpl.UnsafeEnabled {
+		mi := &file_bxsubscribe_proto_msgTypes[8]
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		ms.StoreMessageInfo(mi)
+	}
+}
+
+func (x *ByPushHistoryResp) String() string {
+	return protoimpl.X.MessageStringOf(x)
+}
+
+func (*ByPushHistoryResp) ProtoMessage() {}
+
+func (x *ByPushHistoryResp) ProtoReflect() protoreflect.Message {
+	mi := &file_bxsubscribe_proto_msgTypes[8]
+	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 ByPushHistoryResp.ProtoReflect.Descriptor instead.
+func (*ByPushHistoryResp) Descriptor() ([]byte, []int) {
+	return file_bxsubscribe_proto_rawDescGZIP(), []int{8}
+}
+
+func (x *ByPushHistoryResp) GetErrorMsg() string {
+	if x != nil {
+		return x.ErrorMsg
+	}
+	return ""
+}
+
+func (x *ByPushHistoryResp) GetErrorCode() int64 {
+	if x != nil {
+		return x.ErrorCode
+	}
+	return 0
+}
+
+func (x *ByPushHistoryResp) GetData() string {
+	if x != nil {
+		return x.Data
+	}
+	return ""
+}
+
+>>>>>>> feature/v1.1.5
 type UpdateSubScribeInfoReq struct {
 	state         protoimpl.MessageState
 	sizeCache     protoimpl.SizeCache
@@ -876,7 +967,11 @@ type UpdateSubScribeInfoReq struct {
 func (x *UpdateSubScribeInfoReq) Reset() {
 	*x = UpdateSubScribeInfoReq{}
 	if protoimpl.UnsafeEnabled {
+<<<<<<< HEAD
 		mi := &file_bxsubscribe_proto_msgTypes[8]
+=======
+		mi := &file_bxsubscribe_proto_msgTypes[9]
+>>>>>>> feature/v1.1.5
 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 		ms.StoreMessageInfo(mi)
 	}
@@ -889,7 +984,11 @@ func (x *UpdateSubScribeInfoReq) String() string {
 func (*UpdateSubScribeInfoReq) ProtoMessage() {}
 
 func (x *UpdateSubScribeInfoReq) ProtoReflect() protoreflect.Message {
+<<<<<<< HEAD
 	mi := &file_bxsubscribe_proto_msgTypes[8]
+=======
+	mi := &file_bxsubscribe_proto_msgTypes[9]
+>>>>>>> feature/v1.1.5
 	if protoimpl.UnsafeEnabled && x != nil {
 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 		if ms.LoadMessageInfo() == nil {
@@ -902,7 +1001,11 @@ func (x *UpdateSubScribeInfoReq) ProtoReflect() protoreflect.Message {
 
 // Deprecated: Use UpdateSubScribeInfoReq.ProtoReflect.Descriptor instead.
 func (*UpdateSubScribeInfoReq) Descriptor() ([]byte, []int) {
+<<<<<<< HEAD
 	return file_bxsubscribe_proto_rawDescGZIP(), []int{8}
+=======
+	return file_bxsubscribe_proto_rawDescGZIP(), []int{9}
+>>>>>>> feature/v1.1.5
 }
 
 func (x *UpdateSubScribeInfoReq) GetArea() map[string]*CityList {
@@ -989,7 +1092,11 @@ func (x *UpdateSubScribeInfoReq) GetUserId() string {
 	return ""
 }
 
+<<<<<<< HEAD
 //城市
+=======
+// 城市
+>>>>>>> feature/v1.1.5
 type CityList struct {
 	state         protoimpl.MessageState
 	sizeCache     protoimpl.SizeCache
@@ -1001,7 +1108,11 @@ type CityList struct {
 func (x *CityList) Reset() {
 	*x = CityList{}
 	if protoimpl.UnsafeEnabled {
+<<<<<<< HEAD
 		mi := &file_bxsubscribe_proto_msgTypes[9]
+=======
+		mi := &file_bxsubscribe_proto_msgTypes[10]
+>>>>>>> feature/v1.1.5
 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 		ms.StoreMessageInfo(mi)
 	}
@@ -1014,7 +1125,11 @@ func (x *CityList) String() string {
 func (*CityList) ProtoMessage() {}
 
 func (x *CityList) ProtoReflect() protoreflect.Message {
+<<<<<<< HEAD
 	mi := &file_bxsubscribe_proto_msgTypes[9]
+=======
+	mi := &file_bxsubscribe_proto_msgTypes[10]
+>>>>>>> feature/v1.1.5
 	if protoimpl.UnsafeEnabled && x != nil {
 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 		if ms.LoadMessageInfo() == nil {
@@ -1027,7 +1142,11 @@ func (x *CityList) ProtoReflect() protoreflect.Message {
 
 // Deprecated: Use CityList.ProtoReflect.Descriptor instead.
 func (*CityList) Descriptor() ([]byte, []int) {
+<<<<<<< HEAD
 	return file_bxsubscribe_proto_rawDescGZIP(), []int{9}
+=======
+	return file_bxsubscribe_proto_rawDescGZIP(), []int{10}
+>>>>>>> feature/v1.1.5
 }
 
 func (x *CityList) GetCity() []string {
@@ -1037,7 +1156,11 @@ func (x *CityList) GetCity() []string {
 	return nil
 }
 
+<<<<<<< HEAD
 //分类
+=======
+// 分类
+>>>>>>> feature/v1.1.5
 type Items struct {
 	state         protoimpl.MessageState
 	sizeCache     protoimpl.SizeCache
@@ -1051,7 +1174,11 @@ type Items struct {
 func (x *Items) Reset() {
 	*x = Items{}
 	if protoimpl.UnsafeEnabled {
+<<<<<<< HEAD
 		mi := &file_bxsubscribe_proto_msgTypes[10]
+=======
+		mi := &file_bxsubscribe_proto_msgTypes[11]
+>>>>>>> feature/v1.1.5
 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 		ms.StoreMessageInfo(mi)
 	}
@@ -1064,7 +1191,11 @@ func (x *Items) String() string {
 func (*Items) ProtoMessage() {}
 
 func (x *Items) ProtoReflect() protoreflect.Message {
+<<<<<<< HEAD
 	mi := &file_bxsubscribe_proto_msgTypes[10]
+=======
+	mi := &file_bxsubscribe_proto_msgTypes[11]
+>>>>>>> feature/v1.1.5
 	if protoimpl.UnsafeEnabled && x != nil {
 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 		if ms.LoadMessageInfo() == nil {
@@ -1077,7 +1208,11 @@ func (x *Items) ProtoReflect() protoreflect.Message {
 
 // Deprecated: Use Items.ProtoReflect.Descriptor instead.
 func (*Items) Descriptor() ([]byte, []int) {
+<<<<<<< HEAD
 	return file_bxsubscribe_proto_rawDescGZIP(), []int{10}
+=======
+	return file_bxsubscribe_proto_rawDescGZIP(), []int{11}
+>>>>>>> feature/v1.1.5
 }
 
 func (x *Items) GetSItem() string {
@@ -1101,7 +1236,11 @@ func (x *Items) GetAKey() []*Keys {
 	return nil
 }
 
+<<<<<<< HEAD
 //关键词
+=======
+// 关键词
+>>>>>>> feature/v1.1.5
 type Keys struct {
 	state         protoimpl.MessageState
 	sizeCache     protoimpl.SizeCache
@@ -1117,7 +1256,11 @@ type Keys struct {
 func (x *Keys) Reset() {
 	*x = Keys{}
 	if protoimpl.UnsafeEnabled {
+<<<<<<< HEAD
 		mi := &file_bxsubscribe_proto_msgTypes[11]
+=======
+		mi := &file_bxsubscribe_proto_msgTypes[12]
+>>>>>>> feature/v1.1.5
 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 		ms.StoreMessageInfo(mi)
 	}
@@ -1130,7 +1273,11 @@ func (x *Keys) String() string {
 func (*Keys) ProtoMessage() {}
 
 func (x *Keys) ProtoReflect() protoreflect.Message {
+<<<<<<< HEAD
 	mi := &file_bxsubscribe_proto_msgTypes[11]
+=======
+	mi := &file_bxsubscribe_proto_msgTypes[12]
+>>>>>>> feature/v1.1.5
 	if protoimpl.UnsafeEnabled && x != nil {
 		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
 		if ms.LoadMessageInfo() == nil {
@@ -1143,7 +1290,11 @@ func (x *Keys) ProtoReflect() protoreflect.Message {
 
 // Deprecated: Use Keys.ProtoReflect.Descriptor instead.
 func (*Keys) Descriptor() ([]byte, []int) {
+<<<<<<< HEAD
 	return file_bxsubscribe_proto_rawDescGZIP(), []int{11}
+=======
+	return file_bxsubscribe_proto_rawDescGZIP(), []int{12}
+>>>>>>> feature/v1.1.5
 }
 
 func (x *Keys) GetKey() []string {
@@ -1186,7 +1337,11 @@ 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,
+<<<<<<< HEAD
 	0x22, 0x83, 0x04, 0x0a, 0x11, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x49, 0x6e,
+=======
+	0x22, 0xa1, 0x04, 0x0a, 0x11, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x49, 0x6e,
+>>>>>>> feature/v1.1.5
 	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,
@@ -1218,6 +1373,7 @@ var file_bxsubscribe_proto_rawDesc = []byte{
 	0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18,
 	0x12, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64,
 	0x12, 0x14, 0x0a, 0x05, 0x49, 0x73, 0x45, 0x6e, 0x74, 0x18, 0x13, 0x20, 0x01, 0x28, 0x08, 0x52,
+<<<<<<< HEAD
 	0x05, 0x49, 0x73, 0x45, 0x6e, 0x74, 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,
@@ -1375,6 +1531,178 @@ var file_bxsubscribe_proto_rawDesc = []byte{
 	0x72, 0x69, 0x62, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 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,
+=======
+	0x05, 0x49, 0x73, 0x45, 0x6e, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x53, 0x65, 0x6c, 0x65, 0x63, 0x74,
+	0x49, 0x64, 0x73, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x53, 0x65, 0x6c, 0x65, 0x63,
+	0x74, 0x49, 0x64, 0x73, 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, 0xd4, 0x04, 0x0a, 0x0d, 0x73, 0x75, 0x62, 0x73,
+	0x63, 0x72, 0x69, 0x62, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0f, 0x0a, 0x03, 0x5f, 0x69, 0x64,
+	0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x49, 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, 0x12, 0x23, 0x0a, 0x0d, 0x63, 0x61, 0x5f,
+	0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x18, 0x15, 0x20, 0x01, 0x28, 0x08,
+	0x52, 0x0c, 0x63, 0x61, 0x46, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x22, 0x75,
+	0x0a, 0x0b, 0x53, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a,
+	0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70,
+	0x70, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x02, 0x20,
+	0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x75,
+	0x73, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75,
+	0x73, 0x65, 0x72, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73,
+	0x65, 0x72, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x6e, 0x65, 0x77, 0x55,
+	0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0x6d, 0x0a, 0x0c, 0x53, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66,
+	0x6f, 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, 0x29, 0x0a, 0x04, 0x64, 0x61, 0x74,
+	0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x15, 0x2e, 0x62, 0x78, 0x73, 0x75, 0x62, 0x73,
+	0x63, 0x72, 0x69, 0x62, 0x65, 0x2e, 0x53, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04,
+	0x64, 0x61, 0x74, 0x61, 0x22, 0x88, 0x02, 0x0a, 0x08, 0x53, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66,
+	0x6f, 0x12, 0x16, 0x0a, 0x06, 0x68, 0x61, 0x73, 0x4b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28,
+	0x08, 0x52, 0x06, 0x68, 0x61, 0x73, 0x4b, 0x65, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x69, 0x73, 0x49,
+	0x6e, 0x54, 0x53, 0x67, 0x75, 0x69, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b,
+	0x69, 0x73, 0x49, 0x6e, 0x54, 0x53, 0x67, 0x75, 0x69, 0x64, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x69,
+	0x73, 0x45, 0x78, 0x70, 0x69, 0x72, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x69,
+	0x73, 0x45, 0x78, 0x70, 0x69, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x69, 0x73, 0x4f, 0x6e, 0x54,
+	0x61, 0x69, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x69, 0x73, 0x4f, 0x6e, 0x54,
+	0x61, 0x69, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x69, 0x73, 0x50, 0x61, 0x73, 0x73, 0x43, 0x6f, 0x75,
+	0x6e, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x69, 0x73, 0x50, 0x61, 0x73, 0x73,
+	0x43, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x46, 0x6c,
+	0x61, 0x67, 0x18, 0x06, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x46,
+	0x6c, 0x61, 0x67, 0x12, 0x16, 0x0a, 0x06, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x18, 0x07, 0x20,
+	0x01, 0x28, 0x08, 0x52, 0x06, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x69,
+	0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x79, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x69,
+	0x6e, 0x64, 0x75, 0x73, 0x74, 0x72, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49,
+	0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22,
+	0x60, 0x0a, 0x0a, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1b, 0x0a,
+	0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
+	0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72,
+	0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09,
+	0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61,
+	0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
+	0x73, 0x22, 0x63, 0x0a, 0x11, 0x42, 0x79, 0x50, 0x75, 0x73, 0x68, 0x48, 0x69, 0x73, 0x74, 0x6f,
+	0x72, 0x79, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f,
+	0x6d, 0x73, 0x67, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72,
+	0x4d, 0x73, 0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64,
+	0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f,
+	0x64, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
+	0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xf9, 0x03, 0x0a, 0x16, 0x55, 0x70, 0x64, 0x61, 0x74,
+	0x65, 0x53, 0x75, 0x62, 0x53, 0x63, 0x72, 0x69, 0x62, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65,
+	0x71, 0x12, 0x41, 0x0a, 0x04, 0x61, 0x72, 0x65, 0x61, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32,
+	0x2d, 0x2e, 0x62, 0x78, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x2e, 0x55, 0x70,
+	0x64, 0x61, 0x74, 0x65, 0x53, 0x75, 0x62, 0x53, 0x63, 0x72, 0x69, 0x62, 0x65, 0x49, 0x6e, 0x66,
+	0x6f, 0x52, 0x65, 0x71, 0x2e, 0x41, 0x72, 0x65, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x52, 0x04,
+	0x61, 0x72, 0x65, 0x61, 0x12, 0x1e, 0x0a, 0x0a, 0x62, 0x75, 0x79, 0x65, 0x72, 0x63, 0x6c, 0x61,
+	0x73, 0x73, 0x18, 0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x75, 0x79, 0x65, 0x72, 0x63,
+	0x6c, 0x61, 0x73, 0x73, 0x12, 0x28, 0x0a, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x18, 0x03, 0x20,
+	0x03, 0x28, 0x0b, 0x32, 0x12, 0x2e, 0x62, 0x78, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62,
+	0x65, 0x2e, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x52, 0x05, 0x69, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x1a,
+	0x0a, 0x08, 0x69, 0x6e, 0x66, 0x6f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x03, 0x28, 0x09,
+	0x52, 0x08, 0x69, 0x6e, 0x66, 0x6f, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x61,
+	0x74, 0x63, 0x68, 0x77, 0x61, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6d, 0x61,
+	0x74, 0x63, 0x68, 0x77, 0x61, 0x79, 0x12, 0x22, 0x0a, 0x0c, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
+	0x74, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x70, 0x72,
+	0x6f, 0x6a, 0x65, 0x63, 0x74, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x12, 0x1a, 0x0a, 0x08, 0x72, 0x61,
+	0x74, 0x65, 0x6d, 0x6f, 0x64, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x72, 0x61,
+	0x74, 0x65, 0x6d, 0x6f, 0x64, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x61, 0x70, 0x70, 0x70, 0x75, 0x73,
+	0x68, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61, 0x70, 0x70, 0x70, 0x75, 0x73, 0x68,
+	0x12, 0x1a, 0x0a, 0x08, 0x6d, 0x61, 0x69, 0x6c, 0x70, 0x75, 0x73, 0x68, 0x18, 0x09, 0x20, 0x01,
+	0x28, 0x09, 0x52, 0x08, 0x6d, 0x61, 0x69, 0x6c, 0x70, 0x75, 0x73, 0x68, 0x12, 0x12, 0x0a, 0x04,
+	0x6d, 0x61, 0x69, 0x6c, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x6d, 0x61, 0x69, 0x6c,
+	0x12, 0x28, 0x0a, 0x0f, 0x6f, 0x74, 0x68, 0x65, 0x72, 0x62, 0x75, 0x79, 0x65, 0x72, 0x63, 0x6c,
+	0x61, 0x73, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x6f, 0x74, 0x68, 0x65, 0x72,
+	0x62, 0x75, 0x79, 0x65, 0x72, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73,
+	0x65, 0x72, 0x49, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72,
+	0x49, 0x64, 0x1a, 0x4e, 0x0a, 0x09, 0x41, 0x72, 0x65, 0x61, 0x45, 0x6e, 0x74, 0x72, 0x79, 0x12,
+	0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6b, 0x65,
+	0x79, 0x12, 0x2b, 0x0a, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x0b,
+	0x32, 0x15, 0x2e, 0x62, 0x78, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x2e, 0x43,
+	0x69, 0x74, 0x79, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x3a, 0x02,
+	0x38, 0x01, 0x22, 0x1e, 0x0a, 0x08, 0x43, 0x69, 0x74, 0x79, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x12,
+	0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69,
+	0x74, 0x79, 0x22, 0x66, 0x0a, 0x05, 0x49, 0x74, 0x65, 0x6d, 0x73, 0x12, 0x15, 0x0a, 0x06, 0x73,
+	0x5f, 0x69, 0x74, 0x65, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x73, 0x49, 0x74,
+	0x65, 0x6d, 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65,
+	0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69,
+	0x6d, 0x65, 0x12, 0x26, 0x0a, 0x05, 0x61, 0x5f, 0x6b, 0x65, 0x79, 0x18, 0x03, 0x20, 0x03, 0x28,
+	0x0b, 0x32, 0x11, 0x2e, 0x62, 0x78, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x2e,
+	0x4b, 0x65, 0x79, 0x73, 0x52, 0x04, 0x61, 0x4b, 0x65, 0x79, 0x22, 0x8a, 0x01, 0x0a, 0x04, 0x4b,
+	0x65, 0x79, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x6b, 0x65, 0x79, 0x18, 0x01, 0x20, 0x03, 0x28, 0x09,
+	0x52, 0x03, 0x6b, 0x65, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x6f, 0x74, 0x6b, 0x65, 0x79, 0x18,
+	0x02, 0x20, 0x03, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x6f, 0x74, 0x6b, 0x65, 0x79, 0x12, 0x1e, 0x0a,
+	0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
+	0x03, 0x52, 0x0a, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x1a, 0x0a,
+	0x08, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x77, 0x61, 0x79, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52,
+	0x08, 0x6d, 0x61, 0x74, 0x63, 0x68, 0x77, 0x61, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x70, 0x70,
+	0x65, 0x6e, 0x64, 0x4b, 0x65, 0x79, 0x18, 0x05, 0x20, 0x03, 0x28, 0x09, 0x52, 0x09, 0x61, 0x70,
+	0x70, 0x65, 0x6e, 0x64, 0x4b, 0x65, 0x79, 0x32, 0xc9, 0x02, 0x0a, 0x0b, 0x42, 0x78, 0x73, 0x75,
+	0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x12, 0x4d, 0x0a, 0x0a, 0x47, 0x65, 0x74, 0x53, 0x75,
+	0x62, 0x4c, 0x69, 0x73, 0x74, 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, 0x12, 0x45, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x53, 0x75, 0x62,
+	0x53, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x18, 0x2e, 0x62, 0x78, 0x73, 0x75, 0x62,
+	0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x2e, 0x53, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52,
+	0x65, 0x71, 0x1a, 0x19, 0x2e, 0x62, 0x78, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
+	0x2e, 0x53, 0x6f, 0x6d, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x53, 0x0a,
+	0x13, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x75, 0x62, 0x53, 0x63, 0x72, 0x69, 0x62, 0x65,
+	0x49, 0x6e, 0x66, 0x6f, 0x12, 0x23, 0x2e, 0x62, 0x78, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
+	0x62, 0x65, 0x2e, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x75, 0x62, 0x53, 0x63, 0x72, 0x69,
+	0x62, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x17, 0x2e, 0x62, 0x78, 0x73, 0x75,
+	0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x2e, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65,
+	0x73, 0x70, 0x12, 0x4f, 0x0a, 0x0d, 0x42, 0x79, 0x50, 0x75, 0x73, 0x68, 0x48, 0x69, 0x73, 0x74,
+	0x6f, 0x72, 0x79, 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, 0x1e, 0x2e, 0x62, 0x78, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62,
+	0x65, 0x2e, 0x42, 0x79, 0x50, 0x75, 0x73, 0x68, 0x48, 0x69, 0x73, 0x74, 0x6f, 0x72, 0x79, 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,
+>>>>>>> feature/v1.1.5
 }
 
 var (
@@ -1389,7 +1717,11 @@ func file_bxsubscribe_proto_rawDescGZIP() []byte {
 	return file_bxsubscribe_proto_rawDescData
 }
 
+<<<<<<< HEAD
 var file_bxsubscribe_proto_msgTypes = make([]protoimpl.MessageInfo, 13)
+=======
+var file_bxsubscribe_proto_msgTypes = make([]protoimpl.MessageInfo, 14)
+>>>>>>> feature/v1.1.5
 var file_bxsubscribe_proto_goTypes = []interface{}{
 	(*SubscribeInfosReq)(nil),      // 0: bxsubscribe.SubscribeInfosReq
 	(*SubscribeInfosResp)(nil),     // 1: bxsubscribe.SubscribeInfosResp
@@ -1399,16 +1731,26 @@ var file_bxsubscribe_proto_goTypes = []interface{}{
 	(*SomeInfoResp)(nil),           // 5: bxsubscribe.SomeInfoResp
 	(*SomeInfo)(nil),               // 6: bxsubscribe.SomeInfo
 	(*StatusResp)(nil),             // 7: bxsubscribe.StatusResp
+<<<<<<< HEAD
 	(*UpdateSubScribeInfoReq)(nil), // 8: bxsubscribe.UpdateSubScribeInfoReq
 	(*CityList)(nil),               // 9: bxsubscribe.CityList
 	(*Items)(nil),                  // 10: bxsubscribe.Items
 	(*Keys)(nil),                   // 11: bxsubscribe.Keys
 	nil,                            // 12: bxsubscribe.UpdateSubScribeInfoReq.AreaEntry
+=======
+	(*ByPushHistoryResp)(nil),      // 8: bxsubscribe.ByPushHistoryResp
+	(*UpdateSubScribeInfoReq)(nil), // 9: bxsubscribe.UpdateSubScribeInfoReq
+	(*CityList)(nil),               // 10: bxsubscribe.CityList
+	(*Items)(nil),                  // 11: bxsubscribe.Items
+	(*Keys)(nil),                   // 12: bxsubscribe.Keys
+	nil,                            // 13: bxsubscribe.UpdateSubScribeInfoReq.AreaEntry
+>>>>>>> feature/v1.1.5
 }
 var file_bxsubscribe_proto_depIdxs = []int32{
 	2,  // 0: bxsubscribe.SubscribeInfosResp.data:type_name -> bxsubscribe.subscribeData
 	3,  // 1: bxsubscribe.subscribeData.list:type_name -> bxsubscribe.subscribeInfo
 	6,  // 2: bxsubscribe.SomeInfoResp.data:type_name -> bxsubscribe.SomeInfo
+<<<<<<< HEAD
 	12, // 3: bxsubscribe.UpdateSubScribeInfoReq.area:type_name -> bxsubscribe.UpdateSubScribeInfoReq.AreaEntry
 	10, // 4: bxsubscribe.UpdateSubScribeInfoReq.items:type_name -> bxsubscribe.Items
 	11, // 5: bxsubscribe.Items.a_key:type_name -> bxsubscribe.Keys
@@ -1421,6 +1763,22 @@ var file_bxsubscribe_proto_depIdxs = []int32{
 	7,  // 12: bxsubscribe.Bxsubscribe.UpdateSubScribeInfo:output_type -> bxsubscribe.StatusResp
 	10, // [10:13] is the sub-list for method output_type
 	7,  // [7:10] is the sub-list for method input_type
+=======
+	13, // 3: bxsubscribe.UpdateSubScribeInfoReq.area:type_name -> bxsubscribe.UpdateSubScribeInfoReq.AreaEntry
+	11, // 4: bxsubscribe.UpdateSubScribeInfoReq.items:type_name -> bxsubscribe.Items
+	12, // 5: bxsubscribe.Items.a_key:type_name -> bxsubscribe.Keys
+	10, // 6: bxsubscribe.UpdateSubScribeInfoReq.AreaEntry.value:type_name -> bxsubscribe.CityList
+	0,  // 7: bxsubscribe.Bxsubscribe.GetSubList:input_type -> bxsubscribe.SubscribeInfosReq
+	4,  // 8: bxsubscribe.Bxsubscribe.GetSubSomeInfo:input_type -> bxsubscribe.SomeInfoReq
+	9,  // 9: bxsubscribe.Bxsubscribe.UpdateSubScribeInfo:input_type -> bxsubscribe.UpdateSubScribeInfoReq
+	0,  // 10: bxsubscribe.Bxsubscribe.ByPushHistory:input_type -> bxsubscribe.SubscribeInfosReq
+	1,  // 11: bxsubscribe.Bxsubscribe.GetSubList:output_type -> bxsubscribe.SubscribeInfosResp
+	5,  // 12: bxsubscribe.Bxsubscribe.GetSubSomeInfo:output_type -> bxsubscribe.SomeInfoResp
+	7,  // 13: bxsubscribe.Bxsubscribe.UpdateSubScribeInfo:output_type -> bxsubscribe.StatusResp
+	8,  // 14: bxsubscribe.Bxsubscribe.ByPushHistory:output_type -> bxsubscribe.ByPushHistoryResp
+	11, // [11:15] is the sub-list for method output_type
+	7,  // [7:11] is the sub-list for method input_type
+>>>>>>> feature/v1.1.5
 	7,  // [7:7] is the sub-list for extension type_name
 	7,  // [7:7] is the sub-list for extension extendee
 	0,  // [0:7] is the sub-list for field type_name
@@ -1529,7 +1887,11 @@ func file_bxsubscribe_proto_init() {
 			}
 		}
 		file_bxsubscribe_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
+<<<<<<< HEAD
 			switch v := v.(*UpdateSubScribeInfoReq); i {
+=======
+			switch v := v.(*ByPushHistoryResp); i {
+>>>>>>> feature/v1.1.5
 			case 0:
 				return &v.state
 			case 1:
@@ -1541,7 +1903,11 @@ func file_bxsubscribe_proto_init() {
 			}
 		}
 		file_bxsubscribe_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
+<<<<<<< HEAD
 			switch v := v.(*CityList); i {
+=======
+			switch v := v.(*UpdateSubScribeInfoReq); i {
+>>>>>>> feature/v1.1.5
 			case 0:
 				return &v.state
 			case 1:
@@ -1553,7 +1919,11 @@ func file_bxsubscribe_proto_init() {
 			}
 		}
 		file_bxsubscribe_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
+<<<<<<< HEAD
 			switch v := v.(*Items); i {
+=======
+			switch v := v.(*CityList); i {
+>>>>>>> feature/v1.1.5
 			case 0:
 				return &v.state
 			case 1:
@@ -1565,6 +1935,21 @@ func file_bxsubscribe_proto_init() {
 			}
 		}
 		file_bxsubscribe_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
+<<<<<<< HEAD
+=======
+			switch v := v.(*Items); i {
+			case 0:
+				return &v.state
+			case 1:
+				return &v.sizeCache
+			case 2:
+				return &v.unknownFields
+			default:
+				return nil
+			}
+		}
+		file_bxsubscribe_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
+>>>>>>> feature/v1.1.5
 			switch v := v.(*Keys); i {
 			case 0:
 				return &v.state
@@ -1583,7 +1968,11 @@ func file_bxsubscribe_proto_init() {
 			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
 			RawDescriptor: file_bxsubscribe_proto_rawDesc,
 			NumEnums:      0,
+<<<<<<< HEAD
 			NumMessages:   13,
+=======
+			NumMessages:   14,
+>>>>>>> feature/v1.1.5
 			NumExtensions: 0,
 			NumServices:   1,
 		},

+ 72 - 0
jyBXSubscribe/rpc/type/bxsubscribe/bxsubscribe_grpc.pb.go

@@ -1,7 +1,11 @@
 // Code generated by protoc-gen-go-grpc. DO NOT EDIT.
 // versions:
 // - protoc-gen-go-grpc v1.2.0
+<<<<<<< HEAD
 // - protoc             v3.15.1
+=======
+// - protoc             v3.19.4
+>>>>>>> feature/v1.1.5
 // source: bxsubscribe.proto
 
 package bxsubscribe
@@ -22,12 +26,23 @@ const _ = grpc.SupportPackageIsVersion7
 //
 // For semantics around ctx use and closing/ending streaming RPCs, please refer to https://pkg.go.dev/google.golang.org/grpc/?tab=doc#ClientConn.NewStream.
 type BxsubscribeClient interface {
+<<<<<<< HEAD
 	//获取订阅推送列表
 	GetSubList(ctx context.Context, in *SubscribeInfosReq, opts ...grpc.CallOption) (*SubscribeInfosResp, error)
 	//获取订阅推送相关信息
 	GetSubSomeInfo(ctx context.Context, in *SomeInfoReq, opts ...grpc.CallOption) (*SomeInfoResp, error)
 	//修改订阅信息接口
 	UpdateSubScribeInfo(ctx context.Context, in *UpdateSubScribeInfoReq, opts ...grpc.CallOption) (*StatusResp, error)
+=======
+	// 获取订阅推送列表
+	GetSubList(ctx context.Context, in *SubscribeInfosReq, opts ...grpc.CallOption) (*SubscribeInfosResp, error)
+	// 获取订阅推送相关信息
+	GetSubSomeInfo(ctx context.Context, in *SomeInfoReq, opts ...grpc.CallOption) (*SomeInfoResp, error)
+	// 修改订阅信息接口
+	UpdateSubScribeInfo(ctx context.Context, in *UpdateSubScribeInfoReq, opts ...grpc.CallOption) (*StatusResp, error)
+	// 推送页面筛选导出
+	ByPushHistory(ctx context.Context, in *SubscribeInfosReq, opts ...grpc.CallOption) (*ByPushHistoryResp, error)
+>>>>>>> feature/v1.1.5
 }
 
 type bxsubscribeClient struct {
@@ -65,16 +80,39 @@ func (c *bxsubscribeClient) UpdateSubScribeInfo(ctx context.Context, in *UpdateS
 	return out, nil
 }
 
+<<<<<<< HEAD
+=======
+func (c *bxsubscribeClient) ByPushHistory(ctx context.Context, in *SubscribeInfosReq, opts ...grpc.CallOption) (*ByPushHistoryResp, error) {
+	out := new(ByPushHistoryResp)
+	err := c.cc.Invoke(ctx, "/bxsubscribe.Bxsubscribe/ByPushHistory", in, out, opts...)
+	if err != nil {
+		return nil, err
+	}
+	return out, nil
+}
+
+>>>>>>> feature/v1.1.5
 // BxsubscribeServer is the server API for Bxsubscribe service.
 // All implementations must embed UnimplementedBxsubscribeServer
 // for forward compatibility
 type BxsubscribeServer interface {
+<<<<<<< HEAD
 	//获取订阅推送列表
 	GetSubList(context.Context, *SubscribeInfosReq) (*SubscribeInfosResp, error)
 	//获取订阅推送相关信息
 	GetSubSomeInfo(context.Context, *SomeInfoReq) (*SomeInfoResp, error)
 	//修改订阅信息接口
 	UpdateSubScribeInfo(context.Context, *UpdateSubScribeInfoReq) (*StatusResp, error)
+=======
+	// 获取订阅推送列表
+	GetSubList(context.Context, *SubscribeInfosReq) (*SubscribeInfosResp, error)
+	// 获取订阅推送相关信息
+	GetSubSomeInfo(context.Context, *SomeInfoReq) (*SomeInfoResp, error)
+	// 修改订阅信息接口
+	UpdateSubScribeInfo(context.Context, *UpdateSubScribeInfoReq) (*StatusResp, error)
+	// 推送页面筛选导出
+	ByPushHistory(context.Context, *SubscribeInfosReq) (*ByPushHistoryResp, error)
+>>>>>>> feature/v1.1.5
 	mustEmbedUnimplementedBxsubscribeServer()
 }
 
@@ -91,6 +129,12 @@ func (UnimplementedBxsubscribeServer) GetSubSomeInfo(context.Context, *SomeInfoR
 func (UnimplementedBxsubscribeServer) UpdateSubScribeInfo(context.Context, *UpdateSubScribeInfoReq) (*StatusResp, error) {
 	return nil, status.Errorf(codes.Unimplemented, "method UpdateSubScribeInfo not implemented")
 }
+<<<<<<< HEAD
+=======
+func (UnimplementedBxsubscribeServer) ByPushHistory(context.Context, *SubscribeInfosReq) (*ByPushHistoryResp, error) {
+	return nil, status.Errorf(codes.Unimplemented, "method ByPushHistory not implemented")
+}
+>>>>>>> feature/v1.1.5
 func (UnimplementedBxsubscribeServer) mustEmbedUnimplementedBxsubscribeServer() {}
 
 // UnsafeBxsubscribeServer may be embedded to opt out of forward compatibility for this service.
@@ -158,6 +202,27 @@ func _Bxsubscribe_UpdateSubScribeInfo_Handler(srv interface{}, ctx context.Conte
 	return interceptor(ctx, in, info, handler)
 }
 
+<<<<<<< HEAD
+=======
+func _Bxsubscribe_ByPushHistory_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+	in := new(SubscribeInfosReq)
+	if err := dec(in); err != nil {
+		return nil, err
+	}
+	if interceptor == nil {
+		return srv.(BxsubscribeServer).ByPushHistory(ctx, in)
+	}
+	info := &grpc.UnaryServerInfo{
+		Server:     srv,
+		FullMethod: "/bxsubscribe.Bxsubscribe/ByPushHistory",
+	}
+	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+		return srv.(BxsubscribeServer).ByPushHistory(ctx, req.(*SubscribeInfosReq))
+	}
+	return interceptor(ctx, in, info, handler)
+}
+
+>>>>>>> feature/v1.1.5
 // Bxsubscribe_ServiceDesc is the grpc.ServiceDesc for Bxsubscribe service.
 // It's only intended for direct use with grpc.RegisterService,
 // and not to be introspected or modified (even as a copy)
@@ -177,6 +242,13 @@ var Bxsubscribe_ServiceDesc = grpc.ServiceDesc{
 			MethodName: "UpdateSubScribeInfo",
 			Handler:    _Bxsubscribe_UpdateSubScribeInfo_Handler,
 		},
+<<<<<<< HEAD
+=======
+		{
+			MethodName: "ByPushHistory",
+			Handler:    _Bxsubscribe_ByPushHistory_Handler,
+		},
+>>>>>>> feature/v1.1.5
 	},
 	Streams:  []grpc.StreamDesc{},
 	Metadata: "bxsubscribe.proto",

+ 21 - 0
jyBXSubscribe/rpc/util/util.go

@@ -0,0 +1,21 @@
+package util
+
+import (
+	"app.yhyue.com/moapp/jybase/encrypt"
+)
+
+// 加密
+func EncodeId(sid string) string {
+	if sid == "" {
+		return ""
+	}
+	return encrypt.EncodeArticleId2ByCheck(sid)
+}
+
+// 解密
+func DecodeId(eid string) string {
+	if eid == "" {
+		return ""
+	}
+	return encrypt.DecodeArticleId2ByCheck(eid)[0]
+}

Some files were not shown because too many files changed in this diff