Sfoglia il codice sorgente

Merge branch 'feature/v1.1.5' into feature/v1.1.7

123456 2 anni fa
parent
commit
6248b5737c
44 ha cambiato i file con 6888 aggiunte e 2698 eliminazioni
  1. 2 0
      README.md
  2. 1 0
      jyBXBase/api/bxbase.api
  3. 37 36
      jyBXBase/api/internal/logic/newestBiddingLogic.go
  4. 1 0
      jyBXBase/api/internal/types/types.go
  5. 24 26
      jyBXBase/entity/db.go
  6. 37 36
      jyBXBase/rpc/bxbase.proto
  7. 4 18
      jyBXBase/rpc/etc/db.yaml
  8. 81 112
      jyBXBase/rpc/init/db.go
  9. 20 19
      jyBXBase/rpc/init/init.go
  10. 1 1
      jyBXBase/rpc/internal/logic/labelactionlogic.go
  11. 4 4
      jyBXBase/rpc/internal/logic/newestbiddinglogic.go
  12. 123 0
      jyBXBase/rpc/internal/logic/newestbiddinglogic_test.go
  13. 178 177
      jyBXBase/rpc/model/newestBidding.go
  14. 110 105
      jyBXBase/rpc/type/bxbase/bxbase.pb.go
  15. 1 1
      jyBXBase/rpc/type/bxbase/bxbase_grpc.pb.go
  16. 8 5
      jyBXSubscribe/api/bxsubscribe.api
  17. 2 2
      jyBXSubscribe/api/etc/bxsubscribe-api.yaml
  18. 4 3
      jyBXSubscribe/api/internal/logic/someInfoLogic.go
  19. 2 0
      jyBXSubscribe/api/internal/logic/subscribeListLogic.go
  20. 8 5
      jyBXSubscribe/api/internal/types/types.go
  21. 63 0
      jyBXSubscribe/api/logs/access.log
  22. 131 0
      jyBXSubscribe/api/logs/access.log-2022-09-08
  23. 4 0
      jyBXSubscribe/api/logs/error.log
  24. 2 0
      jyBXSubscribe/api/logs/error.log-2022-09-08
  25. 1 0
      jyBXSubscribe/api/logs/slow.log
  26. 49 0
      jyBXSubscribe/api/logs/slow.log-2022-09-08
  27. 3278 0
      jyBXSubscribe/api/logs/stat.log
  28. 2080 0
      jyBXSubscribe/api/logs/stat.log-2022-09-08
  29. 3 4
      jyBXSubscribe/entity/db.go
  30. 5 5
      jyBXSubscribe/go.mod
  31. 170 54
      jyBXSubscribe/go.sum
  32. 5 2
      jyBXSubscribe/rpc/bxsubscribe.proto
  33. 7 2
      jyBXSubscribe/rpc/etc/bxsubscribe.yaml
  34. 12 19
      jyBXSubscribe/rpc/etc/db.yaml
  35. 27 41
      jyBXSubscribe/rpc/init/db.go
  36. 18 6
      jyBXSubscribe/rpc/init/init.go
  37. 0 76
      jyBXSubscribe/rpc/init/pushMapping.go
  38. 1 0
      jyBXSubscribe/rpc/internal/config/config.go
  39. 29 28
      jyBXSubscribe/rpc/internal/logic/getsublistlogic.go
  40. 156 0
      jyBXSubscribe/rpc/internal/logic/getsublistlogic_test.go
  41. 4 1
      jyBXSubscribe/rpc/internal/logic/getsubsomeinfologic.go
  42. 195 158
      jyBXSubscribe/rpc/model/push.go
  43. 0 1569
      jyBXSubscribe/rpc/type/bxsubscribe/bxsubscribe.pb.go
  44. 0 183
      jyBXSubscribe/rpc/type/bxsubscribe/bxsubscribe_grpc.pb.go

+ 2 - 0
README.md

@@ -1,6 +1,8 @@
 v1.1.7
 推送记录存储结构调整为TiDB
 ### 剑鱼微服务
+v1.1.5
+推送记录存储结构调整为TiDB
 #### 接口文档地址
 ```
 https://yapi.jydev.jianyu360.com/project/63/interface/api

+ 1 - 0
jyBXBase/api/bxbase.api

@@ -95,6 +95,7 @@ type (
 		UserId    string `header:"userId,optional"`    //用户id
 		AppId     string `header:"appId"`              //appId
 		EntUserId string `header:"entUserId,optional"` //商机管理用户 用户id:entUserId
+		NewUserId int64  `header:"newUserId"`
 	}
 	//公共接口返回
 	CommonRes {

+ 37 - 36
jyBXBase/api/internal/logic/newestBiddingLogic.go

@@ -1,51 +1,52 @@
 package logic
 
 import (
-	"app.yhyue.com/moapp/jybase/common"
-	"context"
-	"jyBXBase/rpc/bxbase"
-	"net/http"
+        "app.yhyue.com/moapp/jybase/common"
+        "context"
+        "jyBXBase/rpc/bxbase"
+        "net/http"
 
-	"jyBXBase/api/internal/svc"
-	"jyBXBase/api/internal/types"
+        "jyBXBase/api/internal/svc"
+        "jyBXBase/api/internal/types"
 
-	"github.com/zeromicro/go-zero/core/logx"
+        "github.com/zeromicro/go-zero/core/logx"
 )
 
 type NewestBiddingLogic struct {
-	logx.Logger
-	ctx    context.Context
-	svcCtx *svc.ServiceContext
-	r      *http.Request
+        logx.Logger
+        ctx    context.Context
+        svcCtx *svc.ServiceContext
+        r      *http.Request
 }
 
 func NewNewestBiddingLogic(ctx context.Context, svcCtx *svc.ServiceContext, r *http.Request) *NewestBiddingLogic {
-	return &NewestBiddingLogic{
-		Logger: logx.WithContext(ctx),
-		ctx:    ctx,
-		svcCtx: svcCtx,
-		r:      r,
-	}
+        return &NewestBiddingLogic{
+	      Logger: logx.WithContext(ctx),
+	      ctx:    ctx,
+	      svcCtx: svcCtx,
+	      r:      r,
+        }
 }
 
 func (l *NewestBiddingLogic) NewestBidding(req *types.NewestReq) (resp *types.CommonRes, err error) {
-	res, err0 := l.svcCtx.Bxbase.NewestBidding(l.ctx, &bxbase.NewestBiddingReq{
-		UserId:    req.UserId,
-		AppId:     req.AppId,
-		City:      req.City,
-		IsSearch:  req.IsSearch,
-		EntUserId: req.EntUserId,
-	})
-	if err0 != nil {
-		return &types.CommonRes{
-			Err_code: -1,
-			Err_msg:  "错误",
-			Data:     nil,
-		}, nil
-	}
-	return &types.CommonRes{
-		Err_code: common.IntAll(res.ErrCode),
-		Err_msg:  res.ErrMsg,
-		Data:     res.Data,
-	}, nil
+        res, err0 := l.svcCtx.Bxbase.NewestBidding(l.ctx, &bxbase.NewestBiddingReq{
+	      UserId:    req.UserId,
+	      AppId:     req.AppId,
+	      City:      req.City,
+	      IsSearch:  req.IsSearch,
+	      EntUserId: req.EntUserId,
+	      NewUserId: req.NewUserId,
+        })
+        if err0 != nil {
+	      return &types.CommonRes{
+		    Err_code: -1,
+		    Err_msg:  "错误",
+		    Data:     nil,
+	      }, nil
+        }
+        return &types.CommonRes{
+	      Err_code: common.IntAll(res.ErrCode),
+	      Err_msg:  res.ErrMsg,
+	      Data:     res.Data,
+        }, nil
 }

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

@@ -86,6 +86,7 @@ type NewestReq struct {
 	UserId    string `header:"userId,optional"`    //用户id
 	AppId     string `header:"appId"`              //appId
 	EntUserId string `header:"entUserId,optional"` //商机管理用户 用户id:entUserId
+	NewUserId int64  `header:"newUserId"`
 }
 
 type CommonRes struct {

+ 24 - 26
jyBXBase/entity/db.go

@@ -1,49 +1,47 @@
 package entity
 
 type Mongo struct {
-	Main    *MongoStruct `json:"main,optional"`
-	MgoLog  *MongoStruct `json:"mgoLog,optional"`
-	Ent     *MongoStruct `json:"ent,optional"`
-	Bidding *MongoStruct `json:"bidding,optional"`
+      Main    *MongoStruct `json:"main,optional"`
+      MgoLog  *MongoStruct `json:"mgoLog,optional"`
+      Ent     *MongoStruct `json:"ent,optional"`
+      Bidding *MongoStruct `json:"bidding,optional"`
 }
 
 //
 type MongoStruct struct {
-	Address        string `json:"address"`
-	Size           int    `json:"size"`
-	DbName         string `json:"dbName"`
-	UserName       string `json:"userName,optional"`
-	Password       string `json:"password,optional"`
-	Collection     string `json:"collection,optional"`
-	CollectionBack string `json:"collectionBack,optional"`
-	MaxOpenConns   int    `json:"maxOpenConns,optional"`
-	MaxIdleConns   int    `json:"maxIdleConns,optional"`
+      Address        string `json:"address"`
+      Size           int    `json:"size"`
+      DbName         string `json:"dbName"`
+      UserName       string `json:"userName,optional"`
+      Password       string `json:"password,optional"`
+      Collection     string `json:"collection,optional"`
+      CollectionBack string `json:"collectionBack,optional"`
+      MaxOpenConns   int    `json:"maxOpenConns,optional"`
+      MaxIdleConns   int    `json:"maxIdleConns,optional"`
 }
 
 type Mysql struct {
-	Main         *MysqlStruct `json:"main,optional"`
-	Push         *MysqlStruct `json:"push,optional"`
-	MemberPush   *MysqlStruct `json:"memberPush"`
-	EntnichePush *MysqlStruct `json:"entnichePush"`
+      Main        *MysqlStruct `json:"main,optional"`
+      BaseService *MysqlStruct `json:"baseService,omitempty"`
 }
 
 //mysql
 type MysqlStruct struct {
-	DbName       string `json:"dbName,optional"`
-	Address      string `json:"address,optional"`
-	UserName     string `json:"userName,optional"`
-	Password     string `json:"password,optional"`
-	MaxOpenConns int    `json:"maxOpenConns,optional"`
-	MaxIdleConns int    `json:"maxIdleConns,optional"`
+      DbName       string `json:"dbName,optional"`
+      Address      string `json:"address,optional"`
+      UserName     string `json:"userName,optional"`
+      Password     string `json:"password,optional"`
+      MaxOpenConns int    `json:"maxOpenConns,optional"`
+      MaxIdleConns int    `json:"maxIdleConns,optional"`
 }
 
 //redis
 type RedisStuct struct {
-	Addr []string `json:"addr"`
+      Addr []string `json:"addr"`
 }
 
 //es
 type EsStruct struct {
-	Addr string `json:"addr"`
-	Size int    `json:"size"`
+      Addr string `json:"addr"`
+      Size int    `json:"size"`
 }

+ 37 - 36
jyBXBase/rpc/bxbase.proto

@@ -117,45 +117,45 @@ message ShowSearchRes{
 }
 
 message ListSearchRes{
-  string userId =1;
-  string type =2;
-  string searchvalue =3;                   //搜索词
-  string publishtime=4;   //发布时间
-  string area =5;       //地区
-  string subtype =6;    //信息类型
-  string minprice =7; //最低价格
-  string maxprice =8;//最高价格
-  string industry =9;//选中的行业
-  string selectType =10;//标题 or 全文
-  string buyerclass =11;//采购单位行业
-  string buyertel =12;//是否有采购电话
-  string winnertel =13;//是否有中标电话
-  string fileExists =14;//附件
-  string notkey =15;//排除词
-  string city=16;
-  string id =17;
-  bool isPay =18;
-  string tabularflag =19;
+  string userId = 1;
+  string type = 2;
+  string searchvalue = 3;                   //搜索词
+  string publishtime = 4;   //发布时间
+  string area = 5;       //地区
+  string subtype = 6;    //信息类型
+  string minprice = 7; //最低价格
+  string maxprice = 8;//最高价格
+  string industry = 9;//选中的行业
+  string selectType = 10;//标题 or 全文
+  string buyerclass = 11;//采购单位行业
+  string buyertel = 12;//是否有采购电话
+  string winnertel = 13;//是否有中标电话
+  string fileExists = 14;//附件
+  string notkey = 15;//排除词
+  string city = 16;
+  string id = 17;
+  bool isPay = 18;
+  string tabularflag = 19;
 }
 
 message AddSearchReq{
-  string userId =1;
-  string type =2;
-  string keywords =3;     //搜索词
-  string publishTime=4;   //发布时间
-  string area =5;       //地区
-  string subtype =6;    //信息类型
-  string minPrice =7; //最低价格
-  string maxPrice =8;//最高价格
-  string industry =9;//选中的行业
-  string selectType =10;//标题 or 全文
-  string buyerClass =11;//采购单位行业
-  string hasBuyerTel =12;//是否有采购电话
-  string hasWinnerTel =13;//是否有中标电话
-  string fileExists =14;//附件
-  string notKey =15;//排除词
-  string  city=16;
-  string inKey =17;
+  string userId = 1;
+  string type = 2;
+  string keywords = 3;     //搜索词
+  string publishTime = 4;   //发布时间
+  string area = 5;       //地区
+  string subtype = 6;    //信息类型
+  string minPrice = 7; //最低价格
+  string maxPrice = 8;//最高价格
+  string industry = 9;//选中的行业
+  string selectType = 10;//标题 or 全文
+  string buyerClass = 11;//采购单位行业
+  string hasBuyerTel = 12;//是否有采购电话
+  string hasWinnerTel = 13;//是否有中标电话
+  string fileExists = 14;//附件
+  string notKey = 15;//排除词
+  string  city = 16;
+  string inKey = 17;
   string  appId = 18;
 }
 
@@ -173,6 +173,7 @@ message NewestBiddingReq{
   string  userId = 3;
   string  appId = 4;
   string  entUserId = 5;
+  int64 newUserId = 6;
 }
 
 //首页最新招标信息Resp

+ 4 - 18
jyBXBase/rpc/etc/db.yaml

@@ -6,25 +6,11 @@ mysql:
         password: Topnet123
         maxOpenConns: 5
         maxIdleConns: 5
-    push:
-        dbName: jianyu
-        address: 192.168.3.11:3366
-        userName: root
-        password: Topnet123
-        maxOpenConns: 5
-        maxIdleConns: 5
-    memberPush:
-        dbName: jianyu
-        address: 192.168.3.11:3366
+    baseService:
+        dbName: base_service
+        address: 192.168.3.217:4000
         userName: root
-        password: Topnet123
-        maxOpenConns: 5
-        maxIdleConns: 5
-    entnichePush:
-        dbName: jianyu
-        address: 192.168.3.11:3366
-        userName: root
-        password: Topnet123
+        password: '=PDT49#80Z!RVv52_z'
         maxOpenConns: 5
         maxIdleConns: 5
 redis:

+ 81 - 112
jyBXBase/rpc/init/db.go

@@ -4,135 +4,104 @@
 package init
 
 import (
-	"github.com/zeromicro/go-zero/core/logx"
-	"strings"
-
-	"jyBXBase/entity"
-
-	"app.yhyue.com/moapp/jybase/esv1"
-	"app.yhyue.com/moapp/jybase/mongodb"
-	"app.yhyue.com/moapp/jybase/mysql"
-	"app.yhyue.com/moapp/jybase/redis"
+        "app.yhyue.com/moapp/jybase/esv1"
+        "app.yhyue.com/moapp/jybase/mongodb"
+        "app.yhyue.com/moapp/jybase/mysql"
+        "app.yhyue.com/moapp/jybase/redis"
+        "github.com/zeromicro/go-zero/core/logx"
+        "jyBXBase/entity"
+        "strings"
 )
 
 var (
-	MainMysql          *mysql.Mysql
-	PushMysql          *mysql.Mysql
-	BigmemberPushMysql *mysql.Mysql
-	EntnichePushMysql  *mysql.Mysql
-	Mgo                mongodb.MongodbSim
-	MgoEnt             mongodb.MongodbSim
-	MgoBidding         mongodb.MongodbSim
+      MainMysql        *mysql.Mysql
+      BaseServiceMysql *mysql.Mysql
+      Mgo              mongodb.MongodbSim
+      MgoEnt           mongodb.MongodbSim
+      MgoBidding       mongodb.MongodbSim
 )
 
 //
 func MongoDBInit(em *entity.Mongo) {
-	//初始化 mongodb
-	if em.Main.Address != "" {
-		logx.Info("--初始化 mongodb--")
-		Mgo = mongodb.MongodbSim{
-			MongodbAddr: em.Main.Address,
-			Size:        em.Main.Size,
-			DbName:      em.Main.DbName,
-		}
-		Mgo.InitPool()
-	}
-	//
-	if em.Bidding.Address != "" {
-		logx.Info("--初始化 mongodb bidding--")
-		MgoBidding = mongodb.MongodbSim{
-			MongodbAddr: em.Bidding.Address,
-			Size:        em.Bidding.Size,
-			DbName:      em.Bidding.DbName,
-			UserName:    em.Bidding.UserName,
-			Password:    em.Bidding.Password,
-		}
-		MgoBidding.InitPool()
-	}
-	//
-	if em.Ent.Address != "" {
-		logx.Info("--初始化 mongodb ent--")
-		MgoEnt = mongodb.MongodbSim{
-			MongodbAddr: em.Ent.Address,
-			Size:        em.Ent.Size,
-			DbName:      em.Ent.DbName,
-			UserName:    em.Ent.UserName,
-			Password:    em.Ent.Password,
-		}
-		MgoEnt.InitPool()
-	}
+      //初始化 mongodb
+      if em.Main.Address != "" {
+	  logx.Info("--初始化 mongodb--")
+	  Mgo = mongodb.MongodbSim{
+	        MongodbAddr: em.Main.Address,
+	        Size:        em.Main.Size,
+	        DbName:      em.Main.DbName,
+	  }
+	  Mgo.InitPool()
+      }
+      //
+      if em.Bidding.Address != "" {
+	  logx.Info("--初始化 mongodb bidding--")
+	  MgoBidding = mongodb.MongodbSim{
+	        MongodbAddr: em.Bidding.Address,
+	        Size:        em.Bidding.Size,
+	        DbName:      em.Bidding.DbName,
+	        UserName:    em.Bidding.UserName,
+	        Password:    em.Bidding.Password,
+	  }
+	  MgoBidding.InitPool()
+      }
+      if em.Ent.Address != "" {
+	  logx.Info("--初始化 mongodb ent--")
+	  MgoEnt = mongodb.MongodbSim{
+	        MongodbAddr: em.Ent.Address,
+	        Size:        em.Ent.Size,
+	        DbName:      em.Ent.DbName,
+	        UserName:    em.Ent.UserName,
+	        Password:    em.Ent.Password,
+	  }
+	  MgoEnt.InitPool()
+      }
 }
 
 //
 func MysqlInit(em *entity.Mysql) {
-	//初始化 mysql-main
-	if em.Main.Address != "" {
-		logx.Info("--初始化 main mysql--")
-		MainMysql = &mysql.Mysql{
-			Address:      em.Main.Address,
-			UserName:     em.Main.UserName,
-			PassWord:     em.Main.Password,
-			DBName:       em.Main.DbName,
-			MaxOpenConns: em.Main.MaxOpenConns,
-			MaxIdleConns: em.Main.MaxIdleConns,
-		}
-		MainMysql.Init()
-	}
-	//初始化 mysql-push
-	if em.Push.Address != "" {
-		logx.Info("--初始化 push mysql--")
-		PushMysql = &mysql.Mysql{
-			Address:      em.Push.Address,
-			UserName:     em.Push.UserName,
-			PassWord:     em.Push.Password,
-			DBName:       em.Push.DbName,
-			MaxOpenConns: em.Push.MaxOpenConns,
-			MaxIdleConns: em.Push.MaxIdleConns,
-		}
-		PushMysql.Init()
-	}
-	//初始化 mysql-大会员
-	if em.MemberPush.Address != "" {
-		logx.Info("--初始化 MemberPush mysql--")
-		BigmemberPushMysql = &mysql.Mysql{
-			Address:      em.MemberPush.Address,
-			UserName:     em.MemberPush.UserName,
-			PassWord:     em.MemberPush.Password,
-			DBName:       em.MemberPush.DbName,
-			MaxOpenConns: em.MemberPush.MaxOpenConns,
-			MaxIdleConns: em.MemberPush.MaxIdleConns,
-		}
-		BigmemberPushMysql.Init()
-	}
-	//初始化 mysql-商机管理
-	if em.EntnichePush.Address != "" {
-		logx.Info("--初始化 EntnichePush mysql--")
-		EntnichePushMysql = &mysql.Mysql{
-			Address:      em.EntnichePush.Address,
-			UserName:     em.EntnichePush.UserName,
-			PassWord:     em.EntnichePush.Password,
-			DBName:       em.EntnichePush.DbName,
-			MaxOpenConns: em.EntnichePush.MaxOpenConns,
-			MaxIdleConns: em.EntnichePush.MaxIdleConns,
-		}
-		EntnichePushMysql.Init()
-	}
+      //初始化 mysql-main
+      if em.Main.Address != "" {
+	  logx.Info("--初始化 main mysql--")
+	  MainMysql = &mysql.Mysql{
+	        Address:      em.Main.Address,
+	        UserName:     em.Main.UserName,
+	        PassWord:     em.Main.Password,
+	        DBName:       em.Main.DbName,
+	        MaxOpenConns: em.Main.MaxOpenConns,
+	        MaxIdleConns: em.Main.MaxIdleConns,
+	  }
+	  MainMysql.Init()
+      }
+      //初始化 mysql-BaseService
+      if em.BaseService.Address != "" {
+	  logx.Info("--初始化 推送 mysql--")
+	  BaseServiceMysql = &mysql.Mysql{
+	        Address:      em.BaseService.Address,
+	        UserName:     em.BaseService.UserName,
+	        PassWord:     em.BaseService.Password,
+	        DBName:       em.BaseService.DbName,
+	        MaxOpenConns: em.BaseService.MaxOpenConns,
+	        MaxIdleConns: em.BaseService.MaxIdleConns,
+	  }
+	  BaseServiceMysql.Init()
+      }
 }
 
 //
 func RedisInit(rm *entity.RedisStuct) {
-	//初始化 redis
-	if len(rm.Addr) > 0 {
-		logx.Info("--初始化 redis--")
-		redis.InitRedisBySize(strings.Join(rm.Addr, ","), 100, 30, 300)
-	}
+      //初始化 redis
+      if len(rm.Addr) > 0 {
+	  logx.Info("--初始化 redis--")
+	  redis.InitRedisBySize(strings.Join(rm.Addr, ","), 100, 30, 300)
+      }
 }
 
 //
 func EsInit(es *entity.EsStruct) {
-	//初始化 elasticsearch
-	if es.Addr != "" {
-		logx.Info("--初始化 elasticsearch--")
-		elastic.InitElasticSize(es.Addr, es.Size)
-	}
+      //初始化 elasticsearch
+      if es.Addr != "" {
+	  logx.Info("--初始化 elasticsearch--")
+	  elastic.InitElasticSize(es.Addr, es.Size)
+      }
 }

+ 20 - 19
jyBXBase/rpc/init/init.go

@@ -1,12 +1,12 @@
 package init
 
 import (
-	"flag"
-	_ "github.com/go-sql-driver/mysql"
-	"github.com/zeromicro/go-zero/core/conf"
-	"github.com/zeromicro/go-zero/core/logx"
-	"jyBXBase/entity"
-	"jyBXBase/rpc/internal/config"
+        "flag"
+        _ "github.com/go-sql-driver/mysql"
+        "github.com/zeromicro/go-zero/core/conf"
+        "github.com/zeromicro/go-zero/core/logx"
+        "jyBXBase/entity"
+        "jyBXBase/rpc/internal/config"
 )
 
 var configFile = flag.String("cf", "etc/bxbase.yaml", "the config file")
@@ -22,6 +22,19 @@ var logFile = flag.String("lf", "etc/logs.yaml", "the logs file")
 var logc entity.Logc
 
 func init() {
+        //初始化日志信息
+        conf.MustLoad(*logFile, &logc)
+        if len(logc.Level) > 0 {
+	      for _, v := range logc.Level {
+		    logx.MustSetup(logx.LogConf{
+			  Mode:     logc.Mode,
+			  Path:     logc.Path,
+			  Level:    v,
+			  KeepDays: logc.KeepDays,
+		    })
+		    logx.Info(v, "--日志记录")
+	      }
+        }
 	//基本配置
 	conf.MustLoad(*configFile, &C)
 	//数据库配置
@@ -34,17 +47,5 @@ func init() {
 	RedisInit(&DB.Redis)
 	//初始es
 	EsInit(&DB.Es)
-	//初始化日志信息
-	conf.MustLoad(*logFile, &logc)
-	if len(logc.Level) > 0 {
-		for _, v := range logc.Level {
-			logx.MustSetup(logx.LogConf{
-				Mode:     logc.Mode,
-				Path:     logc.Path,
-				Level:    v,
-				KeepDays: logc.KeepDays,
-			})
-			logx.Info(v, "--日志记录")
-		}
-	}
+
 }

+ 1 - 1
jyBXBase/rpc/internal/logic/labelactionlogic.go

@@ -155,7 +155,7 @@ func (l *LabelActionLogic) LabelAction(in *bxbase.LabelActionReq) (*bxbase.Label
 				log.Println("updatesql:", updatesql)
 				_, errs := IC.MainMysql.ExecBySql(updatesql, updateValue...)
 				if errs != nil {
-					log.Println("更新、绑定标签失败%s", in.UserId, updateValue)
+					log.Println("更新、绑定标签失败", in.UserId, updateValue)
 				}
 			}
 			if len(insertValue) > 0 {

+ 4 - 4
jyBXBase/rpc/internal/logic/newestbiddinglogic.go

@@ -73,7 +73,7 @@ func (l *NewestBiddingLogic) NewestBidding(in *bxbase.NewestBiddingReq) (*bxbase
 				o_msgset := MC.ObjToMap((*userMap)["o_member_jy"])
 				big_items, ok := (*o_msgset)["a_items"].([]interface{})
 				//大会员推送历史
-				result := model.GetNewestInfo(rks, "m").GetPushHistory()
+				result := model.GetNewestInfo(rks, "m",in.NewUserId).GetPushHistory()
 				res.Data.Count = int64(len(result))
 				if res.Data.Count > 0 {
 					res.Data.HasSubKeys = ok && len(big_items) > 0
@@ -85,7 +85,7 @@ func (l *NewestBiddingLogic) NewestBidding(in *bxbase.NewestBiddingReq) (*bxbase
 				if count := IC.MainMysql.CountBySql(`SELECT count(1) FROM entniche_user u LEFT JOIN entniche_info i ON u.ent_id=i.id WHERE u.phone=? and u.power=1 and i.status=1`, phone); count > 0 {
 					//商机管理推送历史
 					isPayUser = true
-					result := model.GetNewestInfo(in.EntUserId, "e").GetPushHistory()
+					result := model.GetNewestInfo(in.EntUserId, "e",in.NewUserId).GetPushHistory()
 					res.Data.Count = int64(len(result))
 					if res.Data.Count > 0 {
 						res.Data.List = result
@@ -97,7 +97,7 @@ func (l *NewestBiddingLogic) NewestBidding(in *bxbase.NewestBiddingReq) (*bxbase
 				o_msgset := MC.ObjToMap((*userMap)["o_vipjy"])
 				vip_items, ok := (*o_msgset)["a_items"].([]interface{})
 				//vip查询推送历史
-				result := model.GetNewestInfo(rks, "v").GetPushHistory()
+				result := model.GetNewestInfo(rks, "v",in.NewUserId).GetPushHistory()
 				res.Data.IsVip = true
 				res.Data.HasSubKeys = ok && len(vip_items) > 0
 				res.Data.Count = int64(len(result))
@@ -113,7 +113,7 @@ func (l *NewestBiddingLogic) NewestBidding(in *bxbase.NewestBiddingReq) (*bxbase
 			items, ok := (*o_msgset)["a_key"].([]interface{})
 			if ok && len(items) > 0 {
 				//普通用户查询推送历史
-				result := model.GetNewestInfo(rks, "f").GetPushHistory()
+				result := model.GetNewestInfo(rks, "f",in.NewUserId).GetPushHistory()
 				res.Data.IsVip = false
 				res.Data.HasSubKeys = ok && len(items) > 0
 				res.Data.Count = int64(len(result))

+ 123 - 0
jyBXBase/rpc/internal/logic/newestbiddinglogic_test.go

@@ -0,0 +1,123 @@
+package logic
+
+import (
+      elastic "app.yhyue.com/moapp/jybase/esv1"
+      "app.yhyue.com/moapp/jybase/mongodb"
+      "app.yhyue.com/moapp/jybase/mysql"
+      "app.yhyue.com/moapp/jybase/redis"
+      "context"
+      "github.com/zeromicro/go-zero/core/logx"
+      "jyBXBase/entity"
+      "jyBXBase/rpc/bxbase"
+      IC "jyBXBase/rpc/init"
+      "jyBXBase/rpc/internal/config"
+      "jyBXBase/rpc/internal/svc"
+      "reflect"
+      "strings"
+      "testing"
+)
+func init() {
+
+      logx.Info("--初始化 mongodb--")
+      IC.Mgo = mongodb.MongodbSim{
+	  MongodbAddr: "192.168.3.206:27080",
+	  Size:        5,
+	  DbName:      "qfw",
+      }
+      IC.Mgo.InitPool()
+      IC.DB = config.Db{Mongo: entity.Mongo{
+	  Bidding: &entity.MongoStruct{
+	        Collection:     "bidding",
+	        CollectionBack: "bidding_back",
+	  },
+      }}
+      IC.DB.Mongo.Bidding.Collection = "bidding_back"
+      //
+      logx.Info("--初始化 mongodb bidding--")
+      IC.MgoBidding = mongodb.MongodbSim{
+	  MongodbAddr: "192.168.3.206:27001",
+	  Size:        5,
+	  DbName:      "qfw_data",
+	  UserName:    "jyDevGroup",
+	  Password:    "jy@DevGroup",
+      }
+      IC.MgoBidding.InitPool()
+
+      logx.Info("--初始化 mysql--")
+      IC.MainMysql = &mysql.Mysql{
+	  Address:      "192.168.3.11:3366",
+	  UserName:     "root",
+	  PassWord:     "Topnet123",
+	  DBName:       "jianyu",
+	  MaxOpenConns: 5,
+	  MaxIdleConns: 5,
+      }
+      IC.MainMysql.Init()
+
+      //初始化 mysql-EntnichePush
+      logx.Info("--初始化 商机管理推送 mysql--")
+      IC.BaseServiceMysql = &mysql.Mysql{
+	  Address:      "192.168.3.217:4000",
+	  UserName:     "root",
+	  PassWord:     "=PDT49#80Z!RVv52_z",
+	  DBName:       "base_service",
+	  MaxOpenConns: 5,
+	  MaxIdleConns: 5,
+      }
+      IC.BaseServiceMysql.Init()
+
+      logx.Info("--初始化 redis--")
+      redis.InitRedisBySize(strings.Join([]string{"other=192.168.3.206:1712", "push=192.168.3.206:1712", "pushcache_1=192.168.3.206:5000", "pushcache_2_a=192.168.3.206:5001", "pushcache_2_b=192.168.3.206:5002"}, ","), 100, 30, 300)
+      //初始化 elasticsearch
+      logx.Info("--初始化 elasticsearch--")
+      elastic.InitElasticSize("http://192.168.3.206:9800", 5)
+}
+
+
+func TestNewestBiddingLogic_NewestBidding(t *testing.T) {
+      type fields struct {
+	  ctx    context.Context
+	  svcCtx *svc.ServiceContext
+	  Logger logx.Logger
+      }
+      type args struct {
+	  in *bxbase.NewestBiddingReq
+      }
+      tests := []struct {
+	  name    string
+	  fields  fields
+	  args    args
+	  want    *bxbase.NewsetBiddingResp
+	  wantErr bool
+      }{
+	  // TODO: Add test cases.
+            {name: "app首页数据",
+                  args: args{
+                  in: &bxbase.NewestBiddingReq{
+		    City: "",
+		    IsSearch:  0,
+		    UserId:    "5e8eb60ae138234b4f91aacf",
+		    AppId:     "10000",
+		    EntUserId: "",
+		    NewUserId: 11111,
+	        },
+	        }},
+      }
+      for _, tt := range tests {
+	  t.Run(tt.name, func(t *testing.T) {
+	        l := &NewestBiddingLogic{
+		    ctx:    tt.fields.ctx,
+		    svcCtx: tt.fields.svcCtx,
+		    Logger: tt.fields.Logger,
+	        }
+	        got, err := l.NewestBidding(tt.args.in)
+	        if (err != nil) != tt.wantErr {
+		    t.Errorf("NewestBidding() error = %v, wantErr %v", err, tt.wantErr)
+		    return
+	        }
+	        if !reflect.DeepEqual(got, tt.want) {
+		    t.Errorf("NewestBidding() got = %v, want %v", got, tt.want)
+	        }
+	  })
+      }
+}

+ 178 - 177
jyBXBase/rpc/model/newestBidding.go

@@ -1,203 +1,204 @@
 package model
 
 import (
-	MC "app.yhyue.com/moapp/jybase/common"
-	ME "app.yhyue.com/moapp/jybase/encrypt"
-	elastic "app.yhyue.com/moapp/jybase/esv1"
-	"app.yhyue.com/moapp/jybase/mongodb"
-	"app.yhyue.com/moapp/jybase/mysql"
-	"fmt"
-	"github.com/zeromicro/go-zero/core/logx"
-	"go.mongodb.org/mongo-driver/bson/primitive"
-	"jyBXBase/rpc/bxbase"
-	IC "jyBXBase/rpc/init"
-	"strings"
-	"time"
+        MC "app.yhyue.com/moapp/jybase/common"
+        ME "app.yhyue.com/moapp/jybase/encrypt"
+        elastic "app.yhyue.com/moapp/jybase/esv1"
+        "app.yhyue.com/moapp/jybase/mongodb"
+        "app.yhyue.com/moapp/jybase/mysql"
+        "fmt"
+        "github.com/zeromicro/go-zero/core/logx"
+        "go.mongodb.org/mongo-driver/bson/primitive"
+        "jyBXBase/rpc/bxbase"
+        IC "jyBXBase/rpc/init"
+        "log"
+        "strings"
+        "time"
 )
 
 const (
-	search_index        = "bidding"
-	search_type         = "bidding"
-	mongodb_fields      = `{"_id":1,"area":1,"publishtime":1,"s_subscopeclass":1,"subtype":1,"title":1,"toptype":1,"type":1, "buyerclass":1,"budget":1,"bidamount":1,"s_winner":1,"bidopentime":1,"buyer":1,"projectname":1,"spidercode":1,"site":1}`
-	query               = `{"query":{"terms":{"_id":["%s"]}},"_source":["_id","area", "publishtime", "s_subscopeclass", "subtype", "title", "toptype", "type", "buyerclass","bidamount","budget","projectname","buyer","bidopentime","s_winner","filetext","spidercode","site"],"from":0,"size":%d}`
-	multi_match         = `{"multi_match": {"query": %s,"type": "phrase", "fields": ["title"]}}`
-	query_bool_must     = `{"terms":{"%s":[%s]}}`
-	query_bool_must_and = `{"bool":{"must":[%s],"must_not":[%s]}}`
-	search_field        = `"_id","area", "publishtime", "s_subscopeclass", "subtype", "title", "toptype", "type", "buyerclass","bidamount","budget","projectname","buyer","bidopentime","s_winner","filetext","isValidFile","spidercode","site"`
-	query_city_hkeys    = `{"query":{"bool":{"must":[%s],"should":[%s],"minimum_should_match": 1}},"highlight": {"pre_tags": ["<a>"],"post_tags": ["</a>"],"fields": {"title": {"fragment_size": 0,"number_of_fragments": 1}}},"_source":[` + search_field + `],"sort":[{"publishtime":"desc"},{"budget":"desc"}],"from":0,"size":20}`
+        search_index        = "bidding"
+        search_type         = "bidding"
+        mongodb_fields      = `{"_id":1,"area":1,"publishtime":1,"s_subscopeclass":1,"subtype":1,"title":1,"toptype":1,"type":1, "buyerclass":1,"budget":1,"bidamount":1,"s_winner":1,"bidopentime":1,"buyer":1,"projectname":1,"spidercode":1,"site":1}`
+        query               = `{"query":{"terms":{"_id":["%s"]}},"_source":["_id","area", "publishtime", "s_subscopeclass", "subtype", "title", "toptype", "type", "buyerclass","bidamount","budget","projectname","buyer","bidopentime","s_winner","filetext","spidercode","site"],"from":0,"size":%d}`
+        multi_match         = `{"multi_match": {"query": %s,"type": "phrase", "fields": ["title"]}}`
+        query_bool_must     = `{"terms":{"%s":[%s]}}`
+        query_bool_must_and = `{"bool":{"must":[%s],"must_not":[%s]}}`
+        search_field        = `"_id","area", "publishtime", "s_subscopeclass", "subtype", "title", "toptype", "type", "buyerclass","bidamount","budget","projectname","buyer","bidopentime","s_winner","filetext","isValidFile","spidercode","site"`
+        query_city_hkeys    = `{"query":{"bool":{"must":[%s],"should":[%s],"minimum_should_match": 1}},"highlight": {"pre_tags": ["<a>"],"post_tags": ["</a>"],"fields": {"title": {"fragment_size": 0,"number_of_fragments": 1}}},"_source":[` + search_field + `],"sort":[{"publishtime":"desc"},{"budget":"desc"}],"from":0,"size":20}`
+        Pushbidding         = "bid_baseinfo"
+        Province            = "province"
 )
 
 type NewestInfo struct {
-	TableName string
-	UserId    string
-	MysqlDb   *mysql.Mysql
+        TableName string
+        UserId    string
+        MysqlDb   *mysql.Mysql
+        NewUserId int64
 }
 
 var mysqlTables = map[string]string{
-	"f": "pushsubscribe",
-	"v": "pushsubscribe",
-	"m": "pushmember",
-	"e": "pushentniche",
+        "f": "pushsubscribe",
+        "v": "pushsubscribe",
+        "m": "pushmember",
+        "e": "pushentniche",
 }
 
-func GetNewestInfo(userId, userType string) *NewestInfo {
-	nt := &NewestInfo{
-		UserId:    userId,
-		TableName: mysqlTables[userType],
-		MysqlDb:   IC.PushMysql,
-	}
-	switch userType {
-	case "m":
-		nt.MysqlDb = IC.BigmemberPushMysql
-	case "e":
-		nt.MysqlDb = IC.EntnichePushMysql
-	}
-	return nt
+func GetNewestInfo(userId, userType string, newUserId int64) *NewestInfo {
+        nt := &NewestInfo{
+	      UserId:    userId,
+	      TableName: mysqlTables[userType],
+	      MysqlDb:   IC.BaseServiceMysql,
+	      NewUserId: newUserId,
+        }
+        return nt
 }
 func (n *NewestInfo) GetPushHistory() (res []*bxbase.NewestList) {
-	findSQL := "select infoid,matchkeys,attachment_count,budget,bidamount from " + n.TableName + " where userid = '" + n.UserId + "'  and date >= %d order by id desc limit 50"
-	list := n.MysqlDb.SelectBySql(fmt.Sprintf(findSQL, time.Now().AddDate(0, 0, -7).Unix()))
-	if len(*list) > 0 {
-		m := map[string]bool{}
-		es_ids := []string{}
-		infos := map[string]*bxbase.NewestList{}
-		for _, v := range *list {
-			infoId := MC.ObjToString(v["infoid"])
-			if m[infoId] {
-				continue
-			}
-			es_ids = append(es_ids, infoId)
-			m[MC.ObjToString(v["infoid"])] = true
-			//
-			infos[infoId] = &bxbase.NewestList{
-				Id:         ME.EncodeArticleId2ByCheck(MC.ObjToString(v["infoid"])),
-				Matchkeys:  MC.ObjToString(v["matchkeys"]),
-				Budget:     MC.Int64All(v["budget"]),
-				Bidamount:  MC.Int64All(v["bidamount"]),
-				FileExists: MC.Int64All(v["attachment_count"]) > 0,
-			}
-		}
-		if len(es_ids) > 0 {
-			list := elastic.Get(search_index, search_type, fmt.Sprintf(query, strings.Join(es_ids, `","`), len(es_ids)))
-			if list != nil {
-				for _, v := range *list {
-					_id := MC.ObjToString(v["_id"])
-					bn := infos[_id]
-					bn.Title = MC.ObjToString(v["title"])
-					bn.PublishTime = MC.Int64All(v["publishtime"])
-					bn.Subtype = MC.If(v["subtype"] != nil, MC.ObjToString(v["subtype"]), MC.ObjToString(v["toptype"])).(string)
-					bn.Area = MC.If(MC.ObjToString(v["area"]) == "A", "全国", MC.ObjToString(v["area"])).(string)
-					bn.Buyerclass = MC.ObjToString(v["buyerclass"])
-					bn.City = MC.ObjToString(v["city"])
-					bn.Industry = MC.If(MC.ObjToString(v["s_subscopeclass"]) != "", strings.Split(strings.Split(MC.ObjToString(v["s_subscopeclass"]), ",")[0], "_")[0], "").(string)
-					bn.SpiderCode = MC.ObjToString(v["spidercode"])
-					bn.Site = MC.ObjToString(v["site"])
-				}
-			}
-		}
-		//mongodb bidding
-		mgo_ids := []primitive.ObjectID{}
-		for _, v := range es_ids {
-			if infos[v].Title == "" {
-				mgo_ids = append(mgo_ids, mongodb.StringTOBsonId(v))
-			}
-		}
-		if len(mgo_ids) > 0 {
-			list, ok := IC.MgoBidding.Find("bidding", map[string]interface{}{"_id": map[string]interface{}{"$in": mgo_ids}}, nil, mongodb_fields, false, -1, -1)
-			if ok && *list != nil {
-				for _, v := range *list {
-					_id := mongodb.BsonIdToSId(v["_id"])
-					bn := infos[_id]
-					bn.Title = MC.ObjToString(v["title"])
-					bn.PublishTime = MC.Int64All(v["publishtime"])
-					bn.Subtype = MC.If(v["subtype"] != nil, MC.ObjToString(v["subtype"]), MC.ObjToString(v["toptype"])).(string)
-					bn.Area = MC.If(MC.ObjToString(v["area"]) == "A", "全国", MC.ObjToString(v["area"])).(string)
-					bn.Buyerclass = MC.ObjToString(v["buyerclass"])
-					bn.City = MC.ObjToString(v["city"])
-					bn.Industry = MC.If(MC.ObjToString(v["s_subscopeclass"]) != "", strings.Split(strings.Split(MC.ObjToString(v["s_subscopeclass"]), ",")[0], "_")[0], "").(string)
-					bn.SpiderCode = MC.ObjToString(v["spidercode"])
-					bn.Site = MC.ObjToString(v["site"])
-				}
-			}
-		}
-		//mongodb bidding_back
-		mgo_back_ids := []primitive.ObjectID{}
-		for _, v := range mgo_ids {
-			if infos[mongodb.BsonIdToSId(v)].Title == "" {
-				mgo_back_ids = append(mgo_back_ids, v)
-			}
-		}
-		if len(mgo_back_ids) > 0 {
-			list, ok := IC.MgoBidding.Find("bidding_back", map[string]interface{}{"_id": map[string]interface{}{"$in": mgo_back_ids}}, nil, mongodb_fields, false, -1, -1)
-			if ok && *list != nil {
-				for _, v := range *list {
-					_id := mongodb.BsonIdToSId(v["_id"])
-					bn := infos[_id]
-					bn.Title = MC.ObjToString(v["title"])
-					bn.PublishTime = MC.Int64All(v["publishtime"])
-					bn.Subtype = MC.If(v["subtype"] != nil, MC.ObjToString(v["subtype"]), MC.ObjToString(v["toptype"])).(string)
-					bn.Area = MC.If(MC.ObjToString(v["area"]) == "A", "全国", MC.ObjToString(v["area"])).(string)
-					bn.Buyerclass = MC.ObjToString(v["buyerclass"])
-					bn.City = MC.ObjToString(v["city"])
-					bn.Industry = MC.If(MC.ObjToString(v["s_subscopeclass"]) != "", strings.Split(strings.Split(MC.ObjToString(v["s_subscopeclass"]), ",")[0], "_")[0], "").(string)
-					bn.SpiderCode = MC.ObjToString(v["spidercode"])
-					bn.Site = MC.ObjToString(v["site"])
-				}
-			}
-		}
-		//
-		for _, v := range infos {
-			res = append(res, v)
-		}
-	}
-	return
+        findSQL := "select b.infoid,a.matchkeys,b.isvalidfile as  attachment_count,b.budget,b.bidamount from %s a LEFT JOIN %s b ON a.infoid = b.infoid where a.userid = '%s'  and a.date >= %d order by a.id desc limit 50"
+        findSQL = fmt.Sprintf(findSQL, n.TableName, Pushbidding, MC.InterfaceToStr(n.NewUserId), time.Now().AddDate(0, 0, -7).Unix())
+        log.Println(findSQL)
+        list := n.MysqlDb.SelectBySql(findSQL)
+        if len(*list) > 0 && list != nil {
+	      m := map[string]bool{}
+	      es_ids := []string{}
+	      infos := map[string]*bxbase.NewestList{}
+	      for _, v := range *list {
+		    infoId := MC.ObjToString(v["infoid"])
+		    if m[infoId] {
+			  continue
+		    }
+		    es_ids = append(es_ids, infoId)
+		    m[MC.ObjToString(v["infoid"])] = true
+		    //
+		    infos[infoId] = &bxbase.NewestList{
+			  Id:         ME.EncodeArticleId2ByCheck(MC.ObjToString(v["infoid"])),
+			  Matchkeys:  MC.ObjToString(v["matchkeys"]),
+			  Budget:     MC.Int64All(v["budget"]),
+			  Bidamount:  MC.Int64All(v["bidamount"]),
+			  FileExists: MC.Int64All(v["attachment_count"]) > 0,
+		    }
+	      }
+	      if len(es_ids) > 0 {
+		    list := elastic.Get(search_index, search_type, fmt.Sprintf(query, strings.Join(es_ids, `","`), len(es_ids)))
+		    if list != nil {
+			  for _, v := range *list {
+				_id := MC.ObjToString(v["_id"])
+				bn := infos[_id]
+				bn.Title = MC.ObjToString(v["title"])
+				bn.PublishTime = MC.Int64All(v["publishtime"])
+				bn.Subtype = MC.If(v["subtype"] != nil, MC.ObjToString(v["subtype"]), MC.ObjToString(v["toptype"])).(string)
+				bn.Area = MC.If(MC.ObjToString(v["area"]) == "A", "全国", MC.ObjToString(v["area"])).(string)
+				bn.Buyerclass = MC.ObjToString(v["buyerclass"])
+				bn.City = MC.ObjToString(v["city"])
+				bn.Industry = MC.If(MC.ObjToString(v["s_subscopeclass"]) != "", strings.Split(strings.Split(MC.ObjToString(v["s_subscopeclass"]), ",")[0], "_")[0], "").(string)
+				bn.SpiderCode = MC.ObjToString(v["spidercode"])
+				bn.Site = MC.ObjToString(v["site"])
+			  }
+		    }
+	      }
+	      //mongodb bidding
+	      mgo_ids := []primitive.ObjectID{}
+	      for _, v := range es_ids {
+		    if infos[v].Title == "" {
+			  mgo_ids = append(mgo_ids, mongodb.StringTOBsonId(v))
+		    }
+	      }
+	      if len(mgo_ids) > 0 {
+		    list, ok := IC.MgoBidding.Find("bidding", map[string]interface{}{"_id": map[string]interface{}{"$in": mgo_ids}}, nil, mongodb_fields, false, -1, -1)
+		    if ok && *list != nil {
+			  for _, v := range *list {
+				_id := mongodb.BsonIdToSId(v["_id"])
+				bn := infos[_id]
+				bn.Title = MC.ObjToString(v["title"])
+				bn.PublishTime = MC.Int64All(v["publishtime"])
+				bn.Subtype = MC.If(v["subtype"] != nil, MC.ObjToString(v["subtype"]), MC.ObjToString(v["toptype"])).(string)
+				bn.Area = MC.If(MC.ObjToString(v["area"]) == "A", "全国", MC.ObjToString(v["area"])).(string)
+				bn.Buyerclass = MC.ObjToString(v["buyerclass"])
+				bn.City = MC.ObjToString(v["city"])
+				bn.Industry = MC.If(MC.ObjToString(v["s_subscopeclass"]) != "", strings.Split(strings.Split(MC.ObjToString(v["s_subscopeclass"]), ",")[0], "_")[0], "").(string)
+				bn.SpiderCode = MC.ObjToString(v["spidercode"])
+				bn.Site = MC.ObjToString(v["site"])
+			  }
+		    }
+	      }
+	      //mongodb bidding_back
+	      mgo_back_ids := []primitive.ObjectID{}
+	      for _, v := range mgo_ids {
+		    if infos[mongodb.BsonIdToSId(v)].Title == "" {
+			  mgo_back_ids = append(mgo_back_ids, v)
+		    }
+	      }
+	      if len(mgo_back_ids) > 0 {
+		    list, ok := IC.MgoBidding.Find("bidding_back", map[string]interface{}{"_id": map[string]interface{}{"$in": mgo_back_ids}}, nil, mongodb_fields, false, -1, -1)
+		    if ok && *list != nil {
+			  for _, v := range *list {
+				_id := mongodb.BsonIdToSId(v["_id"])
+				bn := infos[_id]
+				bn.Title = MC.ObjToString(v["title"])
+				bn.PublishTime = MC.Int64All(v["publishtime"])
+				bn.Subtype = MC.If(v["subtype"] != nil, MC.ObjToString(v["subtype"]), MC.ObjToString(v["toptype"])).(string)
+				bn.Area = MC.If(MC.ObjToString(v["area"]) == "A", "全国", MC.ObjToString(v["area"])).(string)
+				bn.Buyerclass = MC.ObjToString(v["buyerclass"])
+				bn.City = MC.ObjToString(v["city"])
+				bn.Industry = MC.If(MC.ObjToString(v["s_subscopeclass"]) != "", strings.Split(strings.Split(MC.ObjToString(v["s_subscopeclass"]), ",")[0], "_")[0], "").(string)
+				bn.SpiderCode = MC.ObjToString(v["spidercode"])
+				bn.Site = MC.ObjToString(v["site"])
+			  }
+		    }
+	      }
+	      //
+	      for _, v := range infos {
+		    res = append(res, v)
+	      }
+        }
+        return
 }
 
 //根据定位或者搜索历史 查es
 func NewestQuery(city, keys string) (str string) {
-	var musts, bools []string
-	if keys != "" {
-		for _, v := range strings.Split(keys, ",") {
-			keys := strings.Split(v, " ") //历史搜索 空格划分
-			must_tmp := []string{}
-			for _, key := range keys {
-				must_tmp = append(must_tmp, fmt.Sprintf(multi_match, "\""+key+"\""))
-			}
-			bools = append(bools, fmt.Sprintf(query_bool_must_and, strings.Join(must_tmp, ","), ""))
-		}
+        var musts, bools []string
+        if keys != "" {
+	      for _, v := range strings.Split(keys, ",") {
+		    keys := strings.Split(v, " ") //历史搜索 空格划分
+		    must_tmp := []string{}
+		    for _, key := range keys {
+			  must_tmp = append(must_tmp, fmt.Sprintf(multi_match, "\""+key+"\""))
+		    }
+		    bools = append(bools, fmt.Sprintf(query_bool_must_and, strings.Join(must_tmp, ","), ""))
+	      }
 
-	}
-	if city != "" {
-		musts = append(musts, fmt.Sprintf(query_bool_must, "city", `"`+city+`"`))
-	}
-	str = fmt.Sprintf(query_city_hkeys, strings.Join(musts, ","), strings.Join(bools, ","))
-	logx.Info("str:", str)
-	return
+        }
+        if city != "" {
+	      musts = append(musts, fmt.Sprintf(query_bool_must, "city", `"`+city+`"`))
+        }
+        str = fmt.Sprintf(query_city_hkeys, strings.Join(musts, ","), strings.Join(bools, ","))
+        logx.Info("str:", str)
+        return
 }
 
 //es查询
 func NewestES(doSearchStr string) (res []*bxbase.NewestList) {
-	list := elastic.Get(search_index, search_type, doSearchStr)
-	if list != nil && len(*list) > 0 {
-		for _, v := range *list {
-			_id := mongodb.BsonIdToSId(v["_id"])
-			isValidFile, _ := v["isValidFile"].(bool)
-			res = append(res, &bxbase.NewestList{
-				Id:          ME.EncodeArticleId2ByCheck(_id),
-				Title:       MC.ObjToString(v["title"]),
-				Subtype:     MC.If(v["subtype"] != nil, MC.ObjToString(v["subtype"]), MC.ObjToString(v["toptype"])).(string),
-				Area:        MC.If(MC.ObjToString(v["area"]) == "A", "全国", MC.ObjToString(v["area"])).(string),
-				Buyerclass:  MC.ObjToString(v["buyerclass"]),
-				City:        MC.ObjToString(v["city"]),
-				Industry:    MC.If(MC.ObjToString(v["s_subscopeclass"]) != "", strings.Split(strings.Split(MC.ObjToString(v["s_subscopeclass"]), ",")[0], "_")[0], "").(string),
-				Budget:      MC.Int64All(v["budget"]),
-				Bidamount:   MC.Int64All(v["bidamount"]),
-				FileExists:  isValidFile, //附件
-				PublishTime: MC.Int64All(v["publishtime"]),
-				Site:        MC.ObjToString(v["site"]),
-				SpiderCode:  MC.ObjToString(v["spidercode"]),
-			})
-		}
-	}
-	return
+        list := elastic.Get(search_index, search_type, doSearchStr)
+        if list != nil && len(*list) > 0 {
+	      for _, v := range *list {
+		    _id := mongodb.BsonIdToSId(v["_id"])
+		    isValidFile, _ := v["isValidFile"].(bool)
+		    res = append(res, &bxbase.NewestList{
+			  Id:          ME.EncodeArticleId2ByCheck(_id),
+			  Title:       MC.ObjToString(v["title"]),
+			  Subtype:     MC.If(v["subtype"] != nil, MC.ObjToString(v["subtype"]), MC.ObjToString(v["toptype"])).(string),
+			  Area:        MC.If(MC.ObjToString(v["area"]) == "A", "全国", MC.ObjToString(v["area"])).(string),
+			  Buyerclass:  MC.ObjToString(v["buyerclass"]),
+			  City:        MC.ObjToString(v["city"]),
+			  Industry:    MC.If(MC.ObjToString(v["s_subscopeclass"]) != "", strings.Split(strings.Split(MC.ObjToString(v["s_subscopeclass"]), ",")[0], "_")[0], "").(string),
+			  Budget:      MC.Int64All(v["budget"]),
+			  Bidamount:   MC.Int64All(v["bidamount"]),
+			  FileExists:  isValidFile, //附件
+			  PublishTime: MC.Int64All(v["publishtime"]),
+			  Site:        MC.ObjToString(v["site"]),
+			  SpiderCode:  MC.ObjToString(v["spidercode"]),
+		    })
+	      }
+        }
+        return
 }

+ 110 - 105
jyBXBase/rpc/type/bxbase/bxbase.pb.go

@@ -1,13 +1,12 @@
 // Code generated by protoc-gen-go. DO NOT EDIT.
 // versions:
-// 	protoc-gen-go v1.23.0
-// 	protoc        v3.15.5
+// 	protoc-gen-go v1.28.0
+// 	protoc        v3.15.1
 // source: bxbase.proto
 
 package bxbase
 
 import (
-	proto "github.com/golang/protobuf/proto"
 	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
 	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
 	reflect "reflect"
@@ -21,10 +20,6 @@ const (
 	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
 )
 
-// This is a compile-time assertion that a sufficiently up-to-date version
-// of the legacy proto package is being used.
-const _ = proto.ProtoPackageIsVersion4
-
 type AddlabelReq struct {
 	state         protoimpl.MessageState
 	sizeCache     protoimpl.SizeCache
@@ -1766,6 +1761,7 @@ type NewestBiddingReq struct {
 	UserId    string `protobuf:"bytes,3,opt,name=userId,proto3" json:"userId,omitempty"`
 	AppId     string `protobuf:"bytes,4,opt,name=appId,proto3" json:"appId,omitempty"`
 	EntUserId string `protobuf:"bytes,5,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
+	NewUserId int64  `protobuf:"varint,6,opt,name=newUserId,proto3" json:"newUserId,omitempty"`
 }
 
 func (x *NewestBiddingReq) Reset() {
@@ -1835,6 +1831,13 @@ func (x *NewestBiddingReq) GetEntUserId() string {
 	return ""
 }
 
+func (x *NewestBiddingReq) GetNewUserId() int64 {
+	if x != nil {
+		return x.NewUserId
+	}
+	return 0
+}
+
 //首页最新招标信息Resp
 type NewsetBiddingResp struct {
 	state         protoimpl.MessageState
@@ -2493,7 +2496,7 @@ var file_bxbase_proto_rawDesc = []byte{
 	0x52, 0x02, 0x69, 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, 0x14, 0x0a, 0x05,
 	0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70,
-	0x49, 0x64, 0x22, 0x8e, 0x01, 0x0a, 0x10, 0x4e, 0x65, 0x77, 0x65, 0x73, 0x74, 0x42, 0x69, 0x64,
+	0x49, 0x64, 0x22, 0xac, 0x01, 0x0a, 0x10, 0x4e, 0x65, 0x77, 0x65, 0x73, 0x74, 0x42, 0x69, 0x64,
 	0x64, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18,
 	0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x1a, 0x0a, 0x08, 0x69,
 	0x73, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x69,
@@ -2502,104 +2505,106 @@ var file_bxbase_proto_rawDesc = []byte{
 	0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05,
 	0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72,
 	0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65,
-	0x72, 0x49, 0x64, 0x22, 0x71, 0x0a, 0x11, 0x4e, 0x65, 0x77, 0x73, 0x65, 0x74, 0x42, 0x69, 0x64,
-	0x64, 0x69, 0x6e, 0x67, 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, 0x28, 0x0a, 0x04,
-	0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x62, 0x78, 0x63,
-	0x6f, 0x6c, 0x2e, 0x4e, 0x65, 0x77, 0x73, 0x65, 0x74, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67,
-	0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0xd4, 0x01, 0x0a, 0x0d, 0x4e, 0x65, 0x77, 0x73, 0x65,
-	0x74, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x73, 0x56, 0x69,
-	0x70, 0x18, 0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73, 0x56, 0x69, 0x70, 0x12, 0x1e,
-	0x0a, 0x0a, 0x68, 0x61, 0x73, 0x53, 0x75, 0x62, 0x4b, 0x65, 0x79, 0x73, 0x18, 0x02, 0x20, 0x01,
-	0x28, 0x08, 0x52, 0x0a, 0x68, 0x61, 0x73, 0x53, 0x75, 0x62, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x1c,
-	0x0a, 0x09, 0x68, 0x61, 0x73, 0x48, 0x53, 0x4b, 0x65, 0x79, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28,
-	0x08, 0x52, 0x09, 0x68, 0x61, 0x73, 0x48, 0x53, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x14, 0x0a, 0x05,
-	0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75,
-	0x6e, 0x74, 0x12, 0x25, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b,
-	0x32, 0x11, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x6e, 0x65, 0x77, 0x65, 0x73, 0x74, 0x4c,
-	0x69, 0x73, 0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x68, 0x69, 0x73,
-	0x74, 0x6f, 0x72, 0x79, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x68, 0x69, 0x73, 0x74,
-	0x6f, 0x72, 0x79, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x62, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x07,
-	0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x75, 0x62, 0x46, 0x6c, 0x61, 0x67, 0x22, 0xa6, 0x03,
-	0x0a, 0x0a, 0x6e, 0x65, 0x77, 0x65, 0x73, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04,
-	0x61, 0x72, 0x65, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61,
-	0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
-	0x63, 0x69, 0x74, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x62, 0x69, 0x64, 0x61, 0x6d, 0x6f, 0x75, 0x6e,
-	0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x62, 0x69, 0x64, 0x61, 0x6d, 0x6f, 0x75,
-	0x6e, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01,
-	0x28, 0x03, 0x52, 0x06, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x62, 0x75,
-	0x79, 0x65, 0x72, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a,
-	0x62, 0x75, 0x79, 0x65, 0x72, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x61,
-	0x74, 0x63, 0x68, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6d,
-	0x61, 0x74, 0x63, 0x68, 0x6b, 0x65, 0x79, 0x73, 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, 0x1a, 0x0a, 0x08, 0x69, 0x6e,
-	0x64, 0x75, 0x73, 0x74, 0x72, 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e,
-	0x64, 0x75, 0x73, 0x74, 0x72, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18,
-	0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07,
-	0x73, 0x75, 0x62, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73,
-	0x75, 0x62, 0x74, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18,
-	0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x0e, 0x0a, 0x02,
-	0x69, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1e, 0x0a, 0x0a,
-	0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08,
-	0x52, 0x0a, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x12, 0x14, 0x0a, 0x05,
-	0x69, 0x73, 0x43, 0x6f, 0x6c, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73, 0x43,
-	0x6f, 0x6c, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x74, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09,
-	0x52, 0x04, 0x73, 0x69, 0x74, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x70, 0x69, 0x64, 0x65, 0x72,
-	0x43, 0x6f, 0x64, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x70, 0x69, 0x64,
-	0x65, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x22, 0x3f, 0x0a, 0x09, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
-	0x52, 0x65, 0x73, 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, 0x22, 0x52, 0x0a, 0x08, 0x43, 0x68, 0x65, 0x63, 0x6b,
-	0x52, 0x65, 0x73, 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, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18,
-	0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x32, 0xf9, 0x04, 0x0a, 0x06,
-	0x62, 0x78, 0x62, 0x61, 0x73, 0x65, 0x12, 0x32, 0x0a, 0x08, 0x41, 0x64, 0x64, 0x6c, 0x61, 0x62,
-	0x65, 0x6c, 0x12, 0x12, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x41, 0x64, 0x64, 0x6c, 0x61,
-	0x62, 0x65, 0x6c, 0x52, 0x65, 0x71, 0x1a, 0x12, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x41,
-	0x64, 0x64, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x12, 0x44, 0x0a, 0x0e, 0x47, 0x65,
-	0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x2e, 0x62,
-	0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x47, 0x65, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74,
-	0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x47,
-	0x65, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73,
-	0x12, 0x3b, 0x0a, 0x0b, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12,
-	0x15, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74,
-	0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x4c,
-	0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x12, 0x35, 0x0a,
-	0x08, 0x42, 0x43, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x2e, 0x62, 0x78, 0x63, 0x6f,
-	0x6c, 0x2e, 0x42, 0x43, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e,
+	0x72, 0x49, 0x64, 0x12, 0x1c, 0x0a, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64,
+	0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x6e, 0x65, 0x77, 0x55, 0x73, 0x65, 0x72, 0x49,
+	0x64, 0x22, 0x71, 0x0a, 0x11, 0x4e, 0x65, 0x77, 0x73, 0x65, 0x74, 0x42, 0x69, 0x64, 0x64, 0x69,
+	0x6e, 0x67, 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, 0x28, 0x0a, 0x04, 0x64, 0x61,
+	0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x14, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c,
+	0x2e, 0x4e, 0x65, 0x77, 0x73, 0x65, 0x74, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x52, 0x04,
+	0x64, 0x61, 0x74, 0x61, 0x22, 0xd4, 0x01, 0x0a, 0x0d, 0x4e, 0x65, 0x77, 0x73, 0x65, 0x74, 0x42,
+	0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x73, 0x56, 0x69, 0x70, 0x18,
+	0x01, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73, 0x56, 0x69, 0x70, 0x12, 0x1e, 0x0a, 0x0a,
+	0x68, 0x61, 0x73, 0x53, 0x75, 0x62, 0x4b, 0x65, 0x79, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08,
+	0x52, 0x0a, 0x68, 0x61, 0x73, 0x53, 0x75, 0x62, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x1c, 0x0a, 0x09,
+	0x68, 0x61, 0x73, 0x48, 0x53, 0x4b, 0x65, 0x79, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x08, 0x52,
+	0x09, 0x68, 0x61, 0x73, 0x48, 0x53, 0x4b, 0x65, 0x79, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x63, 0x6f,
+	0x75, 0x6e, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74,
+	0x12, 0x25, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x05, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x11,
+	0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x6e, 0x65, 0x77, 0x65, 0x73, 0x74, 0x4c, 0x69, 0x73,
+	0x74, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x68, 0x69, 0x73, 0x74, 0x6f,
+	0x72, 0x79, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x07, 0x68, 0x69, 0x73, 0x74, 0x6f, 0x72,
+	0x79, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75, 0x62, 0x46, 0x6c, 0x61, 0x67, 0x18, 0x07, 0x20, 0x01,
+	0x28, 0x09, 0x52, 0x07, 0x73, 0x75, 0x62, 0x46, 0x6c, 0x61, 0x67, 0x22, 0xa6, 0x03, 0x0a, 0x0a,
+	0x6e, 0x65, 0x77, 0x65, 0x73, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x61, 0x72,
+	0x65, 0x61, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12, 0x12,
+	0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69,
+	0x74, 0x79, 0x12, 0x1c, 0x0a, 0x09, 0x62, 0x69, 0x64, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18,
+	0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x62, 0x69, 0x64, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74,
+	0x12, 0x16, 0x0a, 0x06, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03,
+	0x52, 0x06, 0x62, 0x75, 0x64, 0x67, 0x65, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x62, 0x75, 0x79, 0x65,
+	0x72, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x75,
+	0x79, 0x65, 0x72, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x12, 0x1c, 0x0a, 0x09, 0x6d, 0x61, 0x74, 0x63,
+	0x68, 0x6b, 0x65, 0x79, 0x73, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x6d, 0x61, 0x74,
+	0x63, 0x68, 0x6b, 0x65, 0x79, 0x73, 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, 0x1a, 0x0a, 0x08, 0x69, 0x6e, 0x64, 0x75,
+	0x73, 0x74, 0x72, 0x79, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x69, 0x6e, 0x64, 0x75,
+	0x73, 0x74, 0x72, 0x79, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x09, 0x20,
+	0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x73, 0x75,
+	0x62, 0x74, 0x79, 0x70, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x75, 0x62,
+	0x74, 0x79, 0x70, 0x65, 0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x0b, 0x20,
+	0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
+	0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x1e, 0x0a, 0x0a, 0x66, 0x69,
+	0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0a,
+	0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x12, 0x14, 0x0a, 0x05, 0x69, 0x73,
+	0x43, 0x6f, 0x6c, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x08, 0x52, 0x05, 0x69, 0x73, 0x43, 0x6f, 0x6c,
+	0x12, 0x12, 0x0a, 0x04, 0x73, 0x69, 0x74, 0x65, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
+	0x73, 0x69, 0x74, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x73, 0x70, 0x69, 0x64, 0x65, 0x72, 0x43, 0x6f,
+	0x64, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x70, 0x69, 0x64, 0x65, 0x72,
+	0x43, 0x6f, 0x64, 0x65, 0x22, 0x3f, 0x0a, 0x09, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x65,
+	0x73, 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, 0x22, 0x52, 0x0a, 0x08, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65,
+	0x73, 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, 0x12, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20,
+	0x01, 0x28, 0x09, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x32, 0xf9, 0x04, 0x0a, 0x06, 0x62, 0x78,
+	0x62, 0x61, 0x73, 0x65, 0x12, 0x32, 0x0a, 0x08, 0x41, 0x64, 0x64, 0x6c, 0x61, 0x62, 0x65, 0x6c,
+	0x12, 0x12, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x41, 0x64, 0x64, 0x6c, 0x61, 0x62, 0x65,
+	0x6c, 0x52, 0x65, 0x71, 0x1a, 0x12, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x41, 0x64, 0x64,
+	0x6c, 0x61, 0x62, 0x65, 0x6c, 0x52, 0x65, 0x73, 0x12, 0x44, 0x0a, 0x0e, 0x47, 0x65, 0x74, 0x4c,
+	0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x18, 0x2e, 0x62, 0x78, 0x63,
+	0x6f, 0x6c, 0x2e, 0x47, 0x65, 0x74, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f,
+	0x6e, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x47, 0x65, 0x74,
+	0x4c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x12, 0x3b,
+	0x0a, 0x0b, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x15, 0x2e,
 	0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f,
-	0x6e, 0x52, 0x65, 0x73, 0x12, 0x3e, 0x0a, 0x0c, 0x49, 0x73, 0x43, 0x6f, 0x6c, 0x6c, 0x41, 0x63,
-	0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x49, 0x73, 0x43,
-	0x6f, 0x6c, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x16, 0x2e, 0x62,
-	0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x49, 0x73, 0x43, 0x6f, 0x6c, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f,
-	0x6e, 0x52, 0x65, 0x73, 0x12, 0x26, 0x0a, 0x04, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0e, 0x2e, 0x62,
-	0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0e, 0x2e, 0x62,
-	0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x12, 0x38, 0x0a, 0x0a,
-	0x53, 0x68, 0x6f, 0x77, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x12, 0x14, 0x2e, 0x62, 0x78, 0x63,
-	0x6f, 0x6c, 0x2e, 0x53, 0x68, 0x6f, 0x77, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71,
-	0x1a, 0x14, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x53, 0x68, 0x6f, 0x77, 0x53, 0x65, 0x61,
-	0x72, 0x63, 0x68, 0x52, 0x65, 0x73, 0x12, 0x32, 0x0a, 0x09, 0x41, 0x64, 0x64, 0x53, 0x65, 0x61,
-	0x72, 0x63, 0x68, 0x12, 0x13, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x41, 0x64, 0x64, 0x53,
-	0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c,
-	0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x12, 0x33, 0x0a, 0x0b, 0x43, 0x68,
-	0x65, 0x63, 0x6b, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x12, 0x13, 0x2e, 0x62, 0x78, 0x63, 0x6f,
-	0x6c, 0x2e, 0x41, 0x64, 0x64, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x1a, 0x0f,
-	0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x12,
-	0x32, 0x0a, 0x09, 0x44, 0x65, 0x6c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x12, 0x13, 0x2e, 0x62,
-	0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x44, 0x65, 0x6c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65,
-	0x71, 0x1a, 0x10, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e,
-	0x52, 0x65, 0x73, 0x12, 0x42, 0x0a, 0x0d, 0x4e, 0x65, 0x77, 0x65, 0x73, 0x74, 0x42, 0x69, 0x64,
-	0x64, 0x69, 0x6e, 0x67, 0x12, 0x17, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x4e, 0x65, 0x77,
-	0x65, 0x73, 0x74, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e,
-	0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x4e, 0x65, 0x77, 0x73, 0x65, 0x74, 0x42, 0x69, 0x64, 0x64,
-	0x69, 0x6e, 0x67, 0x52, 0x65, 0x73, 0x70, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x62, 0x78, 0x62,
-	0x61, 0x73, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+	0x6e, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x4c, 0x61, 0x62,
+	0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x12, 0x35, 0x0a, 0x08, 0x42,
+	0x43, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x12, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e,
+	0x42, 0x43, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x62, 0x78,
+	0x63, 0x6f, 0x6c, 0x2e, 0x4c, 0x61, 0x62, 0x65, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52,
+	0x65, 0x73, 0x12, 0x3e, 0x0a, 0x0c, 0x49, 0x73, 0x43, 0x6f, 0x6c, 0x6c, 0x41, 0x63, 0x74, 0x69,
+	0x6f, 0x6e, 0x12, 0x16, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x49, 0x73, 0x43, 0x6f, 0x6c,
+	0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52, 0x65, 0x71, 0x1a, 0x16, 0x2e, 0x62, 0x78, 0x63,
+	0x6f, 0x6c, 0x2e, 0x49, 0x73, 0x43, 0x6f, 0x6c, 0x6c, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x52,
+	0x65, 0x73, 0x12, 0x26, 0x0a, 0x04, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x0e, 0x2e, 0x62, 0x78, 0x63,
+	0x6f, 0x6c, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x0e, 0x2e, 0x62, 0x78, 0x63,
+	0x6f, 0x6c, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x12, 0x38, 0x0a, 0x0a, 0x53, 0x68,
+	0x6f, 0x77, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x12, 0x14, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c,
+	0x2e, 0x53, 0x68, 0x6f, 0x77, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x1a, 0x14,
+	0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x53, 0x68, 0x6f, 0x77, 0x53, 0x65, 0x61, 0x72, 0x63,
+	0x68, 0x52, 0x65, 0x73, 0x12, 0x32, 0x0a, 0x09, 0x41, 0x64, 0x64, 0x53, 0x65, 0x61, 0x72, 0x63,
+	0x68, 0x12, 0x13, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x41, 0x64, 0x64, 0x53, 0x65, 0x61,
+	0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x1a, 0x10, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x43,
+	0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x65, 0x73, 0x12, 0x33, 0x0a, 0x0b, 0x43, 0x68, 0x65, 0x63,
+	0x6b, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x12, 0x13, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e,
+	0x41, 0x64, 0x64, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x1a, 0x0f, 0x2e, 0x62,
+	0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x43, 0x68, 0x65, 0x63, 0x6b, 0x52, 0x65, 0x73, 0x12, 0x32, 0x0a,
+	0x09, 0x44, 0x65, 0x6c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x12, 0x13, 0x2e, 0x62, 0x78, 0x63,
+	0x6f, 0x6c, 0x2e, 0x44, 0x65, 0x6c, 0x53, 0x65, 0x61, 0x72, 0x63, 0x68, 0x52, 0x65, 0x71, 0x1a,
+	0x10, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x52, 0x65,
+	0x73, 0x12, 0x42, 0x0a, 0x0d, 0x4e, 0x65, 0x77, 0x65, 0x73, 0x74, 0x42, 0x69, 0x64, 0x64, 0x69,
+	0x6e, 0x67, 0x12, 0x17, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c, 0x2e, 0x4e, 0x65, 0x77, 0x65, 0x73,
+	0x74, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e, 0x67, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x62, 0x78,
+	0x63, 0x6f, 0x6c, 0x2e, 0x4e, 0x65, 0x77, 0x73, 0x65, 0x74, 0x42, 0x69, 0x64, 0x64, 0x69, 0x6e,
+	0x67, 0x52, 0x65, 0x73, 0x70, 0x42, 0x0a, 0x5a, 0x08, 0x2e, 0x2f, 0x62, 0x78, 0x62, 0x61, 0x73,
+	0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
 }
 
 var (

+ 1 - 1
jyBXBase/rpc/type/bxbase/bxbase_grpc.pb.go

@@ -1,7 +1,7 @@
 // Code generated by protoc-gen-go-grpc. DO NOT EDIT.
 // versions:
 // - protoc-gen-go-grpc v1.2.0
-// - protoc             v3.15.5
+// - protoc             v3.15.1
 // source: bxbase.proto
 
 package bxbase

+ 8 - 5
jyBXSubscribe/api/bxsubscribe.api

@@ -12,9 +12,9 @@ type (
 	subscribeReq {
 		AppId      string `header:"appId"`
 		UserId     string `header:"userId"`
-		EntId      string `header:"entId"`
-		EntUserId  string `header:"entUserId"`
-		DeptId     string `header:"deptId"` //部门id
+		EntId      string `header:"entId,optional"`
+		EntUserId  string `header:"entUserId,optional"`
+		DeptId     string `header:"deptId,optional"` //部门id
 		PageNum    int64  `json:"pageNum,optional"`
 		PageSize   int64  `json:"pageSize,optional"`
 		SelectTime string `json:"selectTime,optional"`
@@ -27,11 +27,14 @@ type (
 		Price      string `json:"price,optional"`
 		FileExists string `json:"fileExists,optional"`
 		UserType   string `path:"userType,default=fType,options=fType|vType|mType|eType"` //fType:普通用户;vType:超级订阅用户;mType:大会员用户;eType:商机管理用户;
+		NewUserId  int64  `header:"newUserId"`
+		IsEnt      bool   `json:"isEnt,optional"`
 	}
 	//
 	someInfoReq {
-		AppId    string `header:"appId"`
-		UserType string `path:"userType"`
+		AppId     string `header:"appId"`
+		UserType  string `path:"userType"`
+		NewUserId int64  `header:"newUserId"`
 	}
 	//
 	commonResp {

+ 2 - 2
jyBXSubscribe/api/etc/bxsubscribe-api.yaml

@@ -1,7 +1,7 @@
 Name: bxsubscribe-api
 Host: 0.0.0.0
 Port: 8002
-Timeout: 8000
+Timeout: 20000
 Webrpcport: 8012
 Gateway:
   ServerCode: jybxsub
@@ -12,7 +12,7 @@ Subscribe:
     Hosts:
       - 127.0.0.1:2379
     Key: bxsubscribe.rpc
-  Timeout: 12000
+  Timeout: 20000
 AppId: 10000
 MgoLogsName: jybxsubscribe_logs
 MgoLogsCount: 500

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

@@ -29,9 +29,10 @@ func NewSomeInfoLogic(ctx context.Context, svcCtx *svc.ServiceContext, r *http.R
 
 func (l *SomeInfoLogic) SomeInfo(req *types.SomeInfoReq) (resp *types.CommonResp, err error) {
 	res, err := l.svcCtx.Suscribe.GetSubSomeInfo(l.ctx, &bxsubscribe.SomeInfoReq{
-		AppId:    req.AppId,
-		UserType: req.UserType,
-		UserId:   l.r.Header.Get("userId"),
+		AppId:     req.AppId,
+		UserType:  req.UserType,
+		UserId:    l.r.Header.Get("userId"),
+		NewUserId: req.NewUserId,
 	})
 	if err != nil {
 		return &types.CommonResp{

+ 2 - 0
jyBXSubscribe/api/internal/logic/subscribeListLogic.go

@@ -44,6 +44,8 @@ func (l *SubscribeListLogic) SubscribeList(req *types.SubscribeReq) (resp *types
 		EntId:      req.EntId,
 		EntUserId:  req.EntUserId,
 		DeptId:     req.DeptId,
+		NewUserId:  req.NewUserId,
+		IsEnt:      req.IsEnt,
 	})
 	if err != nil {
 		return &types.CommonResp{

+ 8 - 5
jyBXSubscribe/api/internal/types/types.go

@@ -4,9 +4,9 @@ package types
 type SubscribeReq struct {
 	AppId      string `header:"appId"`
 	UserId     string `header:"userId"`
-	EntId      string `header:"entId"`
-	EntUserId  string `header:"entUserId"`
-	DeptId     string `header:"deptId"` //部门id
+	EntId      string `header:"entId,optional"`
+	EntUserId  string `header:"entUserId,optional"`
+	DeptId     string `header:"deptId,optional"` //部门id
 	PageNum    int64  `json:"pageNum,optional"`
 	PageSize   int64  `json:"pageSize,optional"`
 	SelectTime string `json:"selectTime,optional"`
@@ -19,11 +19,14 @@ type SubscribeReq struct {
 	Price      string `json:"price,optional"`
 	FileExists string `json:"fileExists,optional"`
 	UserType   string `path:"userType,default=fType,options=fType|vType|mType|eType"` //fType:普通用户;vType:超级订阅用户;mType:大会员用户;eType:商机管理用户;
+	NewUserId  int64  `header:"newUserId"`
+	IsEnt      bool   `json:"isEnt,optional"`
 }
 
 type SomeInfoReq struct {
-	AppId    string `header:"appId"`
-	UserType string `path:"userType"`
+	AppId     string `header:"appId"`
+	UserType  string `path:"userType"`
+	NewUserId int64  `header:"newUserId"`
 }
 
 type CommonResp struct {

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

@@ -1,3 +1,65 @@
+<<<<<<< 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"}
@@ -28,3 +90,4 @@
 {"@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

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


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


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


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


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


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

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

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

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

+ 3 - 4
jyBXSubscribe/entity/db.go

@@ -21,10 +21,9 @@ type MongoStruct struct {
 
 //
 type Mysql struct {
-	Main         *MysqlStruct `json:"main,omitempty"`
-	Push         *MysqlStruct `json:"push,omitempty"`
-	MemberPush   *MysqlStruct `json:"memberPush,omitempty"`
-	EntnichePush *MysqlStruct `json:"entnichePush,omitempty"`
+	Main             *MysqlStruct `json:"main,omitempty"`
+	BaseService      *MysqlStruct `json:"baseService,omitempty"`
+	GlobalCommonData *MysqlStruct `json:"globalCommonData,omitempty"`
 }
 
 //mysql

+ 5 - 5
jyBXSubscribe/go.mod

@@ -5,10 +5,10 @@ go 1.16
 require (
 	app.yhyue.com/moapp/jybase v0.0.0-20220617085837-48c1bf245c2f
 	bp.jydev.jianyu360.cn/BaseService/gateway v1.3.4
+	bp.jydev.jianyu360.cn/BaseService/jyCodeService v0.0.0-20220927093612-72958b15cdf0
 	github.com/go-sql-driver/mysql v1.6.0
-	github.com/golang/protobuf v1.5.2
-	github.com/zeromicro/go-zero v1.3.3
-	go.mongodb.org/mongo-driver v1.9.1
-	google.golang.org/grpc v1.46.0
-	google.golang.org/protobuf v1.28.0
+	github.com/zeromicro/go-zero v1.4.0
+	go.mongodb.org/mongo-driver v1.10.1
+	google.golang.org/grpc v1.48.0
+	google.golang.org/protobuf v1.28.1
 )

+ 170 - 54
jyBXSubscribe/go.sum

@@ -10,6 +10,8 @@ bp.jydev.jianyu360.cn/BP/jynsq v0.0.0-20220222052708-ebc43af90698/go.mod h1:ojo/
 bp.jydev.jianyu360.cn/BaseService/gateway v0.0.0-20220419090715-88ddb32961be/go.mod h1:Yj4oabIGItuMoF0BXYLz2XAnF581kxgXBrvlUtIJrkI=
 bp.jydev.jianyu360.cn/BaseService/gateway v1.3.4 h1:zl5eZrKDBENVVBUiPpzyQQ0/SBdGUmZS3thXycSEO1g=
 bp.jydev.jianyu360.cn/BaseService/gateway v1.3.4/go.mod h1:BMLd/5wb3BIEGhnEgF9y1sJN9P5/Dw9kYsoiE9V8I9g=
+bp.jydev.jianyu360.cn/BaseService/jyCodeService v0.0.0-20220927093612-72958b15cdf0 h1:IxOy/G/OzOmDql81jdDfgiwvh0GYcTcuCob875KsF6o=
+bp.jydev.jianyu360.cn/BaseService/jyCodeService v0.0.0-20220927093612-72958b15cdf0/go.mod h1:Def9i6RggnFvYswG767+jI+S7wMPkzx3D7Bs6Gnj2Q8=
 bp.jydev.jianyu360.cn/BaseService/resourceCenter v0.0.0-20220418005748-8ba5d936dd53/go.mod h1:E5lcDI3k4FESLxiAetCfWQTq8qfpy9cv0yN1oKoEO34=
 bp.jydev.jianyu360.cn/BaseService/resourceCenter v0.0.0-20220419023723-0b32d4a41751/go.mod h1:6KL5LMEku83uRbre0W/bj5kXG2I6pJGBFtktmtp51yM=
 bp.jydev.jianyu360.cn/BaseService/resourceCenter v0.0.0-20220420075831-0b59892e9982/go.mod h1:wsHNO91h37H+xE4ZNny0yd7mtpODeDJxbVYhIRMR+qw=
@@ -50,24 +52,30 @@ cloud.google.com/go/storage v1.10.0/go.mod h1:FLPqc6j+Ki4BU591ie1oL6qBQGu2Bl/tZ9
 dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=
 github.com/Azure/go-autorest v14.2.0+incompatible/go.mod h1:r+4oMnoxhatjLLJ6zxSWATqVooLgysK6ZNox3g/xq24=
 github.com/Azure/go-autorest/autorest v0.11.1/go.mod h1:JFgpikqFJ/MleTTxwepExTKnFUKKszPS8UavbQYUMuw=
+github.com/Azure/go-autorest/autorest v0.11.18/go.mod h1:dSiJPy22c3u0OtOKDNttNgqpNFY/GeWa7GH/Pz56QRA=
 github.com/Azure/go-autorest/autorest/adal v0.9.0/go.mod h1:/c022QCutn2P7uY+/oQWWNcK9YU+MH96NgK+jErpbcg=
 github.com/Azure/go-autorest/autorest/adal v0.9.5/go.mod h1:B7KF7jKIeC9Mct5spmyCB/A8CG/sEz1vwIRGv/bbw7A=
+github.com/Azure/go-autorest/autorest/adal v0.9.13/go.mod h1:W/MM4U6nLxnIskrw4UwWzlHfGjwUS50aOsc/I3yuU8M=
 github.com/Azure/go-autorest/autorest/date v0.3.0/go.mod h1:BI0uouVdmngYNUzGWeSYnokU+TrmwEsOqdt8Y6sso74=
 github.com/Azure/go-autorest/autorest/mocks v0.4.0/go.mod h1:LTp+uSrOhSkaKrUy935gNZuuIPPVsHlr9DSOxSayd+k=
 github.com/Azure/go-autorest/autorest/mocks v0.4.1/go.mod h1:LTp+uSrOhSkaKrUy935gNZuuIPPVsHlr9DSOxSayd+k=
 github.com/Azure/go-autorest/logger v0.2.0/go.mod h1:T9E3cAhj2VqvPOtCYAvby9aBXkZmbF5NWuPV8+WeEW8=
+github.com/Azure/go-autorest/logger v0.2.1/go.mod h1:T9E3cAhj2VqvPOtCYAvby9aBXkZmbF5NWuPV8+WeEW8=
 github.com/Azure/go-autorest/tracing v0.6.0/go.mod h1:+vhtPC754Xsa23ID7GlGsrdKBpUA79WCAKPPZVC2DeU=
 github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
 github.com/BurntSushi/toml v0.4.1 h1:GaI7EiDXDRfa8VshkTj7Fym7ha+y8/XxIgD2okUIjLw=
 github.com/BurntSushi/toml v0.4.1/go.mod h1:CxXYINrC8qIiEnFrOxCa7Jy5BFHlXnUU2pbicEuybxQ=
 github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
 github.com/ClickHouse/clickhouse-go v1.5.1/go.mod h1:EaI/sW7Azgz9UATzd5ZdZHRUhHgv5+JMS9NSr2smCJI=
+github.com/ClickHouse/clickhouse-go v1.5.4/go.mod h1:EaI/sW7Azgz9UATzd5ZdZHRUhHgv5+JMS9NSr2smCJI=
+github.com/ClickHouse/clickhouse-go/v2 v2.2.0/go.mod h1:8f2XZUi7XoeU+uPIytSi1cvx8fmJxi7vIgqpvYTF1+o=
 github.com/DATA-DOG/go-sqlmock v1.5.0/go.mod h1:f/Ixk793poVmq4qj/V1dPUg2JEAKC73Q5eFN3EC/SaM=
 github.com/NYTimes/gziphandler v0.0.0-20170623195520-56545f4a5d46/go.mod h1:3wb06e3pkSAbeQ52E9H9iFoQsEEwGN64994WTCIhntQ=
 github.com/PuerkitoBio/purell v1.1.1/go.mod h1:c11w/QuzBsJSee3cPx9rAFu61PvFxuPbtSwDGJws/X0=
 github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578/go.mod h1:uGdkoq3SwY9Y+13GIhn11/XLaGBb4BfwItxLd5jeuXE=
 github.com/Shopify/sarama v1.30.0/go.mod h1:zujlQQx1kzHsh4jfV1USnptCQrHAEZ2Hk8fTKCulPVs=
 github.com/Shopify/toxiproxy/v2 v2.1.6-0.20210914104332-15ea381dcdae/go.mod h1:/cvHQkZ1fst0EmZnA5dFtiQdWCNCFYzb+uE2vqVgvx0=
+github.com/StackExchange/wmi v0.0.0-20190523213315-cbe66965904d/go.mod h1:3eOhrUMpNV+6aFIbp5/iudMxNCF27Vw2OZgy4xEx0Fg=
 github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=
 github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751/go.mod h1:LOuyumcjzFXgccqObfd/Ljyb9UuFJ6TxHnclSeseNhc=
 github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf/go.mod h1:ybxpYRFXyAe+OPACYpWeL0wqObRcbAqCMya13uyzqw0=
@@ -75,8 +83,9 @@ github.com/alecthomas/units v0.0.0-20190717042225-c3de453c63f4/go.mod h1:ybxpYRF
 github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d/go.mod h1:rBZYJk541a8SKzHPHnH3zbiI+7dagKZ0cgpgrD7Fyho=
 github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a h1:HbKu58rmZpUGpz5+4FfNmIU+FmZg2P3Xaj2v2bfNWmk=
 github.com/alicebob/gopher-json v0.0.0-20200520072559-a9ecdc9d1d3a/go.mod h1:SGnFV6hVsYE877CKEZ6tDNTjaSXYUk6QqoIK6PrAtcc=
-github.com/alicebob/miniredis/v2 v2.17.0 h1:EwLdrIS50uczw71Jc7iVSxZluTKj5nfSP8n7ARRnJy0=
 github.com/alicebob/miniredis/v2 v2.17.0/go.mod h1:gquAfGbzn92jvtrSC69+6zZnwSODVXVpYDRaGhWaL6I=
+github.com/alicebob/miniredis/v2 v2.22.0 h1:lIHHiSkEyS1MkKHCHzN+0mWrA4YdbGdimE5iZ2sHSzo=
+github.com/alicebob/miniredis/v2 v2.22.0/go.mod h1:XNqvJdQJv5mSuVMc0ynneafpnL/zv52acZ6kqeS0t88=
 github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY=
 github.com/asaskevich/govalidator v0.0.0-20190424111038-f61b66f89f4a/go.mod h1:lB+ZfQJz7igIIfQNfa7Ml4HSf2uFQQRzpGGRXenZAgY=
 github.com/aws/aws-sdk-go v1.34.28/go.mod h1:H7NKnBqNVzoTJpGfLrQkkD+ytBA93eiDYi/+8rV9s48=
@@ -139,16 +148,19 @@ github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.
 github.com/envoyproxy/go-control-plane v0.10.2-0.20220325020618-49ff273808a1/go.mod h1:KJwIaB5Mv44NWtYuAOFCVOjcI94vtpEz2JU/D2v6IjE=
 github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
 github.com/evanphx/json-patch v4.9.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk=
+github.com/evanphx/json-patch v4.11.0+incompatible/go.mod h1:50XU6AFN0ol/bzJsmQLiYLvXMP4fmwYFNcr97nuDLSk=
 github.com/fatih/color v1.10.0/go.mod h1:ELkj/draVOlAH/xkhN6mQ50Qd0MPOk5AAr3maGEBuJM=
 github.com/fatih/color v1.13.0 h1:8LOYc1KYPPmyKMuN8QV2DNRWNbLo6LZ0iLs8+mlH53w=
 github.com/fatih/color v1.13.0/go.mod h1:kLAiJbzzSOZDVNGyDpeOxJ47H46qBXwg5ILebYFFOfk=
 github.com/form3tech-oss/jwt-go v3.2.2+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k=
+github.com/form3tech-oss/jwt-go v3.2.3+incompatible/go.mod h1:pbq4aXjuKjdthFRnoDwaVPLA+WlJuPGy+QneDUgJi2k=
 github.com/fortytw2/leaktest v1.3.0/go.mod h1:jDsjWgpAGjm2CA7WthBh/CdZYEPF31XHquHwclZch5g=
 github.com/frankban/quicktest v1.11.3/go.mod h1:wRf/ReqHper53s+kmmSZizM8NamnL3IM0I9ntUbOk+k=
 github.com/fsnotify/fsnotify v1.4.7/go.mod h1:jwhsz4b93w/PPRr/qN1Yymfu8t87LnFCMoQvtojpjFo=
 github.com/fsnotify/fsnotify v1.4.9/go.mod h1:znqG4EE+3YCdAaPaxE2ZRY/06pZUdp0tY4IgpuI1SZQ=
 github.com/fsnotify/fsnotify v1.5.1 h1:mZcQUHVQUQWoPXXtuf9yuEXKudkV2sx1E06UadKWpgI=
 github.com/fsnotify/fsnotify v1.5.1/go.mod h1:T3375wBYaZdLLcVNkcVbzGHY7f1l/uK5T5Ai1i3InKU=
+github.com/fullstorydev/grpcurl v1.8.6/go.mod h1:WhP7fRQdhxz2TkL97u+TCb505sxfH78W1usyoB3tepw=
 github.com/garyburd/redigo v1.6.2 h1:yE/pwKCrbLpLpQICzYTeZ7JsTA/C53wFTJHaEtRqniM=
 github.com/garyburd/redigo v1.6.2/go.mod h1:NR3MbYisc3/PwhQ00EMzDiPmrwpPxAn5GI05/YaO1SY=
 github.com/ghodss/yaml v0.0.0-20150909031657-73d445a93680/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
@@ -165,13 +177,17 @@ github.com/go-logfmt/logfmt v0.4.0/go.mod h1:3RMwSq7FuexP4Kalkev3ejPJsZTpXXBr9+V
 github.com/go-logfmt/logfmt v0.5.0/go.mod h1:wCYkCAKZfumFQihp8CzCvQ3paCTfi41vtzG1KdI/P7A=
 github.com/go-logr/logr v0.1.0/go.mod h1:ixOQHD9gLJUVQQ2ZOR7zLEifBX6tGkNJF4QyIY7sIas=
 github.com/go-logr/logr v0.2.0/go.mod h1:z6/tIYblkpsD+a4lm/fGIIU9mZ+XfAiaFtq7xTgseGU=
+github.com/go-logr/logr v0.4.0/go.mod h1:z6/tIYblkpsD+a4lm/fGIIU9mZ+XfAiaFtq7xTgseGU=
 github.com/go-logr/logr v1.2.0/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
 github.com/go-logr/logr v1.2.1/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
-github.com/go-logr/logr v1.2.2 h1:ahHml/yUpnlb96Rp8HCvtYVPY8ZYpxq3g7UYchIYwbs=
 github.com/go-logr/logr v1.2.2/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
+github.com/go-logr/logr v1.2.3 h1:2DntVwHkVopvECVRSlL5PSo9eG+cAkDCuckLubN+rq0=
+github.com/go-logr/logr v1.2.3/go.mod h1:jdQByPbusPIv2/zmleS9BjJVeZ6kBagPoEUsqbVz/1A=
 github.com/go-logr/stdr v1.2.0/go.mod h1:YkVgnZu1ZjjL7xTxrfm/LLZBfkhTqSR1ydtm6jTKKwI=
 github.com/go-logr/stdr v1.2.2 h1:hSWxHoqTgW2S2qGc0LTAI563KZ5YKYRhT3MFKZMbjag=
 github.com/go-logr/stdr v1.2.2/go.mod h1:mMo/vtBO5dYbehREoey6XUKy/eSumjCCveDpRre4VKE=
+github.com/go-ole/go-ole v1.2.4/go.mod h1:XCwSNxSkXRo4vlyPy93sltvi/qJq0jqQhjqQNIwKuxM=
+github.com/go-ole/go-ole v1.2.6/go.mod h1:pprOEPIfldk/42T2oK7lQ4v4JSDwmV0As9GaiUsvbm0=
 github.com/go-openapi/jsonpointer v0.19.2/go.mod h1:3akKfEdA7DF1sugOqz1dVQHBcuDBPKZGEoHC/NkiQRg=
 github.com/go-openapi/jsonpointer v0.19.3/go.mod h1:Pl9vOtqEWErmShwVjC8pYs9cog34VGT37dQOVbmoatg=
 github.com/go-openapi/jsonreference v0.19.2/go.mod h1:jMjeRr2HHw6nAVajTXJ4eiUwohSTlpa0o73RUL1owJc=
@@ -179,13 +195,13 @@ github.com/go-openapi/jsonreference v0.19.3/go.mod h1:rjx6GuL8TTa9VaixXglHmQmIL9
 github.com/go-openapi/spec v0.19.3/go.mod h1:FpwSN1ksY1eteniUU7X0N/BgJ7a4WvBFVA8Lj9mJglo=
 github.com/go-openapi/swag v0.19.2/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk=
 github.com/go-openapi/swag v0.19.5/go.mod h1:POnQmlKehdgb5mhVOsnJFsivZCEZ/vjK9gh66Z9tfKk=
-github.com/go-redis/redis/v8 v8.11.4 h1:kHoYkfZP6+pe04aFTnhDH6GDROa5yJdHJVNxV3F46Tg=
 github.com/go-redis/redis/v8 v8.11.4/go.mod h1:2Z2wHZXdQpCDXEGzqMockDpNyYvi2l4Pxt6RJr792+w=
+github.com/go-redis/redis/v8 v8.11.5 h1:AcZZR7igkdvfVmQTPnu9WE37LRrO/YrBH5zWyjDC0oI=
+github.com/go-redis/redis/v8 v8.11.5/go.mod h1:gREzHqY1hg6oD9ngVRbLStwAWKhA0FEgq8Jd4h5lpwo=
 github.com/go-sql-driver/mysql v1.4.0/go.mod h1:zAC/RDZ24gD3HViQzih4MyKcchzm+sOG5ZlKdlhCg5w=
 github.com/go-sql-driver/mysql v1.5.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
 github.com/go-sql-driver/mysql v1.6.0 h1:BCTh4TKNUYmOmMUcQ3IipzF5prigylS7XXjEkfCHuOE=
 github.com/go-sql-driver/mysql v1.6.0/go.mod h1:DCzpHaOWr8IXmIStZouvnhqoel9Qv2LBy8hT2VhHyBg=
-github.com/go-stack/stack v1.8.0 h1:5SgMzNM5HxrEjV0ww2lTmX6E2Izsfxas4+YHWRs3Lsk=
 github.com/go-stack/stack v1.8.0/go.mod h1:v0f6uXyyMGvRgIKkXu+yp6POWl0qKG85gN/melR3HDY=
 github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0/go.mod h1:fyg7847qk6SyHyPtNmDHnmrv/HOrqktSC+C9fM+CJOE=
 github.com/go-test/deep v1.0.7/go.mod h1:QV8Hv/iy04NyLBxAdO9njL0iVPN1S4d/A3NVv1V36o8=
@@ -219,13 +235,14 @@ github.com/gogf/gf/v2 v2.0.6/go.mod h1:8uYzw7qNzuq8vrhVlWke1b1925FFqOJIgmyYW1sr/
 github.com/gogo/protobuf v1.1.1/go.mod h1:r8qH/GZQm5c6nD/R0oafs1akxWv10x8SbQlK7atdtwQ=
 github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=
 github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q=
-github.com/golang-jwt/jwt/v4 v4.2.0 h1:besgBTC8w8HjP6NzQdxwKH9Z5oQMZ24ThTrHp3cZ8eU=
 github.com/golang-jwt/jwt/v4 v4.2.0/go.mod h1:/xlHOz8bRuivTWchD4jCa+NbatV+wEUSzwAxVc6locg=
+github.com/golang-jwt/jwt/v4 v4.4.2 h1:rcc4lwaZgFMCZ5jxF9ABolDcIHdBytAFgqFPbSJQAYs=
+github.com/golang-jwt/jwt/v4 v4.4.2/go.mod h1:m21LjoU+eqJr34lmDMbreY2eSTRJ1cv77w39/MY0Ch0=
 github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
 github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
 github.com/golang/groupcache v0.0.0-20191227052852-215e87163ea7/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
-github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e h1:1r7pUrabqp18hOBcwBwiTsbnFeTZHV9eER/QT5JVZxY=
 github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
+github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da/go.mod h1:cIg4eruTrX1D+g88fzRXU5OdNfaM+9IcxsU14FzY7Hc=
 github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
 github.com/golang/mock v1.2.0/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
 github.com/golang/mock v1.3.1/go.mod h1:sBzyDLLjw3U8JLTeZvSv8jJB+tU5PVekmnlKIyFUx0Y=
@@ -257,6 +274,7 @@ github.com/golang/snappy v0.0.4 h1:yAGX7huGHXlcLOEtBnF4w7FQwA26wojNCwOYAEhLjQM=
 github.com/golang/snappy v0.0.4/go.mod h1:/XxbfmMg8lxefKM7IXC3fBNl/7bRcc72aCRzEWrmP2Q=
 github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
 github.com/google/btree v1.0.0/go.mod h1:lNA+9X1NB3Zf8V7Ke586lFgjr2dZNuvo3lPJSGZ5JPQ=
+github.com/google/btree v1.0.1/go.mod h1:xXMiIv4Fb/0kKde4SpL7qlzvu5cMJDRkFDxJfI9uaxA=
 github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=
 github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
 github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
@@ -268,8 +286,9 @@ github.com/google/go-cmp v0.5.2/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/
 github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
 github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
 github.com/google/go-cmp v0.5.6/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
-github.com/google/go-cmp v0.5.7 h1:81/ik6ipDQS2aGcBfIN5dHDB36BwrStyeAQquSYCV4o=
 github.com/google/go-cmp v0.5.7/go.mod h1:n+brtR0CgQNWTVd5ZUFpTBC8YFBDLK/h/bpaJ8/DtOE=
+github.com/google/go-cmp v0.5.8 h1:e6P7q2lk1O+qJJb4BtCQXlK8vWEO8V1ZeuEdJNOqZyg=
+github.com/google/go-cmp v0.5.8/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
 github.com/google/gofuzz v1.0.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
 github.com/google/gofuzz v1.1.0/go.mod h1:dBl0BpW6vV/+mYPU4Po3pmUjxk6FQPldtuIdl/M65Eg=
 github.com/google/gofuzz v1.2.0 h1:xRy4A+RhZaiKjJ1bPfwQ8sedCA+YS2YcCHW6ec7JMi0=
@@ -283,6 +302,7 @@ github.com/google/pprof v0.0.0-20200212024743-f11f1df84d12/go.mod h1:ZgVRPoUq/hf
 github.com/google/pprof v0.0.0-20200229191704-1ebb73c60ed3/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
 github.com/google/pprof v0.0.0-20200430221834-fc25d7d30c6d/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
 github.com/google/pprof v0.0.0-20200708004538-1a94d8640e99/go.mod h1:ZgVRPoUq/hfqzAqh7sHMqb3I9Rq5C59dIz2SbBwJ4eM=
+github.com/google/pprof v0.0.0-20210407192527-94a9f03dee38/go.mod h1:kpwsk12EmLew5upagYY7GY0pfYCcupk39gWOCRROcvE=
 github.com/google/renameio v0.1.0/go.mod h1:KWCgfxg9yswjAJkECMjeO8J8rahYeXnNhOm40UhjYkI=
 github.com/google/uuid v1.1.1/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
 github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
@@ -290,11 +310,17 @@ github.com/google/uuid v1.3.0 h1:t6JiXgmwXMjEs8VusXIJk2BXHsn+wx8BZdTaoZ5fu7I=
 github.com/google/uuid v1.3.0/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
 github.com/googleapis/gax-go/v2 v2.0.4/go.mod h1:0Wqv26UfaUD9n4G6kQubkQ+KchISgw+vpHVxEJEs9eg=
 github.com/googleapis/gax-go/v2 v2.0.5/go.mod h1:DWXyrwAJ9X0FpwwEdw+IPEYBICEFu5mhpdKc/us6bOk=
-github.com/googleapis/gnostic v0.4.1 h1:DLJCy1n/vrD4HPjOvYcT8aYQXpPIzoRZONaYwyycI+I=
 github.com/googleapis/gnostic v0.4.1/go.mod h1:LRhVm6pbyptWbWbuZ38d1eyptfvIytN3ir6b65WBswg=
+github.com/googleapis/gnostic v0.5.1/go.mod h1:6U4PtQXGIEt/Z3h5MAT7FNofLnw9vXk2cUuW7uA/OeU=
+github.com/googleapis/gnostic v0.5.5 h1:9fHAtK0uDfpveeqqo1hkEZJcFvYXAiCN3UutL8F9xHw=
+github.com/googleapis/gnostic v0.5.5/go.mod h1:7+EbHbldMins07ALC74bsA81Ovc97DwqyJO1AENw9kA=
+github.com/gordonklaus/ineffassign v0.0.0-20200309095847-7953dde2c7bf/go.mod h1:cuNKsD1zp2v6XfE/orVX2QE1LC+i254ceGcVeDT3pTU=
+github.com/gorilla/handlers v1.4.2/go.mod h1:Qkdc/uu4tH4g6mTK6auzZ766c4CA0Ng8+o/OAirnOIQ=
 github.com/gorilla/mux v1.8.0/go.mod h1:DVbg23sWSpFRCP0SfiEN6jmj59UnW/n46BH5rLB71So=
 github.com/gorilla/securecookie v1.1.1/go.mod h1:ra0sb63/xPlUeL+yeDciTfxMRAA+MP+HVt/4epWDjd4=
 github.com/gorilla/sessions v1.2.1/go.mod h1:dk2InVEVJ0sfLlnXv9EAgkf6ecYs/i80K/zI+bUmuGM=
+github.com/gorilla/websocket v1.4.1/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
+github.com/gorilla/websocket v1.4.2/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
 github.com/gorilla/websocket v1.5.0 h1:PPwGk2jz7EePpoHN/+ClbZu8SPxiqlu12wZP/3sWmnc=
 github.com/gorilla/websocket v1.5.0/go.mod h1:YR8l580nyteQvAITg2hZ9XVh4b55+EU/adAjf1fMHhE=
 github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7/go.mod h1:FecbI9+v66THATjSRHfNgh1IVFe/9kFxbXtjV0ctIMA=
@@ -306,11 +332,11 @@ github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542 h1:2VTzZjLZBgl62/EtslC
 github.com/h2non/parth v0.0.0-20190131123155-b4df798d6542/go.mod h1:Ow0tF8D4Kplbc8s8sSb3V2oUCygFHVp8gC3Dn6U4MNI=
 github.com/hashicorp/go-uuid v1.0.2/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/bN7x4byOro=
 github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
-github.com/hashicorp/golang-lru v0.5.1 h1:0hERBMJE1eitiLkihrMvRVBYAkpHzc/J3QdDN+dAcgU=
 github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
 github.com/howeyc/fsnotify v0.9.0/go.mod h1:41HzSPxBGeFRQKEEwgh49TRw/nKBsYZ2cF1OzPjSJsA=
 github.com/hpcloud/tail v1.0.0/go.mod h1:ab1qPbhIpdTxEkNHXyeSf5vhxWSCs/tWer42PpOxQnU=
 github.com/ianlancetaylor/demangle v0.0.0-20181102032728-5e5cf60278f6/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc=
+github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639/go.mod h1:aSSvb/t6k1mPoxDqO4vJh6VOCGPwU4O0C2/Eqndh1Sc=
 github.com/imdario/mergo v0.3.5/go.mod h1:2EnlNZ0deacrJVfApfmtdGgDfMuh/nq6Ok1EcJh5FfA=
 github.com/inconshreveable/mousetrap v1.0.0/go.mod h1:PxqpIevigyE2G7u3NXJIT2ANytuPF1OarO4DADm73n8=
 github.com/jcmturner/aescts/v2 v2.0.0/go.mod h1:AiaICIRyfYg35RUkr8yESTqvSy7csK90qZ5xfvvsoNs=
@@ -319,6 +345,12 @@ github.com/jcmturner/gofork v1.0.0/go.mod h1:MK8+TM0La+2rjBD4jE12Kj1pCCxK7d2LK/U
 github.com/jcmturner/goidentity/v6 v6.0.1/go.mod h1:X1YW3bgtvwAXju7V3LCIMpY0Gbxyjn/mY9zx4tFonSg=
 github.com/jcmturner/gokrb5/v8 v8.4.2/go.mod h1:sb+Xq/fTY5yktf/VxLsE3wlfPqQjp0aWNYyvBVK62bc=
 github.com/jcmturner/rpc/v2 v2.0.3/go.mod h1:VUJYCIDm3PVOEHw8sgt091/20OJjskO/YJki3ELg/Hc=
+github.com/jhump/gopoet v0.0.0-20190322174617-17282ff210b3/go.mod h1:me9yfT6IJSlOL3FCfrg+L6yzUEZ+5jW6WHt4Sk+UPUI=
+github.com/jhump/gopoet v0.1.0/go.mod h1:me9yfT6IJSlOL3FCfrg+L6yzUEZ+5jW6WHt4Sk+UPUI=
+github.com/jhump/goprotoc v0.5.0/go.mod h1:VrbvcYrQOrTi3i0Vf+m+oqQWk9l72mjkJCYo7UvLHRQ=
+github.com/jhump/protoreflect v1.10.3/go.mod h1:7GcYQDdMU/O/BBrl/cX6PNHpXh6cenjd8pneu5yW7Tg=
+github.com/jhump/protoreflect v1.11.0/go.mod h1:U7aMIjN0NWq9swDP7xDdoMfRHb35uiuTd3Z9nFXJf5E=
+github.com/jhump/protoreflect v1.12.0/go.mod h1:JytZfP5d0r8pVNLZvai7U/MCuTWITgrI4tTg7puQFKI=
 github.com/jinzhu/inflection v1.0.0 h1:K317FqzuhWc8YvSVlFMCCUb36O/S9MCKRDI7QkRKD/E=
 github.com/jinzhu/inflection v1.0.0/go.mod h1:h+uFLlag+Qp1Va5pdKtLDYj+kHp5pxUVkryuEj+Srlc=
 github.com/jinzhu/now v1.1.1 h1:g39TucaRWyV3dwDO++eEc6qf8TVIQ/Da48WmqjZ3i7E=
@@ -354,8 +386,9 @@ github.com/konsorten/go-windows-terminal-sequences v1.0.3/go.mod h1:T0+1ngSBFLxv
 github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515/go.mod h1:+0opPa2QZZtGFBFZlji/RkVcI2GknAs/DXo4wKdlNEc=
 github.com/kr/pretty v0.1.0/go.mod h1:dAy3ld7l9f0ibDNOQOHHMYYIIbhfbHSm3C4ZsoJORNo=
 github.com/kr/pretty v0.2.0/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
-github.com/kr/pretty v0.2.1 h1:Fmg33tUaq4/8ym9TJN1x7sLJnHVwhP33CNkpYV/7rwI=
 github.com/kr/pretty v0.2.1/go.mod h1:ipq/a2n7PKx3OHsz4KJII5eveXtPO4qwEXGdVfWzfnI=
+github.com/kr/pretty v0.3.0 h1:WgNl7dwNpEZ6jJ9k1snq4pZsg7DOEN8hP9Xw0Tsjwk0=
+github.com/kr/pretty v0.3.0/go.mod h1:640gp4NfQd8pI5XOwp5fnNeVWj67G7CFk/SaSQn7NBk=
 github.com/kr/pty v1.1.1/go.mod h1:pFQYn66WHrOpPYNljwOMqo10TkYh1fy3cYio2l3bCsQ=
 github.com/kr/pty v1.1.5/go.mod h1:9r2w37qlBe7rQ6e1fg1S/9xpWHSnaqNdHD3WcMdbPDA=
 github.com/kr/text v0.1.0/go.mod h1:4Jbv+DJW3UT/LiOwJeYQe1efqtUx/iVham/4vfdArNI=
@@ -363,6 +396,7 @@ github.com/kr/text v0.2.0 h1:5Nx0Ya0ZqY2ygV366QzturHI13Jq95ApcVaJBhpS+AY=
 github.com/kr/text v0.2.0/go.mod h1:eLer722TekiGuMkidMxC/pM04lWEeraHUUmBw8l2grE=
 github.com/lib/pq v1.0.0/go.mod h1:5WUZQaWbwv1U+lTReE5YruASi9Al49XbQIvNi/34Woo=
 github.com/lib/pq v1.10.4/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o=
+github.com/lib/pq v1.10.6/go.mod h1:AlVN5x4E4T544tWzH6hKfbfQvm3HdbOxrmggDNAPY9o=
 github.com/longbridgeapp/sqlparser v0.3.1 h1:iWOZWGIFgQrJRgobLXUNJdvqGRpbVXkyKUKUA5CNJBE=
 github.com/longbridgeapp/sqlparser v0.3.1/go.mod h1:GIHaUq8zvYyHLCLMJJykx1CdM6LHtkUih/QaJXySSx4=
 github.com/mailru/easyjson v0.0.0-20190614124828-94de47d64c63/go.mod h1:C1wdFJiN94OJF2b5HbByQZoLdCWB1Yqtg26g4irojpc=
@@ -373,11 +407,13 @@ github.com/mailru/easyjson v0.7.7/go.mod h1:xzfreul335JAWq5oZzymOObrkdz5UnU4kGfJ
 github.com/markbates/oncer v0.0.0-20181203154359-bf2de49a0be2/go.mod h1:Ld9puTsIW75CHf65OeIOkyKbteujpZVXDpWK6YGZbxE=
 github.com/markbates/safe v1.0.1/go.mod h1:nAqgmRi7cY2nqMc92/bSEeQA+R4OheNU2T1kNSCBdG0=
 github.com/mattn/go-colorable v0.1.8/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc=
-github.com/mattn/go-colorable v0.1.9 h1:sqDoxXbdeALODt0DAeJCVp38ps9ZogZEAXjus69YV3U=
 github.com/mattn/go-colorable v0.1.9/go.mod h1:u6P/XSegPjTcexA+o6vUJrdnUu04hMope9wVRipJSqc=
+github.com/mattn/go-colorable v0.1.13 h1:fFA4WZxdEF4tXPZVKMLwD8oUnCTTo08duU7wxecdEvA=
+github.com/mattn/go-colorable v0.1.13/go.mod h1:7S9/ev0klgBDR4GtXTXX8a3vIGJpMovkB8vQcUbaXHg=
 github.com/mattn/go-isatty v0.0.12/go.mod h1:cbi8OIDigv2wuxKPP5vlRcQ1OAZbq2CE4Kysco4FUpU=
-github.com/mattn/go-isatty v0.0.14 h1:yVuAays6BHfxijgZPzw+3Zlu5yQgKGP2/hcQbHb7S9Y=
 github.com/mattn/go-isatty v0.0.14/go.mod h1:7GGIvUiUoEMVVmxf/4nioHXj79iQHKdU27kJ6hsGG94=
+github.com/mattn/go-isatty v0.0.16 h1:bq3VjFmv/sOjHtdEhmkEV4x1AJtvUvOJ2PFAZ5+peKQ=
+github.com/mattn/go-isatty v0.0.16/go.mod h1:kYGgaQfpe5nmfYZH+SKPsOc2e4SrIfOl2e/yFXSvRLM=
 github.com/mattn/go-runewidth v0.0.9/go.mod h1:H031xJmbD/WCDINGzjvQ9THkh0rPKHF+m2gUSrubnMI=
 github.com/mattn/go-runewidth v0.0.13 h1:lTGmDsbAYt5DmK6OnoV7EuIF1wEIFAcxld6ypU4OSgU=
 github.com/mattn/go-runewidth v0.0.13/go.mod h1:Jdepj2loyihRzMpdS35Xk/zdY8IAYHsh153qUoGf23w=
@@ -386,6 +422,8 @@ github.com/matttproud/golang_protobuf_extensions v1.0.1/go.mod h1:D8He9yQNgCq6Z5
 github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 h1:I0XW9+e1XWDxdcEniV4rQAIOPUGDq67JSCiRCgGCZLI=
 github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369/go.mod h1:BSXmuO+STAnVfrANrmjBb36TMTDstsz7MSK+HVaYKv4=
 github.com/mitchellh/mapstructure v1.1.2/go.mod h1:FVVH3fgwuzCH5S8UJGiWEs2h04kUh9fWfEaFds41c1Y=
+github.com/mkevac/debugcharts v0.0.0-20191222103121-ae1c48aa8615/go.mod h1:Ad7oeElCZqA1Ufj0U9/liOF4BtVepxRcTvr2ey7zTvM=
+github.com/moby/spdystream v0.2.0/go.mod h1:f7i0iNDQJ059oMTcWxx8MA/zKFIuD/lY+0GqbN2Wy8c=
 github.com/modern-go/concurrent v0.0.0-20180228061459-e0a39a4cb421/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
 github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd h1:TRLaZ9cD/w8PVh93nsPXa1VrQ6jlwL5oN8l14QlcNfg=
 github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd/go.mod h1:6dJC0mAP4ikYIbvyc7fijjWJddQyLn8Ig3JB5CqoB9Q=
@@ -393,12 +431,15 @@ github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742/go.mod h1:bx2lN
 github.com/modern-go/reflect2 v1.0.1/go.mod h1:bx2lNnkwVCuqBIxFjflWJWanXIb3RllmbCylyMrvgv0=
 github.com/modern-go/reflect2 v1.0.2 h1:xBagoLtFs94CBntxluKeaWgTMpvLxC4ur3nMaC9Gz0M=
 github.com/modern-go/reflect2 v1.0.2/go.mod h1:yWuevngMOJpCy52FWWMvUC8ws7m/LJsjYzDa0/r8luk=
+github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe h1:iruDEfMl2E6fbMZ9s0scYfZQ84/6SPL6zC8ACM2oIL0=
 github.com/montanaflynn/stats v0.0.0-20171201202039-1bf9dbcd8cbe/go.mod h1:wL8QJuTMNUDYhXwkmfOly8iTdp5TEcJFWZD2D7SIkUc=
 github.com/munnerz/goautoneg v0.0.0-20120707110453-a547fc61f48d/go.mod h1:+n7T8mK8HuQTcFwEeznm/DIxMOiR9yIdICNftLE1DvQ=
 github.com/mwitkow/go-conntrack v0.0.0-20161129095857-cc309e4a2223/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
 github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f/go.mod h1:qRWi+5nqEBWmkhHvq77mSJWrCKwh8bxhgT7d/eI7P4U=
 github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f/go.mod h1:ZdcZmHo+o7JKHSa8/e818NopupXU1YMK5fe1lsApnBw=
 github.com/nbio/st v0.0.0-20140626010706-e9e8d9816f32/go.mod h1:9wM+0iRr9ahx58uYLpLIr5fm8diHn0JbqRycJi6w0Ms=
+github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e/go.mod h1:zD1mROLANZcx1PVRCS0qkT7pwLkGfwJo4zjcN/Tysno=
+github.com/nishanths/predeclared v0.0.0-20200524104333-86fad755b4d3/go.mod h1:nt3d53pc1VYcphSCIaYAJtnPYnr3Zyn8fMq2wvPGPso=
 github.com/nsqio/go-nsq v1.1.0/go.mod h1:vKq36oyeVXgsS5Q8YEO7WghqidAVXQlcFxzQbQTuDEY=
 github.com/nxadm/tail v1.4.4/go.mod h1:kenIhsEOeOJmVchQTgglprH7qJGnHDVpk1VPCcaMI8A=
 github.com/nxadm/tail v1.4.8 h1:nPr65rt6Y5JFSKQO7qToXr7pePgD6Gwiw05lkbyAQTE=
@@ -412,34 +453,48 @@ github.com/onsi/ginkgo v0.0.0-20170829012221-11459a886d9c/go.mod h1:lLunBs/Ym6LB
 github.com/onsi/ginkgo v1.6.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
 github.com/onsi/ginkgo v1.11.0/go.mod h1:lLunBs/Ym6LB5Z9jYTR76FiuTmxDTDusOGeTQH+WWjE=
 github.com/onsi/ginkgo v1.12.1/go.mod h1:zj2OWP4+oCPe1qIXoGWkgMRwljMUYCdkwsT2108oapk=
+github.com/onsi/ginkgo v1.14.0/go.mod h1:iSB4RoI2tjJc9BBv4NKIKWKya62Rps+oPG/Lv9klQyY=
 github.com/onsi/ginkgo v1.16.4/go.mod h1:dX+/inL/fNMqNlz0e9LfyB9TswhZpCVdJM/Z6Vvnwo0=
 github.com/onsi/ginkgo v1.16.5 h1:8xi0RTUf59SOSfEtZMvwTvXYMzG4gV23XVHOZiXNtnE=
 github.com/onsi/ginkgo v1.16.5/go.mod h1:+E8gABHa3K6zRBolWtd+ROzc/U5bkGt0FwiG042wbpU=
+github.com/onsi/ginkgo/v2 v2.0.0/go.mod h1:vw5CSIxN1JObi/U8gcbwft7ZxR2dgaR70JSE3/PpL4c=
 github.com/onsi/gomega v0.0.0-20170829124025-dcabb60a477c/go.mod h1:C1qb7wdrVGGVU+Z6iS04AVkA3Q65CEZX59MT0QO5uiA=
 github.com/onsi/gomega v1.7.0/go.mod h1:ex+gbHU/CVuBBDIJjb2X0qEXbFg53c61hWP/1CpauHY=
 github.com/onsi/gomega v1.7.1/go.mod h1:XdKZgCCFLUoM/7CFJVPcG8C1xQ1AJ0vpAezJrB7JYyY=
 github.com/onsi/gomega v1.10.1/go.mod h1:iN09h71vgCQne3DLsj+A5owkum+a2tYe+TOCB1ybHNo=
-github.com/onsi/gomega v1.16.0 h1:6gjqkI8iiRHMvdccRJM8rVKjCWk6ZIm6FTm3ddIe4/c=
 github.com/onsi/gomega v1.16.0/go.mod h1:HnhC7FXeEQY45zxNK3PPoIUhzk/80Xly9PcubAlGdZY=
+github.com/onsi/gomega v1.17.0/go.mod h1:HnhC7FXeEQY45zxNK3PPoIUhzk/80Xly9PcubAlGdZY=
+github.com/onsi/gomega v1.18.1 h1:M1GfJqGRrBrrGGsbxzV5dqM2U2ApXefZCQpkukxYRLE=
+github.com/onsi/gomega v1.18.1/go.mod h1:0q+aL8jAiMXy9hbwj2mr5GziHiwhAIQpFmmtT5hitRs=
 github.com/opentracing/opentracing-go v1.2.0/go.mod h1:GxEUsuufX4nBwe+T+Wl9TAgYrxe9dPLANfrWvHYVTgc=
 github.com/openzipkin/zipkin-go v0.3.0/go.mod h1:4c3sLeE8xjNqehmF5RpAFLPLJxXscc0R4l6Zg0P1tTQ=
 github.com/openzipkin/zipkin-go v0.4.0 h1:CtfRrOVZtbDj8rt1WXjklw0kqqJQwICrCKmlfUuBUUw=
 github.com/openzipkin/zipkin-go v0.4.0/go.mod h1:4c3sLeE8xjNqehmF5RpAFLPLJxXscc0R4l6Zg0P1tTQ=
+github.com/paulmach/orb v0.7.1/go.mod h1:FWRlTgl88VI1RBx/MkrwWDRhQ96ctqMCh8boXhmqB/A=
+github.com/paulmach/protoscan v0.2.1/go.mod h1:SpcSwydNLrxUGSDvXvO0P7g7AuhJ7lcKfDlhJCDw2gY=
+github.com/pelletier/go-toml v1.7.0 h1:7utD74fnzVc/cpcyy8sjrlFr5vYpypUixARcHIMIGuI=
 github.com/pelletier/go-toml v1.7.0/go.mod h1:vwGMzjaWMwyfHwgIBhI2YUM4fB6nL6lVAvS1LBMMhTE=
+github.com/pelletier/go-toml/v2 v2.0.2 h1:+jQXlF3scKIcSEKkdHzXhCTDLPFi5r1wnK6yPS+49Gw=
+github.com/pelletier/go-toml/v2 v2.0.2/go.mod h1:MovirKjgVRESsAvNZlAjtFwV867yGuwRkXbG66OzopI=
 github.com/peterbourgon/diskv v2.0.1+incompatible/go.mod h1:uqqh8zWWbv1HBMNONnaR/tNboyR3/BZd58JJSHlUSCU=
 github.com/pierrec/lz4 v2.0.5+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY=
 github.com/pierrec/lz4 v2.6.1+incompatible/go.mod h1:pdkljMzZIN41W+lC3N2tnIh5sFi+IEE17M5jbnwPHcY=
+github.com/pierrec/lz4/v4 v4.1.15/go.mod h1:gZWDp/Ze/IJXGXf23ltt2EXimqmTUXEy0GFuRQyBid4=
 github.com/pkg/errors v0.8.0/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
 github.com/pkg/errors v0.8.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
 github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
 github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
 github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
 github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
+github.com/prashantv/gostub v1.1.0 h1:BTyx3RfQjRHnUWaGF9oQos79AlQ5k8WNktv7VGvVH4g=
+github.com/prashantv/gostub v1.1.0/go.mod h1:A5zLQHz7ieHGG7is6LLXLz7I8+3LZzsrV0P1IAHhP5U=
 github.com/prometheus/client_golang v0.9.1/go.mod h1:7SWBe2y4D6OKWSNQJUaRYU/AaXPKyh/dDVn+NZz0KFw=
 github.com/prometheus/client_golang v1.0.0/go.mod h1:db9x61etRT2tGnBNRi70OPL5FsnadC4Ky3P0J6CfImo=
 github.com/prometheus/client_golang v1.7.1/go.mod h1:PY5Wy2awLA44sXw4AOSfFBetzPP4j5+D6mVACh+pe2M=
-github.com/prometheus/client_golang v1.11.0 h1:HNkLOAEQMIDv/K+04rukrLx6ch7msSRwf3/SASFAGtQ=
 github.com/prometheus/client_golang v1.11.0/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0=
+github.com/prometheus/client_golang v1.11.1/go.mod h1:Z6t4BnS23TR94PD6BsDNk8yVqroYurpAkEiz0P2BEV0=
+github.com/prometheus/client_golang v1.12.2 h1:51L9cDoUHVrXx4zWYlcLQIZ+d+VXHgqnYKkIuq4g/34=
+github.com/prometheus/client_golang v1.12.2/go.mod h1:3Z9XVyYiZYEO+YQWt3RD2R3jrbd179Rt297l4aS6nDY=
 github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910/go.mod h1:MbSGuTsp3dbXC40dX6PRTWyKYBIrTGTE9sqQNg2J8bo=
 github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
 github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
@@ -448,8 +503,9 @@ github.com/prometheus/client_model v0.2.0/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6T
 github.com/prometheus/common v0.4.1/go.mod h1:TNfzLD0ON7rHzMJeJkieUDPYmFC7Snx/y86RQel1bk4=
 github.com/prometheus/common v0.10.0/go.mod h1:Tlit/dnDKsSWFlCLTWaA1cyBgKHSMdTB80sz/V91rCo=
 github.com/prometheus/common v0.26.0/go.mod h1:M7rCNAaPfAosfx8veZJCuw84e35h3Cfd9VFqTh1DIvc=
-github.com/prometheus/common v0.30.0 h1:JEkYlQnpzrzQFxi6gnukFPdQ+ac82oRhzMcIduJu/Ug=
 github.com/prometheus/common v0.30.0/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls=
+github.com/prometheus/common v0.32.1 h1:hWIdL3N2HoUx3B8j3YN9mWor0qhY/NlEKZEaXxuIRh4=
+github.com/prometheus/common v0.32.1/go.mod h1:vu+V0TpY+O6vW9J44gczi3Ap/oXXR10b+M/gUGO4Hls=
 github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d/go.mod h1:c3At6R/oaqEKCNdg8wHV1ftS6bRYblBhIjjI8uT2IGk=
 github.com/prometheus/procfs v0.0.2/go.mod h1:TjEm7ze935MbeOT/UhFTIMYKhuLP4wbCsTZCD3I8kEA=
 github.com/prometheus/procfs v0.1.3/go.mod h1:lV6e/gmhEcM9IjHGsFOCxxuZ+z1YqCvr4OA4YeYWdaU=
@@ -464,7 +520,13 @@ github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6L
 github.com/rogpeppe/go-internal v1.1.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
 github.com/rogpeppe/go-internal v1.2.2/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
 github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFRclV5y23lUDJ4=
+github.com/rogpeppe/go-internal v1.6.1 h1:/FiVV8dS/e+YqF2JvO3yXRFbBLTIuSDkuC7aBOAvL+k=
+github.com/rogpeppe/go-internal v1.6.1/go.mod h1:xXDCJY+GAPziupqXw64V24skbSoqbTEfhy4qGm1nDQc=
 github.com/russross/blackfriday/v2 v2.0.1/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
+github.com/shirou/gopsutil v2.19.11+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA=
+github.com/shirou/gopsutil v3.21.11+incompatible/go.mod h1:5b4v6he4MtMOwMlS0TUMTu2PcXUg8+E1lC7eC3UO/RA=
+github.com/shirou/w32 v0.0.0-20160930032740-bb4de0191aa4/go.mod h1:qsXQc7+bwAM3Q1u/4XEfrquwF8Lw7D7y5cD8CuHnfIc=
+github.com/shopspring/decimal v1.3.1/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o=
 github.com/shurcooL/sanitized_anchor_name v1.0.0/go.mod h1:1NzhyTcUVG4SuEtjjoZeVRXNmyL/1OwPU0+IJeTBvfc=
 github.com/sirupsen/logrus v1.2.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo=
 github.com/sirupsen/logrus v1.4.0/go.mod h1:LxeOpSwHxABJmUn/MG1IvRgCAasNZTLOkJPxbbu5VWo=
@@ -483,26 +545,36 @@ github.com/spf13/pflag v0.0.0-20170130214245-9ff6c6923cff/go.mod h1:DYY7MBk1bdzu
 github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=
 github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
 github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
+github.com/stoewer/go-strcase v1.2.0/go.mod h1:IBiWB2sKIp3wVVQ3Y035++gc+knqhUQag1KpM8ahLw8=
 github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
 github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
-github.com/stretchr/objx v0.2.0 h1:Hbg2NidpLE8veEBkEZTL3CvlkUIVzuU9jDplZO54c48=
 github.com/stretchr/objx v0.2.0/go.mod h1:qt09Ya8vawLte6SNmTgCsAVtYtaKzEcn8ATUoHMkEqE=
+github.com/stretchr/objx v0.4.0 h1:M2gUjqZET1qApGOWNSnZ49BAIMX4F/1plDv3+l31EJ4=
+github.com/stretchr/objx v0.4.0/go.mod h1:YvHI0jy2hoMjB+UWwv71VJQ9isScKT/TqJzVSSt89Yw=
 github.com/stretchr/testify v1.2.2/go.mod h1:a8OnRcib4nhh0OaRAV+Yts87kKdq0PP7pXfy6kDkUVs=
 github.com/stretchr/testify v1.3.0/go.mod h1:M5WIy9Dh21IEIfnGCwXGc5bZfKNJtfHm1UVUgZn+9EI=
 github.com/stretchr/testify v1.4.0/go.mod h1:j7eGeouHqKxXV5pUuKE4zz7dFj8WfuZ+81PSLYec5m4=
 github.com/stretchr/testify v1.5.1/go.mod h1:5W2xD1RspED5o8YsWQXVCued0rvSQ+mT+I5cxcmMvtA=
 github.com/stretchr/testify v1.6.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
-github.com/stretchr/testify v1.7.0 h1:nwc3DEeHmmLAfoZucVR881uASk0Mfjw8xYJ99tb5CcY=
 github.com/stretchr/testify v1.7.0/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
+github.com/stretchr/testify v1.7.1/go.mod h1:6Fq8oRcR53rry900zMqJjRRixrwX3KX962/h/Wwjteg=
+github.com/stretchr/testify v1.7.2/go.mod h1:R6va5+xMeoiuVRoj+gSkQ7d3FALtqAAGI1FQKckRals=
+github.com/stretchr/testify v1.7.5/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
+github.com/stretchr/testify v1.8.0 h1:pSgiaMZlXftHpm5L7V1+rVB+AZJydKsMxsQBIJw4PKk=
+github.com/stretchr/testify v1.8.0/go.mod h1:yNjHg4UonilssWZ8iaSj1OCr/vHnekPRkoO+kdMU+MU=
 github.com/tidwall/pretty v1.0.0 h1:HsD+QiTn7sK6flMKIvNmpqz1qrpP3Ps6jOKIKMooyg4=
 github.com/tidwall/pretty v1.0.0/go.mod h1:XNkn88O1ChpSDQmQeStsy+sBenx6DDtFZJxhVysOjyk=
+github.com/tklauser/go-sysconf v0.3.10/go.mod h1:C8XykCvCb+Gn0oNCWPIlcb0RuglQTYaQ2hGm7jmxEFk=
+github.com/tklauser/numcpus v0.4.0/go.mod h1:1+UI3pD8NW14VMwdgJNJ1ESk2UnwhAnz5hMwiKKqXCQ=
 github.com/urfave/cli/v2 v2.3.0/go.mod h1:LJmUH05zAU44vOAcrfzZQKsZbVcdbOG8rtL3/XcUArI=
 github.com/xdg-go/pbkdf2 v1.0.0 h1:Su7DPu48wXMwC3bs7MCNG+z4FhcyEuz5dlvchbq0B0c=
 github.com/xdg-go/pbkdf2 v1.0.0/go.mod h1:jrpuAogTd400dnrH08LKmI/xc1MbPOebTwRqcT5RDeI=
-github.com/xdg-go/scram v1.0.2 h1:akYIkZ28e6A96dkWNJQu3nmCzH3YfwMPQExUYDaRv7w=
 github.com/xdg-go/scram v1.0.2/go.mod h1:1WAq6h33pAW+iRreB34OORO2Nf7qel3VV3fjBj+hCSs=
-github.com/xdg-go/stringprep v1.0.2 h1:6iq84/ryjjeRmMJwxutI51F2GIPlP5BfTvXHeYjyhBc=
+github.com/xdg-go/scram v1.1.1 h1:VOMT+81stJgXW3CpHyqHN3AXDYIMsx56mEFrB37Mb/E=
+github.com/xdg-go/scram v1.1.1/go.mod h1:RaEWvsqvNKKvBPvcKeFjrG2cJqOkHTiyTpzz23ni57g=
 github.com/xdg-go/stringprep v1.0.2/go.mod h1:8F9zXuvzgwmyT5DUm4GUfZGDdT3W+LCvS6+da4O5kxM=
+github.com/xdg-go/stringprep v1.0.3 h1:kdwGpVNwPFtjs98xCGkHjQtGKh86rDcRZN17QEMCOIs=
+github.com/xdg-go/stringprep v1.0.3/go.mod h1:W3f5j4i+9rC0kuIEJL0ky1VpHXQU3ocBgklLGvcBnW8=
 github.com/xdg/scram v0.0.0-20180814205039-7eeb5667e42c/go.mod h1:lB8K/P019DLNhemzwFU4jHLhdvlE6uDZjXFejJXr49I=
 github.com/xdg/stringprep v0.0.0-20180714160509-73f8eece6fdc/go.mod h1:Jhud4/sHMO4oL310DaZAKk9ZaJ08SJfe+sJh0HrGL1Y=
 github.com/youmark/pkcs8 v0.0.0-20181117223130-1be2e3e5546d h1:splanxYIlg+5LfHAM6xpdFEAYOk8iySO56hMFq6uLyA=
@@ -513,21 +585,25 @@ github.com/yuin/goldmark v1.1.32/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9de
 github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
 github.com/yuin/goldmark v1.3.5/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
 github.com/yuin/goldmark v1.4.0/go.mod h1:mwnBkeHKe2W/ZEtQ+71ViKU8L12m81fl3OWwC1Zlc8k=
-github.com/yuin/gopher-lua v0.0.0-20200816102855-ee81675732da h1:NimzV1aGyq29m5ukMK0AMWEhFaL/lrEOaephfuoiARg=
 github.com/yuin/gopher-lua v0.0.0-20200816102855-ee81675732da/go.mod h1:E1AXubJBdNmFERAOucpDIxNzeGfLzg0mYh+UfMWdChA=
+github.com/yuin/gopher-lua v0.0.0-20210529063254-f4c35e4016d9 h1:k/gmLsJDWwWqbLCur2yWnJzwQEKRcAHXo6seXGuSwWw=
+github.com/yuin/gopher-lua v0.0.0-20210529063254-f4c35e4016d9/go.mod h1:E1AXubJBdNmFERAOucpDIxNzeGfLzg0mYh+UfMWdChA=
+github.com/yusufpapurcu/wmi v1.2.2/go.mod h1:SBZ9tNy3G9/m5Oi98Zks0QjeHVDvuK0qfxQmPyzfmi0=
 github.com/zeromicro/go-zero v1.3.2/go.mod h1:DEj3Fwj1Ui1ltsgf6YqwTL9nD4+tYzIRX0c1pWtQo1E=
-github.com/zeromicro/go-zero v1.3.3 h1:6qv9PcfqfB1tMgp1FJlP1LfWSZ4XD+FwojvA2h5LL2k=
-github.com/zeromicro/go-zero v1.3.3/go.mod h1:LwuYc2V04ZHhWPWGJYQ+kJ5DT4QSkeaZGqXiQcpkfks=
-go.etcd.io/etcd/api/v3 v3.5.2 h1:tXok5yLlKyuQ/SXSjtqHc4uzNaMqZi2XsoSPr/LlJXI=
+github.com/zeromicro/go-zero v1.4.0 h1:gtJ6XY7AZUJvA9omWNAWqxCd4hRE5vo1ObS2q+dUJgo=
+github.com/zeromicro/go-zero v1.4.0/go.mod h1:1amLn98K7c6FLntb9f8hdmq26ajtolOg4DTFWnRt54o=
 go.etcd.io/etcd/api/v3 v3.5.2/go.mod h1:5GB2vv4A4AOn3yk7MftYGHkUfGtDHnEraIjym4dYz5A=
-go.etcd.io/etcd/client/pkg/v3 v3.5.2 h1:4hzqQ6hIb3blLyQ8usCU4h3NghkqcsohEQ3o3VetYxE=
+go.etcd.io/etcd/api/v3 v3.5.4 h1:OHVyt3TopwtUQ2GKdd5wu3PmmipR4FTwCqoEjSyRdIc=
+go.etcd.io/etcd/api/v3 v3.5.4/go.mod h1:5GB2vv4A4AOn3yk7MftYGHkUfGtDHnEraIjym4dYz5A=
 go.etcd.io/etcd/client/pkg/v3 v3.5.2/go.mod h1:IJHfcCEKxYu1Os13ZdwCwIUTUVGYTSAM3YSwc9/Ac1g=
-go.etcd.io/etcd/client/v3 v3.5.2 h1:WdnejrUtQC4nCxK0/dLTMqKOB+U5TP/2Ya0BJL+1otA=
+go.etcd.io/etcd/client/pkg/v3 v3.5.4 h1:lrneYvz923dvC14R54XcA7FXoZ3mlGZAgmwhfm7HqOg=
+go.etcd.io/etcd/client/pkg/v3 v3.5.4/go.mod h1:IJHfcCEKxYu1Os13ZdwCwIUTUVGYTSAM3YSwc9/Ac1g=
 go.etcd.io/etcd/client/v3 v3.5.2/go.mod h1:kOOaWFFgHygyT0WlSmL8TJiXmMysO/nNUlEsSsN6W4o=
+go.etcd.io/etcd/client/v3 v3.5.4 h1:p83BUL3tAYS0OT/r0qglgc3M1JjhM0diV8DSWAhVXv4=
+go.etcd.io/etcd/client/v3 v3.5.4/go.mod h1:ZaRkVgBZC+L+dLCjTcF1hRXpgZXQPOvnA/Ak/gq3kiY=
 go.mongodb.org/mongo-driver v1.5.0/go.mod h1:boiGPFqyBs5R0R5qf2ErokGRekMfwn+MqKaUyHs7wy0=
-go.mongodb.org/mongo-driver v1.9.0/go.mod h1:0sQWfOeY63QTntERDJJ/0SuKK0T1uVSgKCuAROlKEPY=
-go.mongodb.org/mongo-driver v1.9.1 h1:m078y9v7sBItkt1aaoe2YlvWEXcD263e1a4E1fBrJ1c=
-go.mongodb.org/mongo-driver v1.9.1/go.mod h1:0sQWfOeY63QTntERDJJ/0SuKK0T1uVSgKCuAROlKEPY=
+go.mongodb.org/mongo-driver v1.10.1 h1:NujsPveKwHaWuKUer/ceo9DzEe7HIj1SlJ6uvXZG0S4=
+go.mongodb.org/mongo-driver v1.10.1/go.mod h1:z4XpeoU6w+9Vht+jAFyLgVrD+jGSQQe0+CBWFHNiHt8=
 go.opencensus.io v0.21.0/go.mod h1:mSImk1erAIZhrmZN+AvHh14ztQfjbGwt4TtuofqLduU=
 go.opencensus.io v0.22.0/go.mod h1:+kGneAE2xo2IficOXnaByMWTGM9T73dGwxeWcUqIpI8=
 go.opencensus.io v0.22.2/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
@@ -535,24 +611,32 @@ go.opencensus.io v0.22.3/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
 go.opencensus.io v0.22.4/go.mod h1:yxeiOL68Rb0Xd1ddK5vPZ/oVn4vY4Ynel7k9FzqtOIw=
 go.opencensus.io v0.22.5/go.mod h1:5pWMHQbX5EPX2/62yrJeAkowc+lfs/XD7Uxpq3pI6kk=
 go.opentelemetry.io/otel v1.0.0/go.mod h1:AjRVh9A5/5DE7S+mZtTR6t8vpKKryam+0lREnfmS4cg=
-go.opentelemetry.io/otel v1.3.0 h1:APxLf0eiBwLl+SOXiJJCVYzA1OOJNyAoV8C5RNRyy7Y=
 go.opentelemetry.io/otel v1.3.0/go.mod h1:PWIKzi6JCp7sM0k9yZ43VX+T345uNbAkDKwHVjb2PTs=
-go.opentelemetry.io/otel/exporters/jaeger v1.3.0 h1:HfydzioALdtcB26H5WHc4K47iTETJCdloL7VN579/L0=
+go.opentelemetry.io/otel v1.7.0/go.mod h1:5BdUoMIz5WEs0vt0CUEMtSSaTSHBBVwrhnz7+nrD5xk=
+go.opentelemetry.io/otel v1.9.0 h1:8WZNQFIB2a71LnANS9JeyidJKKGOOremcUtb/OtHISw=
+go.opentelemetry.io/otel v1.9.0/go.mod h1:np4EoPGzoPs3O67xUVNoPPcmSvsfOxNlNA4F4AC+0Eo=
 go.opentelemetry.io/otel/exporters/jaeger v1.3.0/go.mod h1:KoYHi1BtkUPncGSRtCe/eh1ijsnePhSkxwzz07vU0Fc=
-go.opentelemetry.io/otel/exporters/zipkin v1.3.0 h1:uOD28dZ7yIKITTcUS6MeAGNHYy3uhP7DTkhcJM6onlQ=
+go.opentelemetry.io/otel/exporters/jaeger v1.9.0 h1:gAEgEVGDWwFjcis9jJTOJqZNxDzoZfR12WNIxr7g9Ww=
+go.opentelemetry.io/otel/exporters/jaeger v1.9.0/go.mod h1:hquezOLVAybNW6vanIxkdLXTXvzlj2Vn3wevSP15RYs=
 go.opentelemetry.io/otel/exporters/zipkin v1.3.0/go.mod h1:LxGGfHIYbvsFnrJtBcazb0yG24xHdDGrT/H6RB9r3+8=
+go.opentelemetry.io/otel/exporters/zipkin v1.9.0 h1:06b/nt6xao6th00aue9WU3ZDTTe+InaMXA/vym6pLuA=
+go.opentelemetry.io/otel/exporters/zipkin v1.9.0/go.mod h1:HyIvYIu37wV4Wx5azd7e05x9k/dOz9KB4x0plw2QNvs=
 go.opentelemetry.io/otel/sdk v1.0.0/go.mod h1:PCrDHlSy5x1kjezSdL37PhbFUMjrsLRshJ2zCzeXwbM=
-go.opentelemetry.io/otel/sdk v1.3.0 h1:3278edCoH89MEJ0Ky8WQXVmDQv3FX4ZJ3Pp+9fJreAI=
 go.opentelemetry.io/otel/sdk v1.3.0/go.mod h1:rIo4suHNhQwBIPg9axF8V9CA72Wz2mKF1teNrup8yzs=
+go.opentelemetry.io/otel/sdk v1.9.0 h1:LNXp1vrr83fNXTHgU8eO89mhzxb/bbWAsHG6fNf3qWo=
+go.opentelemetry.io/otel/sdk v1.9.0/go.mod h1:AEZc8nt5bd2F7BC24J5R0mrjYnpEgYHyTcM/vrSple4=
 go.opentelemetry.io/otel/trace v1.0.0/go.mod h1:PXTWqayeFUlJV1YDNhsJYB184+IvAH814St6o6ajzIs=
-go.opentelemetry.io/otel/trace v1.3.0 h1:doy8Hzb1RJ+I3yFhtDmwNc7tIyw1tNMOIsyPzp1NOGY=
 go.opentelemetry.io/otel/trace v1.3.0/go.mod h1:c/VDhno8888bvQYmbYLqe41/Ldmr/KKunbvWM4/fEjk=
+go.opentelemetry.io/otel/trace v1.7.0/go.mod h1:fzLSB9nqR2eXzxPXb2JW9IKE+ScyXA48yyE4TNvoHqU=
+go.opentelemetry.io/otel/trace v1.9.0 h1:oZaCNJUjWcg60VXWee8lJKlqhPbXAPB51URuR47pQYc=
+go.opentelemetry.io/otel/trace v1.9.0/go.mod h1:2737Q0MuG8q1uILYm2YYVkAyLtOofiTNGg6VODnOiPo=
 go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI=
 go.uber.org/atomic v1.7.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=
 go.uber.org/atomic v1.9.0 h1:ECmE8Bn/WFTYwEW/bpKD3M8VtR/zQVbavAoalC1PYyE=
 go.uber.org/atomic v1.9.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=
-go.uber.org/automaxprocs v1.4.0 h1:CpDZl6aOlLhReez+8S3eEotD7Jx0Os++lemPlMULQP0=
 go.uber.org/automaxprocs v1.4.0/go.mod h1:/mTEdr7LvHhs0v7mjdxDreTz1OG5zdZGqgOnhWiR/+Q=
+go.uber.org/automaxprocs v1.5.1 h1:e1YG66Lrk73dn4qhg8WFSvhF0JuFQF0ERIp4rpuV8Qk=
+go.uber.org/automaxprocs v1.5.1/go.mod h1:BF4eumQw0P9GtnuxxovUd06vwm1o18oMzFtK66vU6XU=
 go.uber.org/goleak v1.1.11/go.mod h1:cwTWslyiVhfpKIDGSZEM2HlOvcqm+tG4zioyIeLoqMQ=
 go.uber.org/goleak v1.1.12 h1:gZAh5/EyT/HQwlpkCy6wTpqfH9H8Lz8zbm3dZh+OyzA=
 go.uber.org/goleak v1.1.12/go.mod h1:cwTWslyiVhfpKIDGSZEM2HlOvcqm+tG4zioyIeLoqMQ=
@@ -573,9 +657,11 @@ golang.org/x/crypto v0.0.0-20200302210943-78000ba7a073/go.mod h1:LzIPMQfyMNhhGPh
 golang.org/x/crypto v0.0.0-20200622213623-75b288015ac9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
 golang.org/x/crypto v0.0.0-20201002170205-7f63de1d35b0/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
 golang.org/x/crypto v0.0.0-20201112155050-0c6587e931a9/go.mod h1:LzIPMQfyMNhhGPhUkYOs5KpL4U8rLKemX1yGLhDgUto=
-golang.org/x/crypto v0.0.0-20201216223049-8b5274cf687f/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I=
-golang.org/x/crypto v0.0.0-20210920023735-84f357641f63 h1:kETrAMYZq6WVGPa8IIixL0CaEcIUNi+1WX7grUoi3y8=
+golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83/go.mod h1:jdWPYTVW3xRLrWPugEBEK3UY2ZEsg3UU495nc5E+M+I=
 golang.org/x/crypto v0.0.0-20210920023735-84f357641f63/go.mod h1:GvvjBRRGRdwPK5ydBHafDWAxML/pGHZbMvKqRZ5+Abc=
+golang.org/x/crypto v0.0.0-20220622213112-05595931fe9d/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
+golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90 h1:Y/gsMcFOcR+6S6f3YeMKl5g+dZMEWqcz5Czj/GWYbkM=
+golang.org/x/crypto v0.0.0-20220829220503-c86fa9a7ed90/go.mod h1:IxCIyHEi3zRg3s0A5j5BB6A9Jmi73HwBIUl50j+osU4=
 golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
 golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
 golang.org/x/exp v0.0.0-20190510132918-efd6b22b2522/go.mod h1:ZjyILWgesfNpC6sMxTJOJm9Kp84zZh5NQWvqDGG3Qr8=
@@ -648,9 +734,10 @@ golang.org/x/net v0.0.0-20210525063256-abc453219eb5/go.mod h1:9nx3DQGgdP8bBQD5qx
 golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
 golang.org/x/net v0.0.0-20210917221730-978cfadd31cf/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
 golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
+golang.org/x/net v0.0.0-20211209124913-491a49abca63/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
 golang.org/x/net v0.0.0-20220225172249-27dd8689420f/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
-golang.org/x/net v0.0.0-20220421235706-1d1ef9303861 h1:yssD99+7tqHWO5Gwh81phT+67hg+KttniBr6UnEXOY8=
-golang.org/x/net v0.0.0-20220421235706-1d1ef9303861/go.mod h1:CfG3xpIq0wQ8r1q4Su4UZFWDARRcnwPjda9FqA0JpMk=
+golang.org/x/net v0.0.0-20220531201128-c960675eff93 h1:MYimHLfoXEpOhqd/zgoA/uoXzHB86AEky4LAx5ij9xA=
+golang.org/x/net v0.0.0-20220531201128-c960675eff93/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
 golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
 golang.org/x/oauth2 v0.0.0-20190226205417-e64efc72b421/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
 golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
@@ -691,11 +778,13 @@ golang.org/x/sys v0.0.0-20190616124812-15dcb6c0061f/go.mod h1:h1NjWce9XRLGQEsW7w
 golang.org/x/sys v0.0.0-20190624142023-c5567b49c5d0/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
 golang.org/x/sys v0.0.0-20190726091711-fc99dfbffb4e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
 golang.org/x/sys v0.0.0-20190904154756-749cb33beabd/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20190916202348-b4ddaad3f8a3/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
 golang.org/x/sys v0.0.0-20191001151750-bb3f8db39f24/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
 golang.org/x/sys v0.0.0-20191005200804-aed5e4c7ecf9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
 golang.org/x/sys v0.0.0-20191026070338-33540a1f6037/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
 golang.org/x/sys v0.0.0-20191120155948-bd437916bb0e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
 golang.org/x/sys v0.0.0-20191204072324-ce4227a45e2e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20191220220014-0732a990476f/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
 golang.org/x/sys v0.0.0-20191228213918-04cbcbbfeed8/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
 golang.org/x/sys v0.0.0-20200106162015-b016eb3dc98e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
 golang.org/x/sys v0.0.0-20200113162924-86b910548bc1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
@@ -710,6 +799,7 @@ golang.org/x/sys v0.0.0-20200331124033-c3d80250170d/go.mod h1:h1NjWce9XRLGQEsW7w
 golang.org/x/sys v0.0.0-20200501052902-10377860bb8e/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
 golang.org/x/sys v0.0.0-20200511232937-7e40ca221e25/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
 golang.org/x/sys v0.0.0-20200515095857-1151b9dac4a9/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
+golang.org/x/sys v0.0.0-20200519105757-fe76b779f299/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
 golang.org/x/sys v0.0.0-20200523222454-059865788121/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
 golang.org/x/sys v0.0.0-20200615200032-f1bc736245b1/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
 golang.org/x/sys v0.0.0-20200625212154-ddb9806d33ae/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
@@ -727,16 +817,24 @@ golang.org/x/sys v0.0.0-20210423185535-09eb48e85fd7/go.mod h1:h1NjWce9XRLGQEsW7w
 golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 golang.org/x/sys v0.0.0-20210603081109-ebe580a85c40/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20210616094352-59db8d763f22/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 golang.org/x/sys v0.0.0-20210809222454-d867a43fc93e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20220114195835-da31bd327af9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20220128215802-99c3d69c2c27/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 golang.org/x/sys v0.0.0-20220227234510-4e6760a101f9/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
-golang.org/x/sys v0.0.0-20220422013727-9388b58f7150 h1:xHms4gcpe1YE7A3yIllJXP16CMAGuqwO2lX1mTyyRRc=
-golang.org/x/sys v0.0.0-20220422013727-9388b58f7150/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20220429233432-b5fbb4746d32/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20220520151302-bc2c85ada10a/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20220811171246-fbc7d0a398ab/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
+golang.org/x/sys v0.0.0-20220829200755-d48e67d00261 h1:v6hYoSR9T5oet+pMXwUWkbiVqx/63mlHjefrHmxwfeY=
+golang.org/x/sys v0.0.0-20220829200755-d48e67d00261/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
 golang.org/x/term v0.0.0-20201117132131-f5c789dd3221/go.mod h1:Nr5EML6q2oocZ2LXRh80K7BxOlk5/8JxuGnuhpl+muw=
 golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
-golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 h1:JGgROgKl9N8DuW20oFS5gxc+lE67/N3FcwmBPMe7ArY=
+golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
 golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
+golang.org/x/term v0.0.0-20220722155259-a9ba230a4035 h1:Q5284mrmYTpACcm+eAKjKJH48BBwSyfJqmmGDTtT8Vc=
+golang.org/x/term v0.0.0-20220722155259-a9ba230a4035/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
 golang.org/x/text v0.0.0-20170915032832-14c0d48ead0c/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
 golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
 golang.org/x/text v0.3.1-0.20180807135948-17ff2d5776d2/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
@@ -751,8 +849,10 @@ golang.org/x/time v0.0.0-20181108054448-85acf8d2951c/go.mod h1:tRJNPiyCQ0inRvYxb
 golang.org/x/time v0.0.0-20190308202827-9d24e82272b4/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
 golang.org/x/time v0.0.0-20191024005414-555d28b269f0/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
 golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
-golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11 h1:GZokNIeuVkl3aZHJchRrr13WCsols02MLUcz1U9is6M=
+golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
 golang.org/x/time v0.0.0-20211116232009-f0f3c7e86c11/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
+golang.org/x/time v0.0.0-20220411224347-583f2d630306 h1:+gHMid33q6pen7kv9xvT+JRinntgeXO2AeZVd0AWD3w=
+golang.org/x/time v0.0.0-20220411224347-583f2d630306/go.mod h1:tRJNPiyCQ0inRvYxbN9jk5I+vvW/OXSQhTDSoE431IQ=
 golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
 golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
 golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY=
@@ -794,8 +894,10 @@ golang.org/x/tools v0.0.0-20200331025713-a30bf2db82d4/go.mod h1:Sl4aGygMT6LrqrWc
 golang.org/x/tools v0.0.0-20200501065659-ab2804fb9c9d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
 golang.org/x/tools v0.0.0-20200512131952-2bc93b1c0c88/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
 golang.org/x/tools v0.0.0-20200515010526-7d3b6ebf133d/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
+golang.org/x/tools v0.0.0-20200522201501-cb1345f3a375/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
 golang.org/x/tools v0.0.0-20200618134242-20370b0cb4b2/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
 golang.org/x/tools v0.0.0-20200619180055-7c47624df98f/go.mod h1:EkVYQZoAsY45+roYkvgYkIh4xh/qjgUK9TdY2XT94GE=
+golang.org/x/tools v0.0.0-20200717024301-6ddee64345a6/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=
 golang.org/x/tools v0.0.0-20200729194436-6467de6f59a7/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=
 golang.org/x/tools v0.0.0-20200804011535-6c149bb5ef0d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=
 golang.org/x/tools v0.0.0-20200825202427-b303f430e36d/go.mod h1:njjCfa9FT2d7l9Bc6FUM5FLjQPp3cFF28FI3qnDFljA=
@@ -808,7 +910,6 @@ golang.org/x/tools v0.1.7/go.mod h1:LGqMHiF4EqQNHR1JncWGqT5BVaXmza+X+BDGol+dOxo=
 golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
 golang.org/x/xerrors v0.0.0-20191011141410-1b5146add898/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
 golang.org/x/xerrors v0.0.0-20191204190536-9bdfabe68543/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
-golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 h1:go1bK/D/BFZV2I8cIQd1NKEZ+0owSTG1fDTci4IqFcE=
 golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1/go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0=
 google.golang.org/api v0.4.0/go.mod h1:8k5glujaEP+g9n7WNsDg8QP6cUVNI86fCNMcbazEtwE=
 google.golang.org/api v0.7.0/go.mod h1:WtwebWUNSVBH/HAw79HIFXZNqEvBhG+Ra+ax0hx3E3M=
@@ -864,10 +965,11 @@ google.golang.org/genproto v0.0.0-20200618031413-b414f8b61790/go.mod h1:jDfRM7Fc
 google.golang.org/genproto v0.0.0-20200729003335-053ba62fc06f/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
 google.golang.org/genproto v0.0.0-20200804131852-c06518451d9c/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
 google.golang.org/genproto v0.0.0-20200825200019-8632dd797987/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
+google.golang.org/genproto v0.0.0-20201019141844-1ed22bb0c154/go.mod h1:FWY/as6DDZQgahTzZj3fqbO1CbirC29ZNUFHwi0/+no=
 google.golang.org/genproto v0.0.0-20210602131652-f16073e35f0c/go.mod h1:UODoCrxHCcBojKKwX1terBiRUaqAsFqJiF615XL43r0=
 google.golang.org/genproto v0.0.0-20220228195345-15d65a4533f7/go.mod h1:kGP+zUP2Ddo0ayMi4YuN7C3WZyJvGLZRh8Z5wnAqvEI=
-google.golang.org/genproto v0.0.0-20220422154200-b37d22cd5731 h1:nquqdM9+ps0JZcIiI70+tqoaIFS5Ql4ZuK8UXnz3HfE=
-google.golang.org/genproto v0.0.0-20220422154200-b37d22cd5731/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo=
+google.golang.org/genproto v0.0.0-20220602131408-e326c6e8e9c8 h1:qRu95HZ148xXw+XeZ3dvqe85PxH4X8+jIo0iRPKcEnM=
+google.golang.org/genproto v0.0.0-20220602131408-e326c6e8e9c8/go.mod h1:yKyY4AMRwFiC8yMMNaMi+RkCnjZJt9LoWuvhXjMs+To=
 google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
 google.golang.org/grpc v1.20.1/go.mod h1:10oTOabMzJvdu6/UiuZezV6QK5dSlG84ov/aaiqXj38=
 google.golang.org/grpc v1.21.1/go.mod h1:oYelfM1adQP15Ek0mdvEgi9Df8B9CZIaU1084ijfRaM=
@@ -886,8 +988,9 @@ google.golang.org/grpc v1.38.0/go.mod h1:NREThFqKR1f3iQ6oBuvc5LadQuXVGo9rkm5ZGrQ
 google.golang.org/grpc v1.41.0/go.mod h1:U3l9uK9J0sini8mHphKoXyaqDA/8VyGnDee1zzIUK6k=
 google.golang.org/grpc v1.44.0/go.mod h1:k+4IHHFw41K8+bbowsex27ge2rCb65oeWqe4jJ590SU=
 google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ=
-google.golang.org/grpc v1.46.0 h1:oCjezcn6g6A75TGoKYBPgKmVBLexhYLM6MebdrPApP8=
-google.golang.org/grpc v1.46.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk=
+google.golang.org/grpc v1.46.2/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk=
+google.golang.org/grpc v1.48.0 h1:rQOsyJ/8+ufEDJd/Gdsz7HG220Mh9HAhFHRGnIjda0w=
+google.golang.org/grpc v1.48.0/go.mod h1:vN9eftEi1UMyUsIF80+uQXhHjbXYbm0uXoFCACuMGWk=
 google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8=
 google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0=
 google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM=
@@ -898,16 +1001,19 @@ google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2
 google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
 google.golang.org/protobuf v1.24.0/go.mod h1:r/3tXBNzIEhYS9I1OUVjXDlt8tc493IdKGjtUeSXeh4=
 google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
+google.golang.org/protobuf v1.25.1-0.20200805231151-a709e31e5d12/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
 google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
 google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
 google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
-google.golang.org/protobuf v1.28.0 h1:w43yiav+6bVFTBQFZX0r7ipe9JQ1QsbMgHwbBziscLw=
 google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
+google.golang.org/protobuf v1.28.1 h1:d0NfwRgPtno5B1Wa6L2DAG+KivqkdutMf1UhdNx175w=
+google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
 gopkg.in/alecthomas/kingpin.v2 v2.2.6/go.mod h1:FMv+mEhP44yOT+4EoQTLFTRgOQ1FBLkstjWtayDeSgw=
 gopkg.in/alexcesaro/quotedprintable.v3 v3.0.0-20150716171945-2caba252f4dc/go.mod h1:m7x9LTH6d71AHyAX77c9yqWCCa3UKHcVEj9y7hAtKDk=
 gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
 gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
 gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
+gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
 gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c h1:Hei/4ADfdWqJk1ZMxUNpqntNwaWcugrBjAiHlqqRiVk=
 gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c/go.mod h1:JHkPIbrfpd72SG/EVd6muEfDQjcINNoR0C8j2r3qZ4Q=
 gopkg.in/cheggaaa/pb.v1 v1.0.28/go.mod h1:V/YB90LKu/1FcN3WVnfiiE5oMCibMjukxqG/qStrOgw=
@@ -930,8 +1036,10 @@ gopkg.in/yaml.v2 v2.3.0/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
 gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
 gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
 gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
-gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo=
+gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
 gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
+gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
+gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
 gorm.io/driver/mysql v1.0.5 h1:WAAmvLK2rG0tCOqrf5XcLi2QUwugd4rcVJ/W3aoon9o=
 gorm.io/driver/mysql v1.0.5/go.mod h1:N1OIhHAIhx5SunkMGqWbGFVeh4yTNWKmMo1GOAsohLI=
 gorm.io/gorm v1.21.3 h1:qDFi55ZOsjZTwk5eN+uhAmHi8GysJ/qCTichM/yO7ME=
@@ -943,26 +1051,34 @@ honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWh
 honnef.co/go/tools v0.0.1-2019.2.3/go.mod h1:a3bituU0lyd329TUQxRnasdCoJDkEUEAqEt0JzvZhAg=
 honnef.co/go/tools v0.0.1-2020.1.3/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
 honnef.co/go/tools v0.0.1-2020.1.4/go.mod h1:X/FiERA/W4tHapMX5mGpAtMSVEeEUOyHaw9vFzvIQ3k=
-k8s.io/api v0.20.12 h1:LfRpmRkJLwPP8eaYehsVVmIIfg1yCBIIUHaSsdqCgHA=
 k8s.io/api v0.20.12/go.mod h1:A2brwyEkVLM3wQGNnzoAa5JsQRzHK0uoOQ+bsnv7V68=
-k8s.io/apimachinery v0.20.12 h1:2c0LIVNMvB8k2Ozstmhl2zGeCEcPazznuLYEwxFdNjM=
+k8s.io/api v0.22.9 h1:PidjRtgd0zDa6SvyooBLH/SP62uOhEBY0kx0UYRGr1o=
+k8s.io/api v0.22.9/go.mod h1:rcjO/FPOuvc3x7nQWx29UcDrFJMx82RxDob71ntNH4A=
 k8s.io/apimachinery v0.20.12/go.mod h1:uM7hCI0NyBymUwgshMgZyte475lxhr+QH6h3cvdnzEc=
-k8s.io/client-go v0.20.12 h1:U75SxTC31BHT9i7CbX/hL4v+U1Wkzy/E1vt5ClDPp3I=
+k8s.io/apimachinery v0.22.9 h1:5qjnpBk6eC9me0SAzokCUMI0KVF2PENK1PnykF8/Gjo=
+k8s.io/apimachinery v0.22.9/go.mod h1:ZvVLP5iLhwVFg2Yx9Gh5W0um0DUauExbRhe+2Z8I1EU=
 k8s.io/client-go v0.20.12/go.mod h1:NBJj6Evp73Xy/4v/O/RDRaH0+3JoxNfjRxkyRgrdbsA=
+k8s.io/client-go v0.22.9 h1:5p2R2LsoBfaE6QnXfWFmyyvxrFXtfegUGRMZSpTI+Q8=
+k8s.io/client-go v0.22.9/go.mod h1:IoH7exYnoH/zgvHOuVxh2c4yJepcCBt72FzCTisOc4k=
 k8s.io/gengo v0.0.0-20200413195148-3a45101e95ac/go.mod h1:ezvh/TsK7cY6rbqRK0oQQ8IAqLxYwwyPxAX1Pzy0ii0=
 k8s.io/klog/v2 v2.0.0/go.mod h1:PBfzABfn139FHAV07az/IF9Wp1bkk3vpT2XSJ76fSDE=
 k8s.io/klog/v2 v2.4.0/go.mod h1:Od+F08eJP+W3HUb4pSrPpgp9DGU4GzlpG/TmITuYh/Y=
+k8s.io/klog/v2 v2.9.0/go.mod h1:hy9LJ/NvuK+iVyP4Ehqva4HxZG/oXyIS3n3Jmire4Ec=
 k8s.io/klog/v2 v2.40.1 h1:P4RRucWk/lFOlDdkAr3mc7iWFkgKrZY9qZMAgek06S4=
 k8s.io/klog/v2 v2.40.1/go.mod h1:y1WjHnz7Dj687irZUWR/WLkLc5N1YHtjLdmgWjndZn0=
 k8s.io/kube-openapi v0.0.0-20201113171705-d219536bb9fd/go.mod h1:WOJ3KddDSol4tAGcJo0Tvi+dK12EcqSLqcWsryKMpfM=
-k8s.io/utils v0.0.0-20201110183641-67b214c5f920 h1:CbnUZsM497iRC5QMVkHwyl8s2tB3g7yaSHkYPkpgelw=
+k8s.io/kube-openapi v0.0.0-20211109043538-20434351676c/go.mod h1:vHXdDvt9+2spS2Rx9ql3I8tycm3H9FDfdUoIuKCefvw=
 k8s.io/utils v0.0.0-20201110183641-67b214c5f920/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA=
+k8s.io/utils v0.0.0-20211116205334-6203023598ed/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA=
+k8s.io/utils v0.0.0-20220706174534-f6158b442e7c h1:hFZO68mv/0xe8+V0gRT9BAq3/31cKjjeVv4nScriuBk=
+k8s.io/utils v0.0.0-20220706174534-f6158b442e7c/go.mod h1:jPW/WVKK9YHAvNhRxK0md/EJ228hCsBRufyofKtW8HA=
 rsc.io/binaryregexp v0.2.0/go.mod h1:qTv7/COck+e2FymRvadv62gMdZztPaShugOCi3I+8D8=
 rsc.io/quote/v3 v3.1.0/go.mod h1:yEA65RcK8LyAZtP9Kv3t0HmxON59tX3rD+tICJqUlj0=
 rsc.io/sampler v1.3.0/go.mod h1:T1hPZKmBbMNahiBKFy5HrXp6adAjACjK9JXDnKaTXpA=
 sigs.k8s.io/structured-merge-diff/v4 v4.0.2/go.mod h1:bJZC9H9iH24zzfZ/41RGcq60oK1F7G282QMXDPYydCw=
-sigs.k8s.io/structured-merge-diff/v4 v4.1.2 h1:Hr/htKFmJEbtMgS/UD0N+gtgctAqz81t3nu+sPzynno=
 sigs.k8s.io/structured-merge-diff/v4 v4.1.2/go.mod h1:j/nl6xW8vLS49O8YvXW1ocPhZawJtm+Yrr7PPRQ0Vg4=
+sigs.k8s.io/structured-merge-diff/v4 v4.2.1 h1:bKCqE9GvQ5tiVHn5rfn1r+yao3aLQEaLzkkmAkf+A6Y=
+sigs.k8s.io/structured-merge-diff/v4 v4.2.1/go.mod h1:j/nl6xW8vLS49O8YvXW1ocPhZawJtm+Yrr7PPRQ0Vg4=
 sigs.k8s.io/yaml v1.1.0/go.mod h1:UJmg0vDUVViEyp3mgSv9WPwZCDxu4rQW1olrI1uml+o=
 sigs.k8s.io/yaml v1.2.0 h1:kr/MCeFWJWTwyaHoR9c8EjH9OumOmoF9YGiZd7lFm/Q=
 sigs.k8s.io/yaml v1.2.0/go.mod h1:yfXDCHCao9+ENCvLSE62v9VSji2MKu5jeNfTrofGhJc=

+ 5 - 2
jyBXSubscribe/rpc/bxsubscribe.proto

@@ -1,7 +1,7 @@
 syntax = "proto3";
 
 package bxsubscribe;
-option go_package="./bxsubscribe";
+option go_package = "./bxsubscribe";
 
 message SubscribeInfosReq {
   int64 pageNum = 1;
@@ -21,6 +21,8 @@ message SubscribeInfosReq {
   string  fileExists = 15;
   string  entUserId = 16;
   string deptId = 17;
+  int64 newUserId = 18;
+  bool IsEnt=19;
 }
 
 message SubscribeInfosResp {
@@ -63,6 +65,7 @@ message SomeInfoReq{
   string  appId = 1;
   string  userId = 2;
   string  userType = 3;
+  int64   newUserId = 4;
 }
 
 message SomeInfoResp {
@@ -72,7 +75,7 @@ message SomeInfoResp {
 }
 message SomeInfo{
   bool hasKey = 1;//免费用户和超级订阅是否有订阅词
-  bool isInGuide = 2;//是否进入向导
+  bool isInTSguide = 2;//是否进入向导
   int64 isExpire = 3;//超级订阅到期提醒
   int64 isOnTail = 4;//超级订阅试用状态
   bool isPassCount = 5;//推送数量校验

+ 7 - 2
jyBXSubscribe/rpc/etc/bxsubscribe.yaml

@@ -4,9 +4,14 @@ Etcd:
   Hosts:
   - 127.0.0.1:2379
   Key: bxsubscribe.rpc
-Timeout: 8000
+Timeout: 20000
 Webrpcport: 8011
 DefaultDay: 7
 DefaulCount:
   Pay: 1000
-  Free: 50
+  Free: 50
+CodeServiceConf:
+  Etcd:
+    Hosts:
+      - 127.0.0.1:2379
+    Key: codeservice.rpc

+ 12 - 19
jyBXSubscribe/rpc/etc/db.yaml

@@ -6,34 +6,27 @@ mysql:
         password: Topnet123
         maxOpenConns: 5
         maxIdleConns: 5
-    push:
-        dbName: jianyu
-        address: 192.168.3.11:3366
-        userName: root
-        password: Topnet123
-        maxOpenConns: 5
-        maxIdleConns: 5
-    memberPush:
-        dbName: jianyu
-        address: 192.168.3.11:3366
+    baseService:
+        dbName: base_service
+        address: 192.168.3.14:4000
         userName: root
-        password: Topnet123
+        password: '=PDT49#80Z!RVv52_z'
         maxOpenConns: 5
         maxIdleConns: 5
-    entnichePush:
-        dbName: jianyu
-        address: 192.168.3.11:3366
+    globalCommonData:
+        dbName: global_common_data
+        address: 192.168.3.14:4000
         userName: root
-        password: Topnet123
+        password: '=PDT49#80Z!RVv52_z'
         maxOpenConns: 5
         maxIdleConns: 5
 redis:
     addr:
         - other=192.168.3.206:1712
-        - push=192.168.3.206:1712
-        - pushcache_1=192.168.3.206:5000
-        - pushcache_2_a=192.168.3.206:5001
-        - pushcache_2_b=192.168.3.206:5002
+        - 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
 es:
     addr: http://192.168.3.206:9800
     size: 30

+ 27 - 41
jyBXSubscribe/rpc/init/db.go

@@ -16,12 +16,11 @@ import (
 )
 
 var (
-	MainMysql         *mysql.Mysql
-	PushMysql         *mysql.Mysql
-	MemberPushMysql   *mysql.Mysql
-	EntnichePushMysql *mysql.Mysql
-	Mgo               mongodb.MongodbSim
-	MgoBidding        mongodb.MongodbSim
+	MainMysql        *mysql.Mysql
+	BaseServiceMysql *mysql.Mysql
+	Mgo              mongodb.MongodbSim
+	MgoBidding       mongodb.MongodbSim
+	GlobalCommonData *mysql.Mysql
 )
 
 //
@@ -65,44 +64,31 @@ func MysqlInit(mm *entity.Mysql) {
 		}
 		MainMysql.Init()
 	}
-	//初始化 mysql-Push
-	if mm.Push.Address != "" {
-		logx.Info("--初始化 push mysql--")
-		PushMysql = &mysql.Mysql{
-			Address:      mm.Push.Address,
-			UserName:     mm.Push.UserName,
-			PassWord:     mm.Push.Password,
-			DBName:       mm.Push.DbName,
-			MaxOpenConns: mm.Push.MaxOpenConns,
-			MaxIdleConns: mm.Push.MaxIdleConns,
+	//初始化 mysql-BaseService
+	if mm.BaseService.Address != "" {
+		logx.Info("--初始化 推送 mysql--")
+		BaseServiceMysql = &mysql.Mysql{
+			Address:      mm.BaseService.Address,
+			UserName:     mm.BaseService.UserName,
+			PassWord:     mm.BaseService.Password,
+			DBName:       mm.BaseService.DbName,
+			MaxOpenConns: mm.BaseService.MaxOpenConns,
+			MaxIdleConns: mm.BaseService.MaxIdleConns,
 		}
-		PushMysql.Init()
+		BaseServiceMysql.Init()
 	}
-	//初始化 mysql-main
-	if mm.MemberPush.Address != "" {
-		logx.Info("--初始化 大会员推送 mysql--")
-		MemberPushMysql = &mysql.Mysql{
-			Address:      mm.MemberPush.Address,
-			UserName:     mm.MemberPush.UserName,
-			PassWord:     mm.MemberPush.Password,
-			DBName:       mm.MemberPush.DbName,
-			MaxOpenConns: mm.MemberPush.MaxOpenConns,
-			MaxIdleConns: mm.MemberPush.MaxIdleConns,
-		}
-		MemberPushMysql.Init()
-	}
-	//初始化 mysql-EntnichePush
-	if mm.EntnichePush.Address != "" {
-		logx.Info("--初始化 商机管理推送 mysql--")
-		EntnichePushMysql = &mysql.Mysql{
-			Address:      mm.EntnichePush.Address,
-			UserName:     mm.EntnichePush.UserName,
-			PassWord:     mm.EntnichePush.Password,
-			DBName:       mm.EntnichePush.DbName,
-			MaxOpenConns: mm.EntnichePush.MaxOpenConns,
-			MaxIdleConns: mm.EntnichePush.MaxIdleConns,
+	//初始化 mysql-GlobalCommonData
+	if mm.GlobalCommonData.Address != "" {
+		logx.Info("--初始化 推送 mysql--")
+		GlobalCommonData = &mysql.Mysql{
+			Address:      mm.GlobalCommonData.Address,
+			UserName:     mm.GlobalCommonData.UserName,
+			PassWord:     mm.GlobalCommonData.Password,
+			DBName:       mm.GlobalCommonData.DbName,
+			MaxOpenConns: mm.GlobalCommonData.MaxOpenConns,
+			MaxIdleConns: mm.GlobalCommonData.MaxIdleConns,
 		}
-		EntnichePushMysql.Init()
+		GlobalCommonData.Init()
 	}
 }
 

+ 18 - 6
jyBXSubscribe/rpc/init/init.go

@@ -1,23 +1,28 @@
 package init
 
 import (
-	"jyBXSubscribe/entity"
-	"jyBXSubscribe/rpc/internal/config"
-
+	codePb "bp.jydev.jianyu360.cn/BaseService/jyCodeService/rpc/codeservice/codeservice"
 	_ "github.com/go-sql-driver/mysql"
+	"github.com/zeromicro/go-zero/core/discov"
 	"github.com/zeromicro/go-zero/core/logx"
+	"github.com/zeromicro/go-zero/zrpc"
+	"jyBXSubscribe/entity"
+	"jyBXSubscribe/rpc/internal/config"
+	"log"
 )
 
 var C config.Config
 var err error
+var CodeLib codePb.CodeService
 
 //
 var DB config.Db
 
-//
+//var codLib
 var Logc entity.Logc
 
 func InitC() {
+	log.Println("111111")
 	//初始mongodb
 	MongoDBInit(&DB.Mongo)
 	//初始化msyql
@@ -37,6 +42,13 @@ func InitC() {
 			logx.Info(v, "--日志记录")
 		}
 	}
-	//
-	PushMapping.Init()
+	//代码表服务加载
+	codeClient := zrpc.MustNewClient(zrpc.RpcClientConf{
+		Etcd: discov.EtcdConf{
+			Hosts: C.CodeServiceConf.Etcd.Hosts,
+			Key:   C.CodeServiceConf.Etcd.Key,
+		},
+	})
+	logx.Info("CodeService初始化")
+	CodeLib = codePb.NewCodeService(codeClient)
 }

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

@@ -1,76 +0,0 @@
-package init
-
-import (
-	"app.yhyue.com/moapp/jybase/common"
-	"log"
-)
-
-var PushMapping = &pushMapping{}
-
-type pushMapping struct {
-	Area          map[string]int
-	City          map[string]int
-	Toptype       map[string]int
-	Subtype       map[string]int
-	Buyerclass    map[string]int
-	Subscopeclass map[string]int
-}
-
-//推送数据 在mysql中 信息类型和地区等存的对应id;查询的时候需进行转化;
-func (p *pushMapping) Init() {
-	infotype := PushMysql.SelectBySql("select id,type,name from infotype")
-	p.Toptype = map[string]int{}
-	p.Subtype = map[string]int{}
-	p.Buyerclass = map[string]int{}
-	p.Subscopeclass = map[string]int{}
-	if infotype != nil && len(*infotype) > 0 {
-		for _, v := range *infotype {
-			id := common.IntAll(v["id"])
-			tp := common.IntAll(v["type"])
-			name := common.ObjToString(v["name"])
-			if tp == 1 {
-				p.Toptype[name] = id
-			} else if tp == 2 {
-				p.Subtype[name] = id
-			} else if tp == 3 {
-				p.Buyerclass[name] = id
-			} else if tp == 4 {
-				p.Subscopeclass[name] = id
-			}
-		}
-		if len(p.Toptype) == 0 {
-			log.Fatalln("PushMapping Toptype Init Error")
-		}
-		if len(p.Subtype) == 0 {
-			log.Fatalln("PushMapping Subtype Init Error")
-		}
-		if len(p.Buyerclass) == 0 {
-			log.Fatalln("PushMapping Buyerclass Init Error")
-		}
-		if len(p.Subscopeclass) == 0 {
-			log.Fatalln("PushMapping Subscopeclass Init Error")
-		}
-	}
-	//
-	p.Area = map[string]int{}
-	p.City = map[string]int{}
-	province := PushMysql.SelectBySql("select id,level,name from province")
-	if province != nil && len(*province) > 0 {
-		for _, v := range *province {
-			id := common.IntAll(v["id"])
-			level := common.IntAll(v["level"])
-			name := common.ObjToString(v["name"])
-			if level == 1 {
-				p.Area[name] = id
-			} else if level == 2 {
-				p.City[name] = id
-			}
-		}
-		if len(p.Area) == 0 {
-			log.Fatalln("PushMapping Area Init Error")
-		}
-		if len(p.City) == 0 {
-			log.Fatalln("PushMapping City Init Error")
-		}
-	}
-}

+ 1 - 0
jyBXSubscribe/rpc/internal/config/config.go

@@ -13,6 +13,7 @@ type Config struct {
 		Pay  int
 		Free int
 	}
+	CodeServiceConf zrpc.RpcClientConf
 }
 
 type Db struct {

+ 29 - 28
jyBXSubscribe/rpc/internal/logic/getsublistlogic.go

@@ -29,45 +29,46 @@ func (l *GetSubListLogic) GetSubList(in *bxsubscribe.SubscribeInfosReq) (*bxsubs
 	//超级订阅 i_apppushunread=0
 	//大会员 i_member_apppushunread=0
 	//商机管理 i_entniche_apppushunread=0
-
 	if in.PageNum == 1 {
 		go model.UpdateUserPushUnread(in.UserId, 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:       int(in.PageNum),                    //当前页码
-		PageSize:      int(in.PageSize),                   //每页多少条数据
-		SelectTime:    in.SelectTime,                      //时间跨度
-		Area:          in.Area,                            //省份
-		City:          in.City,                            //城市
-		Buyerclass:    in.BuyerClass,                      //采购单位类型
-		Subtype:       in.Subtype,                         //信息类型
-		Subscopeclass: in.Industry,                        //行业
-		Key:           in.KeyWords,                        //关键词
-		Price:         in.Price,                           //价格区间
-		FileExists:    in.FileExists,                      //是否有附件
-		EntId:         in.EntId,                           //商机管理企业id
-		EntUserId:     in.EntUserId,                       //商机管理用户id
-		DeptId:        in.DeptId,                          //商机管理部门id
-
-	}
-	if in.UserType == "mType" {
-		spqp.PushMysql = IC.MemberPushMysql
-	} else if in.UserType == "eType" {
-		spqp.PushMysql = IC.EntnichePushMysql
-	} else {
-		spqp.PushMysql = IC.PushMysql
+		Mgo_bidding:      IC.MgoBidding,                      //mongo
+		Bidding:          IC.DB.Mongo.Bidding.Collection,     //招标信息 表
+		Bidding_back:     IC.DB.Mongo.Bidding.CollectionBack, //招标信息备份数据 表名
+		UserId:           in.UserId,                          //用户id
+		PageNum:          int(in.PageNum),                    //当前页码
+		PageSize:         int(in.PageSize),                   //每页多少条数据
+		SelectTime:       in.SelectTime,                      //时间跨度
+		Area:             in.Area,                            //省份
+		City:             in.City,                            //城市
+		Buyerclass:       in.BuyerClass,                      //采购单位类型
+		Subtype:          in.Subtype,                         //信息类型
+		Subscopeclass:    in.Industry,                        //行业
+		Key:              in.KeyWords,                        //关键词
+		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,
 	}
+	/*  if in.UserType == "mType" {
+	    	  spqp.BaseServiceMysql = IC.MemberPushMysql
+	          } else if in.UserType == "eType" {
+	    	  spqp.BaseServiceMysql = IC.EntnichePushMysql
+	          } else {
+	    	  spqp.BaseServiceMysql = IC.PushMysql
+	          }*/
 	hasNextPage, total, list := model.NewSubscribePush(in.UserType).Datas(spqp)
 	/*
 	 *无推送记录生成推送记录
 	 *免费用户默认推送50条
 	 *大会员、新版商机管理、超级订阅用户 默认推送1000条记录
 	 */
-	if in.PageNum == 1 && spqp.IsEmpty() && len(list) == 0 {
+	if in.PageNum == 1 && spqp.IsEmpty() && len(list) == 0 && in.IsEnt == false {
 		hasNextPage, total, list = model.NewSubscribePush(in.UserType).DefaultDatas(spqp)
 	}
 	//查询是否收藏

+ 156 - 0
jyBXSubscribe/rpc/internal/logic/getsublistlogic_test.go

@@ -0,0 +1,156 @@
+package logic
+
+import (
+	elastic "app.yhyue.com/moapp/jybase/esv1"
+	"app.yhyue.com/moapp/jybase/mongodb"
+	"app.yhyue.com/moapp/jybase/mysql"
+	"app.yhyue.com/moapp/jybase/redis"
+	"context"
+	"github.com/zeromicro/go-zero/core/logx"
+	"jyBXSubscribe/entity"
+	IC "jyBXSubscribe/rpc/init"
+	"jyBXSubscribe/rpc/internal/config"
+	"jyBXSubscribe/rpc/internal/svc"
+	"jyBXSubscribe/rpc/type/bxsubscribe"
+	"log"
+	"reflect"
+	"strings"
+	"testing"
+)
+
+func init() {
+
+	logx.Info("--初始化 mongodb--")
+	IC.Mgo = mongodb.MongodbSim{
+		MongodbAddr: "192.168.3.206:27080",
+		Size:        5,
+		DbName:      "qfw",
+	}
+	IC.Mgo.InitPool()
+	IC.DB = config.Db{Mongo: entity.Mongo{
+		Bidding: &entity.MongoStruct{
+			Collection:     "bidding",
+			CollectionBack: "bidding_back",
+		},
+	}}
+	IC.DB.Mongo.Bidding.Collection = "bidding_back"
+	//
+	logx.Info("--初始化 mongodb bidding--")
+	IC.MgoBidding = mongodb.MongodbSim{
+		MongodbAddr: "192.168.3.206:27001",
+		Size:        5,
+		DbName:      "qfw_data",
+		UserName:    "jyDevGroup",
+		Password:    "jy@DevGroup",
+	}
+	IC.MgoBidding.InitPool()
+
+	logx.Info("--初始化 mysql--")
+	IC.MainMysql = &mysql.Mysql{
+		Address:      "192.168.3.11:3366",
+		UserName:     "root",
+		PassWord:     "Topnet123",
+		DBName:       "jianyu",
+		MaxOpenConns: 5,
+		MaxIdleConns: 5,
+	}
+	IC.MainMysql.Init()
+
+	//初始化 mysql-EntnichePush
+	logx.Info("--初始化 商机管理推送 mysql--")
+	IC.BaseServiceMysql = &mysql.Mysql{
+		Address:      "192.168.3.217:4000",
+		UserName:     "root",
+		PassWord:     "=PDT49#80Z!RVv52_z",
+		DBName:       "base_service",
+		MaxOpenConns: 5,
+		MaxIdleConns: 5,
+	}
+	IC.BaseServiceMysql.Init()
+
+	//初始化 mysql-GlobalCommonData
+
+	logx.Info("--初始化 推送 mysql--")
+	IC.GlobalCommonData = &mysql.Mysql{
+		Address:      "192.168.3.217:4000",
+		UserName:     "root",
+		PassWord:     "=PDT49#80Z!RVv52_z",
+		DBName:       "global_common_data",
+		MaxOpenConns: 5,
+		MaxIdleConns: 5,
+	}
+	IC.GlobalCommonData.Init()
+
+	logx.Info("--初始化 redis--")
+	redis.InitRedisBySize(strings.Join([]string{"other=192.168.3.206:1712", "push=192.168.3.206:1712", "pushcache_1=192.168.3.206:5000", "pushcache_2_a=192.168.3.206:5001", "pushcache_2_b=192.168.3.206:5002"}, ","), 100, 30, 300)
+	//初始化 elasticsearch
+	logx.Info("--初始化 elasticsearch--")
+	elastic.InitElasticSize("http://192.168.3.206:9800", 5)
+	//IC.PushMapping.Init(IC.GlobalCommonData)
+}
+
+func TestGetSubListLogic_GetSubList(t *testing.T) {
+	type fields struct {
+		ctx    context.Context
+		svcCtx *svc.ServiceContext
+		Logger logx.Logger
+	}
+	type args struct {
+		in *bxsubscribe.SubscribeInfosReq
+	}
+	tests := []struct {
+		name    string
+		fields  fields
+		args    args
+		want    *bxsubscribe.SubscribeInfosResp
+		wantErr bool
+	}{
+		// TODO: Add test cases.
+		{
+			name:   "推送记录查看",
+			fields: fields{},
+			args: args{
+				in: &bxsubscribe.SubscribeInfosReq{
+					PageNum:    1,
+					PageSize:   20,
+					SelectTime: "",
+					Area:       "",
+					City:       "",
+					BuyerClass: "人大,政协,党委办,组织,宣传,统战,纪委,政府办,发改委,财政,教育,科技,工信,民政,民宗,人社,公安,检察院,法院,司法,应急管理,军队,自然资源,生态环境,住建,市政,城管,交通,水利,农业,气象,文旅,卫健委,医疗,学校,档案,体育,政务中心,机关事务,国资委,海关,税务,市场监管,商务,人行,银保监,证监,审计,出版广电,统计,公共资源交易,社会团体",
+					Subtype:    "",
+					KeyWords:   "",
+					Industry:   "",
+					UserType:   "mType",
+					UserId:     "5e8eb60ae138234b4f91aacf",
+					EntId:      "1111",
+					AppId:      "10000",
+					Price:      "",
+					FileExists: "",
+					EntUserId:  "",
+					DeptId:     "1111",
+					NewUserId:  72668,
+				},
+			},
+			want:    nil,
+			wantErr: true,
+		},
+	}
+	for _, tt := range tests {
+		t.Run(tt.name, func(t *testing.T) {
+			l := &GetSubListLogic{
+				ctx:    tt.fields.ctx,
+				svcCtx: tt.fields.svcCtx,
+				Logger: tt.fields.Logger,
+			}
+			got, err := l.GetSubList(tt.args.in)
+			log.Println(got)
+			if (err != nil) != tt.wantErr {
+				t.Errorf("GetSubList() error = %v, wantErr %v", err, tt.wantErr)
+				return
+			}
+			if !reflect.DeepEqual(got, tt.want) {
+				t.Errorf("GetSubList() got = %v, want %v", got, tt.want)
+			}
+		})
+	}
+}

+ 4 - 1
jyBXSubscribe/rpc/internal/logic/getsubsomeinfologic.go

@@ -60,7 +60,8 @@ func (l *GetSubSomeInfoLogic) GetSubSomeInfo(in *bxsubscribe.SomeInfoReq) (*bxsu
 			t, _ := time.ParseInLocation("2006-01-02", time.Now().Format("2006-01-02"), time.Local)
 			today_1 := t.Unix()
 			today_2 := t.AddDate(0, 0, 1).Unix()
-			if IC.PushMysql.CountBySql("select count(1) as count from pushsubscribe where isvip =1 and userid =? and buyerclass=?  and (date between ? and ? )", in.UserId, 93, today_1, today_2) > 0 {
+			//错误
+			if IC.BaseServiceMysql.CountBySql("select count(1) as count from pushsubscribe a left join global_common_data.dws_f_bid_baseinfo b on a.infoid=b.infoid   where a.isvip =1 and a.userid =? and b.buyerclass_code=?  and (a.date between ? and ? )", common.InterfaceToStr(in.NewUserId), 93, today_1, today_2) > 0 {
 				resp.Data.OtherFlag = true
 			}
 		} else {
@@ -72,5 +73,7 @@ func (l *GetSubSomeInfoLogic) GetSubSomeInfo(in *bxsubscribe.SomeInfoReq) (*bxsu
 			resp.Data.IsPassCount = redis.GetInt("pushcache_2_a", "oncecount_"+todayNum+"_"+in.UserId) >= 150
 		}
 	}
+	//是否进入想到查询
+	resp.Data.IsInTSguide = model.NewSubscribePush().IsInTsGuide(in.UserId)
 	return resp, nil
 }

+ 195 - 158
jyBXSubscribe/rpc/model/push.go

@@ -8,6 +8,9 @@ import (
 	"app.yhyue.com/moapp/jybase/mongodb"
 	"app.yhyue.com/moapp/jybase/mysql"
 	"app.yhyue.com/moapp/jybase/redis"
+	"bp.jydev.jianyu360.cn/BaseService/jyCodeService/rpc/codeservice/codeservice"
+	"context"
+	"database/sql"
 	"encoding/json"
 	"fmt"
 	"github.com/zeromicro/go-zero/core/logx"
@@ -24,7 +27,7 @@ import (
 
 //
 const (
-	pageSize            = 50
+	pageSize            = 100
 	AllSubPushCacheSize = 250
 	query               = `{"query":{"terms":{"_id":["%s"]}},"_source":["_id","area", "publishtime", "s_subscopeclass", "subtype", "title", "toptype", "type", "buyerclass","bidamount","budget","projectname","buyer","bidopentime","s_winner","filetext"],"from":0,"size":%d}`
 	mongodb_fields      = `{"_id":1,"area":1,"publishtime":1,"s_subscopeclass":1,"subtype":1,"title":1,"toptype":1,"type":1, "buyerclass":1,"budget":1,"bidamount":1,"s_winner":1,"bidopentime":1,"buyer":1,"projectname":1}`
@@ -34,6 +37,14 @@ const (
 	MemberFlag   = "mType"
 	EntnicheFlag = "eType"
 	oneDay       = 24 * 60 * 60
+	Baseinfo     = "global_common_data.dws_f_bid_baseinfo"
+	BidTags      = "global_common_data.dws_f_bid_tags"
+)
+
+var (
+	ennicheInsertCollKey   = []string{"entid", "deptid", "userid", "infoid", "matchkeys", "date"}
+	subscribeInsertCollKey = []string{"userid", "infoid", "matchkeys", "date", "isvip"}
+	memberInsertCollKey    = []string{"userid", "infoid", "matchkeys", "date"}
 )
 
 var aboutDbMsg map[string]*AboutDbMsg = map[string]*AboutDbMsg{
@@ -67,26 +78,28 @@ type PushCa struct {
 
 //查询参数
 type SubPushQueryParam struct {
-	Mgo_bidding   mongodb.MongodbSim //
-	Bidding       string             //
-	Bidding_back  string             //
-	PushMysql     *mysql.Mysql       //
-	UserId        string             //用户id
-	PageNum       int                //页面
-	PageSize      int                //每页数量
-	SelectTime    string             //时间
-	Area          string             //区域
-	City          string             //城市
-	Buyerclass    string             //采购单位行业
-	Subtype       string             //信息类型 二级分类
-	Subscopeclass string             //信息行业
-	Key           string             //订阅词
-	Export        bool               //导出
-	EntId         string             //企业id
-	Price         string             //价格
-	FileExists    string             //是否有附件;默认全部;1:有附件;-1:无附件
-	EntUserId     string             //商机管理用户id
-	DeptId        string             //商机管理用户部门id
+	Mgo_bidding      mongodb.MongodbSim //
+	Bidding          string             //
+	Bidding_back     string             //
+	UserId           string             //用户id
+	PageNum          int                //页面
+	PageSize         int                //每页数量
+	SelectTime       string             //时间
+	Area             string             //区域
+	City             string             //城市
+	Buyerclass       string             //采购单位行业
+	Subtype          string             //信息类型 二级分类
+	Subscopeclass    string             //信息行业
+	Key              string             //订阅词
+	Export           bool               //导出
+	EntId            string             //企业id
+	Price            string             //价格
+	FileExists       string             //是否有附件;默认全部;1:有附件;-1:无附件
+	EntUserId        string             //商机管理用户id
+	DeptId           string             //商机管理用户部门id
+	BaseServiceMysql *mysql.Mysql
+	NewUserId        int64
+	IsEnt            bool
 }
 
 func (spqp *SubPushQueryParam) IsEmpty() bool {
@@ -169,9 +182,9 @@ func (s *subscribePush) InfoFormat(p *PushCa, info *map[string]interface{}) *bxs
 	}
 	return &bxsubscribe.SubscribeInfo{
 		XId:          encrypt.EncodeArticleId2ByCheck(_id),
-		Title:        common.ObjToString((*info)["title"]),
+		Title:        common.InterfaceToStr((*info)["title"]),
 		Area:         area,
-		BuyerClass:   common.ObjToString((*info)["buyerclass"]),
+		BuyerClass:   common.InterfaceToStr((*info)["buyerclass"]),
 		Subtype:      infotype,
 		Industry:     industry,
 		PublishTime:  common.Int64All((*info)["publishtime"]),
@@ -181,18 +194,18 @@ func (s *subscribePush) InfoFormat(p *PushCa, info *map[string]interface{}) *bxs
 		CaIsvip:      int64(p.Isvip),
 		CaType:       int64(p.Type),
 		MatchKeys:    p.Keys,
-		Budget:       common.ObjToString((*info)["budget"]),
-		BidAmount:    common.ObjToString((*info)["bidamount"]),
-		Buyer:        common.ObjToString((*info)["buyer"]),
-		ProjectName:  common.ObjToString((*info)["projectname"]),
-		Winner:       common.ObjToString((*info)["s_winner"]),
-		BidOpenTime:  common.ObjToString((*info)["bidopentime"]),
+		Budget:       common.InterfaceToStr((*info)["budget"]),
+		BidAmount:    common.InterfaceToStr((*info)["bidamount"]),
+		Buyer:        common.InterfaceToStr((*info)["buyer"]),
+		ProjectName:  common.InterfaceToStr((*info)["projectname"]),
+		Winner:       common.InterfaceToStr((*info)["s_winner"]),
+		BidOpenTime:  common.InterfaceToStr((*info)["bidopentime"]),
 		CaFileExists: p.FileExists,
 	}
 }
 
 func (s *subscribePush) Datas(spqp *SubPushQueryParam) (hasNextPage bool, total int64, result []*bxsubscribe.SubscribeInfo) {
-	logx.Info(spqp.UserId, s.ModuleFlag, "subscribePush query param:", "SelectTime:", spqp.SelectTime, "Area:", spqp.Area, "City:", spqp.City, "Subtype:", spqp.Subtype, "Subscopeclass:", spqp.Subscopeclass, "Buyerclass:", spqp.Buyerclass, "Key:", spqp.Key, "PageNum:", spqp.PageNum, "Price:", spqp.Price, "FileExists:", spqp.FileExists)
+	logx.Info(spqp.UserId, spqp.NewUserId, s.ModuleFlag, "subscribePush query param:", "SelectTime:", spqp.SelectTime, "Area:", spqp.Area, "City:", spqp.City, "Subtype:", spqp.Subtype, "Subscopeclass:", spqp.Subscopeclass, "Buyerclass:", spqp.Buyerclass, "Key:", spqp.Key, "PageNum:", spqp.PageNum, "Price:", spqp.Price, "FileExists:", spqp.FileExists)
 	if spqp.UserId == "" {
 		return
 	}
@@ -209,7 +222,6 @@ func (s *subscribePush) Datas(spqp *SubPushQueryParam) (hasNextPage bool, total
 		}
 	}
 	starttime, endtime := int64(0), int64(0)
-	logx.Info(4444)
 	if len(strings.Split(spqp.SelectTime, "_")) == 2 {
 		st := strings.Split(spqp.SelectTime, "_")[0]
 		et := strings.Split(spqp.SelectTime, "_")[1]
@@ -222,14 +234,17 @@ func (s *subscribePush) Datas(spqp *SubPushQueryParam) (hasNextPage bool, total
 			}
 		}
 	}
-	logx.Info(2222)
 	nowFormat := date.NowFormat(date.Date_Short_Layout)
 	start := (spqp.PageNum - 1) * spqp.PageSize
 	end := start + spqp.PageSize
 	//时间是今天,没有别的过滤条件--首先读取当前推送缓存数据 其次查询数据库
 	if nowFormat == date.FormatDateByInt64(&starttime, date.Date_Short_Layout) && spqp.Area == "" && spqp.City == "" && spqp.Buyerclass == "" && spqp.Subscopeclass == "" && spqp.Subtype == "" && spqp.Key == "" && spqp.Price == "" && spqp.FileExists == "" {
 		logx.Info("a1:", s.todayKey(spqp.UserId))
-		subPush, err := s.GetTodayCache(spqp.UserId)
+		subPush := &SubPush{}
+		var err error
+		if spqp.IsEnt == false {
+			subPush, err = s.GetTodayCache(spqp.UserId)
+		}
 		if err != nil {
 			logx.Info(spqp.UserId, "GetTodayCache Error", err)
 		}
@@ -240,7 +255,9 @@ func (s *subscribePush) Datas(spqp *SubPushQueryParam) (hasNextPage bool, total
 				Datas: list,
 				Count: countSearch,
 			}
-			s.PutTodayCache(spqp.UserId, subPush)
+			if spqp.IsEnt == false {
+				s.PutTodayCache(spqp.UserId, subPush)
+			}
 		}
 		length := len(subPush.Datas)
 		if end > length {
@@ -250,9 +267,13 @@ func (s *subscribePush) Datas(spqp *SubPushQueryParam) (hasNextPage bool, total
 			result = subPush.Datas[start:end]
 		}
 		total = int64(length)
-	} else if spqp.IsEmpty() && (spqp.PageNum-1)*spqp.PageSize <= 250 { //全部,没有过滤条件 之前缓存5页*50条=250
+	} else if spqp.IsEmpty() && (spqp.PageNum-1)*spqp.PageSize < 250 { //全部,没有过滤条件 之前缓存5页*50条=250
 		logx.Info("a2:", s.allKey(spqp.UserId))
-		allCache, err := s.GetAllCache(spqp.UserId)
+		allCache := &SubPush{}
+		var err error
+		if spqp.IsEnt == false {
+			allCache, err = s.GetAllCache(spqp.UserId)
+		}
 		if err != nil {
 			logx.Info(spqp.UserId, "GetAllCache Error", err)
 		}
@@ -265,7 +286,9 @@ func (s *subscribePush) Datas(spqp *SubPushQueryParam) (hasNextPage bool, total
 				Datas: list,
 				Count: countSearch,
 			}
-			s.PutAllCache(spqp.UserId, allCache)
+			if spqp.IsEnt == false {
+				s.PutTodayCache(spqp.UserId, allCache)
+			}
 		}
 		length := len(allCache.Datas)
 		if end > length {
@@ -280,6 +303,7 @@ func (s *subscribePush) Datas(spqp *SubPushQueryParam) (hasNextPage bool, total
 		result, total = s.getDatasFromMysql(spqp, starttime, endtime, spqp.PageSize, true)
 	}
 	logx.Info("-------------------------------------------------", len(result))
+	log.Println(spqp.IsEmpty() && (spqp.PageNum-1)*spqp.PageSize <= 250)
 	if result == nil {
 		result = []*bxsubscribe.SubscribeInfo{}
 	}
@@ -289,22 +313,33 @@ func (s *subscribePush) Datas(spqp *SubPushQueryParam) (hasNextPage bool, total
 
 //
 func (s *subscribePush) getDatasFromMysql(spqp *SubPushQueryParam, starttime, endtime int64, size int, isLimit bool) (result []*bxsubscribe.SubscribeInfo, count int64) {
-	querys := []string{fmt.Sprintf("userid='%s'", common.If(s.ModuleFlag == "eType", spqp.EntUserId, spqp.UserId))}
+	querys := []string{}
+	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("date>=%d and date<=%d", starttime, endtime))
+		querys = append(querys, fmt.Sprintf("a.date>=%d and date<=%d", starttime, endtime))
 	} else if starttime > 0 && endtime == 0 {
-		querys = append(querys, fmt.Sprintf("date>=%d", starttime))
+		querys = append(querys, fmt.Sprintf("a.date>=%d", starttime))
 	} else if starttime == 0 && endtime > 0 {
-		querys = append(querys, fmt.Sprintf("date<=%d", endtime))
+		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 IC.PushMapping.City[v] > 0 {
-				city = append(city, fmt.Sprint(IC.PushMapping.City[v]))
+			if codeMap.Data.City[v] != "" {
+				city = append(city, fmt.Sprint(codeMap.Data.City[v]))
 			} else {
 				city = append(city, "-1")
 			}
@@ -313,14 +348,14 @@ func (s *subscribePush) getDatasFromMysql(spqp *SubPushQueryParam, starttime, en
 			city = append(city, "9999")
 		}
 		if len(city) > 0 {
-			sqlAreaCity = fmt.Sprintf("city in (%s)", strings.Join(city, ","))
+			sqlAreaCity = fmt.Sprintf("b.city_code in (%s)", strings.Join(city, ","))
 		}
 		//区域
 		var sqlArea = ""
 		area := []string{}
 		for _, v := range strings.Split(spqp.Area, ",") {
-			if IC.PushMapping.Area[v] > 0 {
-				area = append(area, fmt.Sprint(IC.PushMapping.Area[v]))
+			if codeMap.Data.Area[v] != "" {
+				area = append(area, fmt.Sprint(codeMap.Data.Area[v]))
 			} else {
 				area = append(area, "-1")
 			}
@@ -329,7 +364,7 @@ func (s *subscribePush) getDatasFromMysql(spqp *SubPushQueryParam, starttime, en
 			area = append(area, "9999")
 		}
 		if len(area) > 0 {
-			sqlArea = fmt.Sprintf("area in (%s)", strings.Join(area, ","))
+			sqlArea = fmt.Sprintf("b.area_code in (%s)", strings.Join(area, ","))
 		}
 		if sqlAreaCity != "" && sqlArea != "" {
 			sqlAreaCity = "( " + sqlAreaCity + " or " + sqlArea + " )"
@@ -344,45 +379,55 @@ func (s *subscribePush) getDatasFromMysql(spqp *SubPushQueryParam, starttime, en
 	if spqp.Buyerclass != "" {
 		buyerclass := []string{}
 		for _, v := range strings.Split(spqp.Buyerclass, ",") {
-			buyerclass = append(buyerclass, fmt.Sprint(IC.PushMapping.Buyerclass[v]))
+			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("buyerclass in (%s)", strings.Join(buyerclass, ",")))
+			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, ",") {
-			subtype = append(subtype, fmt.Sprint(IC.PushMapping.Subtype[v]))
+			if codeMap.Data.Subtype[v] != "" {
+				subtype = append(subtype, fmt.Sprint(codeMap.Data.Subtype[v]))
+			}
+
 		}
 		if len(subtype) == 1 {
 			subtype = append(subtype, "9999")
 		}
 		if len(subtype) > 0 {
-			querys = append(querys, fmt.Sprintf("subtype in (%s)", strings.Join(subtype, ",")))
+			querys = append(querys, fmt.Sprintf("b.subtype_code in (%s)", strings.Join(subtype, ",")))
 		}
+
 	}
 	//信息行业
 	if spqp.Subscopeclass != "" {
 		find_in_set := []string{}
 		for _, v := range strings.Split(spqp.Subscopeclass, ",") {
-			find_in_set = append(find_in_set, fmt.Sprintf("find_in_set('%d',subscopeclass)", IC.PushMapping.Subscopeclass[v]))
+			if codeMap.Data.Subscopeclass[v] != "" {
+				find_in_set = append(find_in_set, codeMap.Data.Subscopeclass[v])
+			}
+
 		}
 		if len(find_in_set) == 1 {
 			querys = append(querys, find_in_set[0])
 		} else if len(find_in_set) > 1 {
-			querys = append(querys, fmt.Sprintf("(%s)", strings.Join(find_in_set, " or ")))
+			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(matchkeys,'+',','),' ',','))", v))
+			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])
@@ -396,38 +441,37 @@ func (s *subscribePush) getDatasFromMysql(spqp *SubPushQueryParam, starttime, en
 		minPrice := common.Int64All(common.Float64All(minPriceStr) * 10000) //换成元
 		maxPrice := common.Int64All(common.Float64All(maxPriceStr) * 10000) //换成元
 		if minPriceStr != "" && maxPriceStr != "" {
-			querys = append(querys, fmt.Sprintf("((bidamount>=%d and bidamount<=%d) or (budget>=%d and budget<=%d and bidamount is null))", minPrice, maxPrice, minPrice, maxPrice))
+			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("(bidamount>=%d  or (budget>=%d and bidamount is null))", minPrice, minPrice))
+			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("( bidamount<=%d or (budget<=%d and bidamount is null))", maxPrice, maxPrice))
+			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("attachment_count is not null"))
+			querys = append(querys, fmt.Sprintf("b.isvalidfile =1 "))
 		} else if spqp.FileExists == "-1" {
-			querys = append(querys, fmt.Sprintf("attachment_count is null"))
+			querys = append(querys, fmt.Sprintf("b.isvalidfile =0 "))
 		}
 	}
-	searchSql := fmt.Sprintf(" from %s where %s order by id desc", aboutDbMsg[s.ModuleFlag].MysqlTable, strings.Join(querys, " and "))
+	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.PushMysql.CountBySql(fmt.Sprintf("select count(id)" + searchSql))
+	count = spqp.BaseServiceMysql.CountBySql(fmt.Sprintf("select count(a.id)" + searchSql))
 	logx.Info("count:", count, "---", s.ModuleFlag)
-	findSql := "select id,date,infoid,isvisit,matchkeys,type"
+	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 += searchSql
 	if isLimit {
 		findSql += fmt.Sprintf(" limit %d,%d", (spqp.PageNum-1)*size, size)
 	}
-
-	logx.Info(spqp.UserId, "subscribePush query sql:", findSql)
-	list := spqp.PushMysql.SelectBySql(findSql)
+	logx.Info(spqp.NewUserId, "subscribePush query sql:", findSql)
+	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)
@@ -546,6 +590,7 @@ func (s *subscribePush) GetJyPushs(datas []map[string]interface{}) (pushCas []*P
 
 //查看全部列表缓存
 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)
 }
 
@@ -657,7 +702,6 @@ func UpdateUserPushUnread(userid string, vt string) {
 		IC.Mgo.UpdateById("user", userid, map[string]interface{}{"$set": map[string]interface{}{"i_entniche_apppushunread": 0}})
 	} else {
 		IC.Mgo.UpdateById("user", userid, map[string]interface{}{"$set": map[string]interface{}{"i_apppushunread": 0}})
-
 	}
 }
 
@@ -715,7 +759,7 @@ const (
 	INDEX      = "bidding"
 	TYPE       = "bidding"
 	bidField   = `"_id","title","publishtime","toptype","subtype","type","area","city","s_subscopeclass","buyerclass","budget","bidamount","filetext","spidercode","site"`
-	bidTime    = `{"range":{"publishtime":{"gt":%d}}}`
+	bidTime    = `{"":{"publishtime":{"gt":%d}}}`
 	bidSort    = `{"publishtime":"desc"}`
 	findfields = `"title"`
 )
@@ -728,6 +772,7 @@ func (s *subscribePush) DefaultDatas(spqp *SubPushQueryParam) (hasNextPage bool,
 	}
 	t1 := time.Now()
 	log.Println("userId:", spqp.UserId)
+	log.Println("newUserId:", spqp.NewUserId)
 	//用户信息
 	bsp := s.getUserInfo(spqp)
 	logx.Info("获取用户信息耗时:", time.Since(t1))
@@ -757,10 +802,10 @@ 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()
+	now := time.Now().Unix()
 	var (
 		wg = &sync.WaitGroup{}
 		wc = make(chan bool, ccount)
@@ -775,66 +820,45 @@ func (s *subscribePush) listManager(spqp *SubPushQueryParam, list []map[string]i
 			}()
 			redisKey := fmt.Sprintf("pushinfo_%s_%s", spqp.UserId, common.ObjToString(v["_id"]))
 			title := strings.Replace(common.ObjToString(v["title"]), "\n", "", -1)
-			var myInsert = make(map[string]interface{})
-			myInsert["userid"] = spqp.UserId
-			myInsert["infoid"] = common.ObjToString(v["_id"])
-			myInsert["date"] = now.Unix()
-			matchkeys := getKeys(title, keyword)
-			myInsert["matchkeys"] = strings.Join(matchkeys, " ")
-			if v["area"] != nil {
-				myInsert["area"] = common.If(common.ObjToString(v["area"]) == "A", 0, common.If(IC.PushMapping.Area[common.ObjToString(v["area"])] > 0, IC.PushMapping.Area[common.ObjToString(v["area"])], 0).(int)).(int)
-			}
-			if v["city"] != nil {
-				myInsert["city"] = common.If(IC.PushMapping.City[common.ObjToString(v["city"])] > 0, IC.PushMapping.City[common.ObjToString(v["city"])], 0).(int)
-			}
-			if v["subtype"] != nil {
-				myInsert["subtype"] = common.If(IC.PushMapping.Subtype[common.ObjToString(v["subtype"])] > 0, IC.PushMapping.Subtype[common.ObjToString(v["subtype"])], 0).(int)
-			}
-			if v["toptype"] != nil {
-				myInsert["toptype"] = common.If(IC.PushMapping.Toptype[common.ObjToString(v["toptype"])] > 0, IC.PushMapping.Toptype[common.ObjToString(v["toptype"])], 0).(int)
-			}
-			if v["buyerclass"] != nil {
-				myInsert["buyerclass"] = common.If(IC.PushMapping.Buyerclass[common.ObjToString(v["buyerclass"])] > 0, IC.PushMapping.Buyerclass[common.ObjToString(v["buyerclass"])], 0).(int)
-			}
-			if v["isValidFile"] != nil {
-				isValidFile, _ := v["isValidFile"].(bool)
-				myInsert["attachment_count"] = common.If(isValidFile, 1, 0).(int) //附件 :检索库 只有附件字段,无法识别附件数量 暂定为1;为识别有附件
-			}
-			if v["bidamount"] != nil {
-				myInsert["bidamount"] = common.Int64All(v["bidamount"])
-			}
-			if v["budget"] != nil {
-				myInsert["budget"] = common.Int64All(v["budget"])
-			}
-			if s_subscopeclass := common.ObjToString(v["s_subscopeclass"]); s_subscopeclass != "" {
-				subscopeclass := []string{}
-				for _, v := range strings.Split(s_subscopeclass, ",") {
-					if subscopeclass_mapping, ok := IC.PushMapping.Subscopeclass[v]; ok {
-						subscopeclass = append(subscopeclass, fmt.Sprint(subscopeclass_mapping))
-					}
+			var pushInsert = []interface{}{}
+			infoid := common.InterfaceToStr(v["_id"])
+			log.Println("infoid", infoid)
+			spqp.BaseServiceMysql.ExecTx("推送记录保存", func(tx *sql.Tx) bool {
+				//推送记录
+				matchkeys := getKeys(title, keyword)
+				matchkey := strings.Join(matchkeys, " ")
+				entid := spqp.EntId
+				entUserId := spqp.EntUserId
+				deptid := spqp.DeptId
+				id := int64(0)
+				switch s.ModuleFlag {
+				case "eType":
+					pushInsert = append(pushInsert, entid, deptid, entUserId, common.InterfaceToStr(infoid), matchkey, now)
+					id, _ = spqp.BaseServiceMysql.InsertIgnoreBatch(aboutDbMsg[s.ModuleFlag].MysqlTable, ennicheInsertCollKey, pushInsert)
+				case "mType":
+					pushInsert = append(pushInsert, common.InterfaceToStr(spqp.NewUserId), common.InterfaceToStr(infoid), matchkey, now)
+					id, _ = spqp.BaseServiceMysql.InsertIgnoreBatch(aboutDbMsg[s.ModuleFlag].MysqlTable, memberInsertCollKey, pushInsert)
+				case "vType":
+					pushInsert = append(pushInsert, common.InterfaceToStr(spqp.NewUserId), common.InterfaceToStr(infoid), matchkey, now, 1)
+					id, _ = spqp.BaseServiceMysql.InsertIgnoreBatch(aboutDbMsg[s.ModuleFlag].MysqlTable, subscribeInsertCollKey, pushInsert)
+				case "fType":
+					pushInsert = append(pushInsert, common.InterfaceToStr(spqp.NewUserId), common.InterfaceToStr(infoid), matchkey, now, 0)
+					id, _ = spqp.BaseServiceMysql.InsertIgnoreBatch(aboutDbMsg[s.ModuleFlag].MysqlTable, subscribeInsertCollKey, pushInsert)
+
 				}
-				if len(subscopeclass) > 0 {
-					myInsert["subscopeclass"] = strings.Join(subscopeclass, ",")
+				if id > 0 {
+					redis.Put("pushcache_2_a", redisKey, 1, 86400)
+					resultList = append(resultList, s.InfoFormat(&PushCa{
+						InfoId:     infoid,
+						Date:       time.Now().Unix(),
+						Index:      id,
+						Keys:       matchkeys,
+						FileExists: v["filetext"] != nil,
+					}, &v))
+					return true
 				}
-			}
-			//商机管理用户
-			if s.ModuleFlag == "s" {
-				myInsert["userid"] = spqp.EntUserId
-				myInsert["entid"] = spqp.EntId
-				myInsert["deptid"] = spqp.DeptId
-			}
-			//保存推送表
-			id := spqp.PushMysql.Insert(aboutDbMsg[s.ModuleFlag].MysqlTable, myInsert)
-			if id > 0 {
-				redis.Put("pushcache_2_a", redisKey, 1, 86400)
-				resultList = append(resultList, s.InfoFormat(&PushCa{
-					InfoId:     common.ObjToString(v["_id"]),
-					Date:       now.Unix(),
-					Index:      id,
-					Keys:       matchkeys,
-					FileExists: v["filetext"] != nil,
-				}, &v))
-			}
+				return false
+			})
 		}(v)
 	}
 	wg.Wait()
@@ -1082,7 +1106,10 @@ func (s *subscribePush) getUserInfo(spqp *SubPushQueryParam) (vc *ViewCondition)
 	} else {
 		vc.Size = IC.C.DefaulCount.Free
 		vc.Keyword = getKeyWordArrFromDbResultByFree(tmpInfo.Items, "", -1)
+		//vc.Keyword = getKeyWordArrFromDbResult(tmpInfo.Items, "", -1)
 	}
+	vc.Size = 10
+
 	return
 }
 
@@ -1134,40 +1161,30 @@ func getKeyWordArrFromDbResultByFree(a_items []interface{}, item string, index i
 		return
 	}
 	for _, v := range a_items {
-		vmr, _ := v.([]interface{})
-		vm, _ := vmr[0].(map[string]interface{})
-		if item != "" && index >= 0 && item != common.ObjToString(vm["s_item"]) {
-			continue
-		}
-		kwsArr := vmr
-		for i, k := range kwsArr {
-			if item != "" && index >= 0 && i != index {
-				continue
+		kw := ViewKeyWord{}
+		b, e := json.Marshal(v)
+		if e != nil {
+			log.Println(e.Error())
+		}
+		json.Unmarshal(b, &kw)
+		if kw.MatchWay == 1 {
+			for _, kk := range kw.Keyword {
+				arr = append(arr, ViewKeyWord{
+					Keyword: []string{kk},
+					Exclude: kw.Exclude,
+				})
 			}
-			kw := ViewKeyWord{}
-			b, e := json.Marshal(k)
-			if e != nil {
-				log.Println(e.Error())
-			}
-			json.Unmarshal(b, &kw)
-			if kw.MatchWay == 1 {
-				for _, kk := range kw.Keyword {
-					arr = append(arr, ViewKeyWord{
-						Keyword: []string{kk},
-						Exclude: kw.Exclude,
-					})
-				}
-				for _, kk := range kw.Appended {
-					arr = append(arr, ViewKeyWord{
-						Keyword: []string{kk},
-						Exclude: kw.Exclude,
-					})
-				}
-			} else {
-				arr = append(arr, kw)
+			for _, kk := range kw.Appended {
+				arr = append(arr, ViewKeyWord{
+					Keyword: []string{kk},
+					Exclude: kw.Exclude,
+				})
 			}
+		} else {
+			arr = append(arr, kw)
 		}
 	}
+
 	return
 }
 
@@ -1192,3 +1209,23 @@ func getStringArrFromDbResult(area map[string]interface{}, i int) (arr []string)
 	}
 	return
 }
+
+//IsInTsGuide 是否进入向导
+func (s *subscribePush) IsInTsGuide(userid string) bool {
+	if userid == "" {
+		return false
+	}
+	data, ok := IC.Mgo.FindById("user", userid, `{"o_jy":1,"i_ts_guide":1,"":1,"i_member_status":1,"i_vip_status":1}`)
+	if ok {
+		//付费用户无免费订阅,不进入订阅向导页面
+		if common.IntAll((*data)["i_member_status"]) > 0 || common.IntAll((*data)["i_vip_status"]) > 0 {
+			return false
+		}
+		o_jy, _ := (*data)["o_jy"].(map[string]interface{})
+		i_ts_guide := common.IntAll((*data)["i_ts_guide"])
+		if i_ts_guide == 2 || (i_ts_guide == 0 && len(o_jy) == 0) {
+			return true
+		}
+	}
+	return false
+}

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

@@ -1,1569 +0,0 @@
-// Code generated by protoc-gen-go. DO NOT EDIT.
-// versions:
-// 	protoc-gen-go v1.27.1
-// 	protoc        v3.19.4
-// source: bxsubscribe.proto
-
-package bxsubscribe
-
-import (
-	protoreflect "google.golang.org/protobuf/reflect/protoreflect"
-	protoimpl "google.golang.org/protobuf/runtime/protoimpl"
-	reflect "reflect"
-	sync "sync"
-)
-
-const (
-	// Verify that this generated code is sufficiently up-to-date.
-	_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
-	// Verify that runtime/protoimpl is sufficiently up-to-date.
-	_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
-)
-
-type SubscribeInfosReq struct {
-	state         protoimpl.MessageState
-	sizeCache     protoimpl.SizeCache
-	unknownFields protoimpl.UnknownFields
-
-	PageNum    int64  `protobuf:"varint,1,opt,name=pageNum,proto3" json:"pageNum,omitempty"`
-	PageSize   int64  `protobuf:"varint,2,opt,name=pageSize,proto3" json:"pageSize,omitempty"`
-	SelectTime string `protobuf:"bytes,3,opt,name=selectTime,proto3" json:"selectTime,omitempty"`
-	Area       string `protobuf:"bytes,4,opt,name=area,proto3" json:"area,omitempty"`
-	City       string `protobuf:"bytes,5,opt,name=city,proto3" json:"city,omitempty"`
-	Industry   string `protobuf:"bytes,6,opt,name=industry,proto3" json:"industry,omitempty"`
-	BuyerClass string `protobuf:"bytes,7,opt,name=buyerClass,proto3" json:"buyerClass,omitempty"`
-	KeyWords   string `protobuf:"bytes,8,opt,name=keyWords,proto3" json:"keyWords,omitempty"`
-	Subtype    string `protobuf:"bytes,9,opt,name=subtype,proto3" json:"subtype,omitempty"`
-	UserType   string `protobuf:"bytes,10,opt,name=userType,proto3" json:"userType,omitempty"` //fType:普通用户;vType:超级订阅用户;mType:大会员用户;eType:商机管理用户;
-	UserId     string `protobuf:"bytes,11,opt,name=userId,proto3" json:"userId,omitempty"`
-	EntId      string `protobuf:"bytes,12,opt,name=entId,proto3" json:"entId,omitempty"`
-	AppId      string `protobuf:"bytes,13,opt,name=appId,proto3" json:"appId,omitempty"`
-	Price      string `protobuf:"bytes,14,opt,name=price,proto3" json:"price,omitempty"`
-	FileExists string `protobuf:"bytes,15,opt,name=fileExists,proto3" json:"fileExists,omitempty"`
-	EntUserId  string `protobuf:"bytes,16,opt,name=entUserId,proto3" json:"entUserId,omitempty"`
-	DeptId     string `protobuf:"bytes,17,opt,name=deptId,proto3" json:"deptId,omitempty"`
-}
-
-func (x *SubscribeInfosReq) Reset() {
-	*x = SubscribeInfosReq{}
-	if protoimpl.UnsafeEnabled {
-		mi := &file_bxsubscribe_proto_msgTypes[0]
-		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
-		ms.StoreMessageInfo(mi)
-	}
-}
-
-func (x *SubscribeInfosReq) String() string {
-	return protoimpl.X.MessageStringOf(x)
-}
-
-func (*SubscribeInfosReq) ProtoMessage() {}
-
-func (x *SubscribeInfosReq) ProtoReflect() protoreflect.Message {
-	mi := &file_bxsubscribe_proto_msgTypes[0]
-	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 SubscribeInfosReq.ProtoReflect.Descriptor instead.
-func (*SubscribeInfosReq) Descriptor() ([]byte, []int) {
-	return file_bxsubscribe_proto_rawDescGZIP(), []int{0}
-}
-
-func (x *SubscribeInfosReq) GetPageNum() int64 {
-	if x != nil {
-		return x.PageNum
-	}
-	return 0
-}
-
-func (x *SubscribeInfosReq) GetPageSize() int64 {
-	if x != nil {
-		return x.PageSize
-	}
-	return 0
-}
-
-func (x *SubscribeInfosReq) GetSelectTime() string {
-	if x != nil {
-		return x.SelectTime
-	}
-	return ""
-}
-
-func (x *SubscribeInfosReq) GetArea() string {
-	if x != nil {
-		return x.Area
-	}
-	return ""
-}
-
-func (x *SubscribeInfosReq) GetCity() string {
-	if x != nil {
-		return x.City
-	}
-	return ""
-}
-
-func (x *SubscribeInfosReq) GetIndustry() string {
-	if x != nil {
-		return x.Industry
-	}
-	return ""
-}
-
-func (x *SubscribeInfosReq) GetBuyerClass() string {
-	if x != nil {
-		return x.BuyerClass
-	}
-	return ""
-}
-
-func (x *SubscribeInfosReq) GetKeyWords() string {
-	if x != nil {
-		return x.KeyWords
-	}
-	return ""
-}
-
-func (x *SubscribeInfosReq) GetSubtype() string {
-	if x != nil {
-		return x.Subtype
-	}
-	return ""
-}
-
-func (x *SubscribeInfosReq) GetUserType() string {
-	if x != nil {
-		return x.UserType
-	}
-	return ""
-}
-
-func (x *SubscribeInfosReq) GetUserId() string {
-	if x != nil {
-		return x.UserId
-	}
-	return ""
-}
-
-func (x *SubscribeInfosReq) GetEntId() string {
-	if x != nil {
-		return x.EntId
-	}
-	return ""
-}
-
-func (x *SubscribeInfosReq) GetAppId() string {
-	if x != nil {
-		return x.AppId
-	}
-	return ""
-}
-
-func (x *SubscribeInfosReq) GetPrice() string {
-	if x != nil {
-		return x.Price
-	}
-	return ""
-}
-
-func (x *SubscribeInfosReq) GetFileExists() string {
-	if x != nil {
-		return x.FileExists
-	}
-	return ""
-}
-
-func (x *SubscribeInfosReq) GetEntUserId() string {
-	if x != nil {
-		return x.EntUserId
-	}
-	return ""
-}
-
-func (x *SubscribeInfosReq) GetDeptId() string {
-	if x != nil {
-		return x.DeptId
-	}
-	return ""
-}
-
-type SubscribeInfosResp struct {
-	state         protoimpl.MessageState
-	sizeCache     protoimpl.SizeCache
-	unknownFields protoimpl.UnknownFields
-
-	ErrCode int64          `protobuf:"varint,1,opt,name=err_code,json=errCode,proto3" json:"err_code,omitempty"`
-	ErrMsg  string         `protobuf:"bytes,2,opt,name=err_msg,json=errMsg,proto3" json:"err_msg,omitempty"`
-	Data    *SubscribeData `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
-}
-
-func (x *SubscribeInfosResp) Reset() {
-	*x = SubscribeInfosResp{}
-	if protoimpl.UnsafeEnabled {
-		mi := &file_bxsubscribe_proto_msgTypes[1]
-		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
-		ms.StoreMessageInfo(mi)
-	}
-}
-
-func (x *SubscribeInfosResp) String() string {
-	return protoimpl.X.MessageStringOf(x)
-}
-
-func (*SubscribeInfosResp) ProtoMessage() {}
-
-func (x *SubscribeInfosResp) ProtoReflect() protoreflect.Message {
-	mi := &file_bxsubscribe_proto_msgTypes[1]
-	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 SubscribeInfosResp.ProtoReflect.Descriptor instead.
-func (*SubscribeInfosResp) Descriptor() ([]byte, []int) {
-	return file_bxsubscribe_proto_rawDescGZIP(), []int{1}
-}
-
-func (x *SubscribeInfosResp) GetErrCode() int64 {
-	if x != nil {
-		return x.ErrCode
-	}
-	return 0
-}
-
-func (x *SubscribeInfosResp) GetErrMsg() string {
-	if x != nil {
-		return x.ErrMsg
-	}
-	return ""
-}
-
-func (x *SubscribeInfosResp) GetData() *SubscribeData {
-	if x != nil {
-		return x.Data
-	}
-	return nil
-}
-
-type SubscribeData struct {
-	state         protoimpl.MessageState
-	sizeCache     protoimpl.SizeCache
-	unknownFields protoimpl.UnknownFields
-
-	Count       int64            `protobuf:"varint,1,opt,name=count,proto3" json:"count,omitempty"`
-	HasNextPage bool             `protobuf:"varint,2,opt,name=hasNextPage,proto3" json:"hasNextPage,omitempty"`
-	List        []*SubscribeInfo `protobuf:"bytes,3,rep,name=list,proto3" json:"list,omitempty"`
-}
-
-func (x *SubscribeData) Reset() {
-	*x = SubscribeData{}
-	if protoimpl.UnsafeEnabled {
-		mi := &file_bxsubscribe_proto_msgTypes[2]
-		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
-		ms.StoreMessageInfo(mi)
-	}
-}
-
-func (x *SubscribeData) String() string {
-	return protoimpl.X.MessageStringOf(x)
-}
-
-func (*SubscribeData) ProtoMessage() {}
-
-func (x *SubscribeData) ProtoReflect() protoreflect.Message {
-	mi := &file_bxsubscribe_proto_msgTypes[2]
-	if protoimpl.UnsafeEnabled && x != nil {
-		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
-		if ms.LoadMessageInfo() == nil {
-			ms.StoreMessageInfo(mi)
-		}
-		return ms
-	}
-	return mi.MessageOf(x)
-}
-
-// Deprecated: Use SubscribeData.ProtoReflect.Descriptor instead.
-func (*SubscribeData) Descriptor() ([]byte, []int) {
-	return file_bxsubscribe_proto_rawDescGZIP(), []int{2}
-}
-
-func (x *SubscribeData) GetCount() int64 {
-	if x != nil {
-		return x.Count
-	}
-	return 0
-}
-
-func (x *SubscribeData) GetHasNextPage() bool {
-	if x != nil {
-		return x.HasNextPage
-	}
-	return false
-}
-
-func (x *SubscribeData) GetList() []*SubscribeInfo {
-	if x != nil {
-		return x.List
-	}
-	return nil
-}
-
-type SubscribeInfo struct {
-	state         protoimpl.MessageState
-	sizeCache     protoimpl.SizeCache
-	unknownFields protoimpl.UnknownFields
-
-	XId          string   `protobuf:"bytes,1,opt,name=_id,json=Id,proto3" json:"_id,omitempty"` //和推送程序 缓存保持一致
-	Title        string   `protobuf:"bytes,2,opt,name=title,proto3" json:"title,omitempty"`
-	Area         string   `protobuf:"bytes,3,opt,name=area,proto3" json:"area,omitempty"`
-	BuyerClass   string   `protobuf:"bytes,4,opt,name=buyerClass,proto3" json:"buyerClass,omitempty"`
-	Subtype      string   `protobuf:"bytes,5,opt,name=subtype,proto3" json:"subtype,omitempty"`
-	Industry     string   `protobuf:"bytes,6,opt,name=industry,proto3" json:"industry,omitempty"`
-	PublishTime  int64    `protobuf:"varint,7,opt,name=publishTime,proto3" json:"publishTime,omitempty"`
-	CaIndex      int64    `protobuf:"varint,8,opt,name=ca_index,json=caIndex,proto3" json:"ca_index,omitempty"`
-	CaDate       int64    `protobuf:"varint,9,opt,name=ca_date,json=caDate,proto3" json:"ca_date,omitempty"`
-	CaIsvisit    int64    `protobuf:"varint,10,opt,name=ca_isvisit,json=caIsvisit,proto3" json:"ca_isvisit,omitempty"`
-	CaType       int64    `protobuf:"varint,11,opt,name=ca_type,json=caType,proto3" json:"ca_type,omitempty"`
-	MatchKeys    []string `protobuf:"bytes,12,rep,name=matchKeys,proto3" json:"matchKeys,omitempty"`
-	Budget       string   `protobuf:"bytes,13,opt,name=budget,proto3" json:"budget,omitempty"`
-	BidAmount    string   `protobuf:"bytes,14,opt,name=bidAmount,proto3" json:"bidAmount,omitempty"`
-	Collection   int64    `protobuf:"varint,15,opt,name=collection,proto3" json:"collection,omitempty"`
-	Buyer        string   `protobuf:"bytes,16,opt,name=buyer,proto3" json:"buyer,omitempty"`
-	ProjectName  string   `protobuf:"bytes,17,opt,name=projectName,proto3" json:"projectName,omitempty"`
-	Winner       string   `protobuf:"bytes,18,opt,name=winner,proto3" json:"winner,omitempty"`
-	BidOpenTime  string   `protobuf:"bytes,19,opt,name=bidOpenTime,proto3" json:"bidOpenTime,omitempty"`
-	CaIsvip      int64    `protobuf:"varint,20,opt,name=ca_isvip,json=caIsvip,proto3" json:"ca_isvip,omitempty"`
-	CaFileExists bool     `protobuf:"varint,21,opt,name=ca_fileExists,json=caFileExists,proto3" json:"ca_fileExists,omitempty"`
-}
-
-func (x *SubscribeInfo) Reset() {
-	*x = SubscribeInfo{}
-	if protoimpl.UnsafeEnabled {
-		mi := &file_bxsubscribe_proto_msgTypes[3]
-		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
-		ms.StoreMessageInfo(mi)
-	}
-}
-
-func (x *SubscribeInfo) String() string {
-	return protoimpl.X.MessageStringOf(x)
-}
-
-func (*SubscribeInfo) ProtoMessage() {}
-
-func (x *SubscribeInfo) ProtoReflect() protoreflect.Message {
-	mi := &file_bxsubscribe_proto_msgTypes[3]
-	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 SubscribeInfo.ProtoReflect.Descriptor instead.
-func (*SubscribeInfo) Descriptor() ([]byte, []int) {
-	return file_bxsubscribe_proto_rawDescGZIP(), []int{3}
-}
-
-func (x *SubscribeInfo) GetXId() string {
-	if x != nil {
-		return x.XId
-	}
-	return ""
-}
-
-func (x *SubscribeInfo) GetTitle() string {
-	if x != nil {
-		return x.Title
-	}
-	return ""
-}
-
-func (x *SubscribeInfo) GetArea() string {
-	if x != nil {
-		return x.Area
-	}
-	return ""
-}
-
-func (x *SubscribeInfo) GetBuyerClass() string {
-	if x != nil {
-		return x.BuyerClass
-	}
-	return ""
-}
-
-func (x *SubscribeInfo) GetSubtype() string {
-	if x != nil {
-		return x.Subtype
-	}
-	return ""
-}
-
-func (x *SubscribeInfo) GetIndustry() string {
-	if x != nil {
-		return x.Industry
-	}
-	return ""
-}
-
-func (x *SubscribeInfo) GetPublishTime() int64 {
-	if x != nil {
-		return x.PublishTime
-	}
-	return 0
-}
-
-func (x *SubscribeInfo) GetCaIndex() int64 {
-	if x != nil {
-		return x.CaIndex
-	}
-	return 0
-}
-
-func (x *SubscribeInfo) GetCaDate() int64 {
-	if x != nil {
-		return x.CaDate
-	}
-	return 0
-}
-
-func (x *SubscribeInfo) GetCaIsvisit() int64 {
-	if x != nil {
-		return x.CaIsvisit
-	}
-	return 0
-}
-
-func (x *SubscribeInfo) GetCaType() int64 {
-	if x != nil {
-		return x.CaType
-	}
-	return 0
-}
-
-func (x *SubscribeInfo) GetMatchKeys() []string {
-	if x != nil {
-		return x.MatchKeys
-	}
-	return nil
-}
-
-func (x *SubscribeInfo) GetBudget() string {
-	if x != nil {
-		return x.Budget
-	}
-	return ""
-}
-
-func (x *SubscribeInfo) GetBidAmount() string {
-	if x != nil {
-		return x.BidAmount
-	}
-	return ""
-}
-
-func (x *SubscribeInfo) GetCollection() int64 {
-	if x != nil {
-		return x.Collection
-	}
-	return 0
-}
-
-func (x *SubscribeInfo) GetBuyer() string {
-	if x != nil {
-		return x.Buyer
-	}
-	return ""
-}
-
-func (x *SubscribeInfo) GetProjectName() string {
-	if x != nil {
-		return x.ProjectName
-	}
-	return ""
-}
-
-func (x *SubscribeInfo) GetWinner() string {
-	if x != nil {
-		return x.Winner
-	}
-	return ""
-}
-
-func (x *SubscribeInfo) GetBidOpenTime() string {
-	if x != nil {
-		return x.BidOpenTime
-	}
-	return ""
-}
-
-func (x *SubscribeInfo) GetCaIsvip() int64 {
-	if x != nil {
-		return x.CaIsvip
-	}
-	return 0
-}
-
-func (x *SubscribeInfo) GetCaFileExists() bool {
-	if x != nil {
-		return x.CaFileExists
-	}
-	return false
-}
-
-//
-type SomeInfoReq struct {
-	state         protoimpl.MessageState
-	sizeCache     protoimpl.SizeCache
-	unknownFields protoimpl.UnknownFields
-
-	AppId    string `protobuf:"bytes,1,opt,name=appId,proto3" json:"appId,omitempty"`
-	UserId   string `protobuf:"bytes,2,opt,name=userId,proto3" json:"userId,omitempty"`
-	UserType string `protobuf:"bytes,3,opt,name=userType,proto3" json:"userType,omitempty"`
-}
-
-func (x *SomeInfoReq) Reset() {
-	*x = SomeInfoReq{}
-	if protoimpl.UnsafeEnabled {
-		mi := &file_bxsubscribe_proto_msgTypes[4]
-		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
-		ms.StoreMessageInfo(mi)
-	}
-}
-
-func (x *SomeInfoReq) String() string {
-	return protoimpl.X.MessageStringOf(x)
-}
-
-func (*SomeInfoReq) ProtoMessage() {}
-
-func (x *SomeInfoReq) ProtoReflect() protoreflect.Message {
-	mi := &file_bxsubscribe_proto_msgTypes[4]
-	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 SomeInfoReq.ProtoReflect.Descriptor instead.
-func (*SomeInfoReq) Descriptor() ([]byte, []int) {
-	return file_bxsubscribe_proto_rawDescGZIP(), []int{4}
-}
-
-func (x *SomeInfoReq) GetAppId() string {
-	if x != nil {
-		return x.AppId
-	}
-	return ""
-}
-
-func (x *SomeInfoReq) GetUserId() string {
-	if x != nil {
-		return x.UserId
-	}
-	return ""
-}
-
-func (x *SomeInfoReq) GetUserType() string {
-	if x != nil {
-		return x.UserType
-	}
-	return ""
-}
-
-type SomeInfoResp struct {
-	state         protoimpl.MessageState
-	sizeCache     protoimpl.SizeCache
-	unknownFields protoimpl.UnknownFields
-
-	ErrCode int64     `protobuf:"varint,1,opt,name=err_code,json=errCode,proto3" json:"err_code,omitempty"`
-	ErrMsg  string    `protobuf:"bytes,2,opt,name=err_msg,json=errMsg,proto3" json:"err_msg,omitempty"`
-	Data    *SomeInfo `protobuf:"bytes,3,opt,name=data,proto3" json:"data,omitempty"`
-}
-
-func (x *SomeInfoResp) Reset() {
-	*x = SomeInfoResp{}
-	if protoimpl.UnsafeEnabled {
-		mi := &file_bxsubscribe_proto_msgTypes[5]
-		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
-		ms.StoreMessageInfo(mi)
-	}
-}
-
-func (x *SomeInfoResp) String() string {
-	return protoimpl.X.MessageStringOf(x)
-}
-
-func (*SomeInfoResp) ProtoMessage() {}
-
-func (x *SomeInfoResp) ProtoReflect() protoreflect.Message {
-	mi := &file_bxsubscribe_proto_msgTypes[5]
-	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 SomeInfoResp.ProtoReflect.Descriptor instead.
-func (*SomeInfoResp) Descriptor() ([]byte, []int) {
-	return file_bxsubscribe_proto_rawDescGZIP(), []int{5}
-}
-
-func (x *SomeInfoResp) GetErrCode() int64 {
-	if x != nil {
-		return x.ErrCode
-	}
-	return 0
-}
-
-func (x *SomeInfoResp) GetErrMsg() string {
-	if x != nil {
-		return x.ErrMsg
-	}
-	return ""
-}
-
-func (x *SomeInfoResp) GetData() *SomeInfo {
-	if x != nil {
-		return x.Data
-	}
-	return nil
-}
-
-type SomeInfo struct {
-	state         protoimpl.MessageState
-	sizeCache     protoimpl.SizeCache
-	unknownFields protoimpl.UnknownFields
-
-	HasKey      bool     `protobuf:"varint,1,opt,name=hasKey,proto3" json:"hasKey,omitempty"`           //免费用户和超级订阅是否有订阅词
-	IsInGuide   bool     `protobuf:"varint,2,opt,name=isInGuide,proto3" json:"isInGuide,omitempty"`     //是否进入向导
-	IsExpire    int64    `protobuf:"varint,3,opt,name=isExpire,proto3" json:"isExpire,omitempty"`       //超级订阅到期提醒
-	IsOnTail    int64    `protobuf:"varint,4,opt,name=isOnTail,proto3" json:"isOnTail,omitempty"`       //超级订阅试用状态
-	IsPassCount bool     `protobuf:"varint,5,opt,name=isPassCount,proto3" json:"isPassCount,omitempty"` //推送数量校验
-	OtherFlag   bool     `protobuf:"varint,6,opt,name=otherFlag,proto3" json:"otherFlag,omitempty"`     //首次用户推送查询“其他”
-	IsRead      bool     `protobuf:"varint,7,opt,name=isRead,proto3" json:"isRead,omitempty"`           //某个通知??是否已读
-	Industry    []string `protobuf:"bytes,8,rep,name=industry,proto3" json:"industry,omitempty"`        //会员订阅的行业
-	UserId      string   `protobuf:"bytes,9,opt,name=userId,proto3" json:"userId,omitempty"`            //用户id
-}
-
-func (x *SomeInfo) Reset() {
-	*x = SomeInfo{}
-	if protoimpl.UnsafeEnabled {
-		mi := &file_bxsubscribe_proto_msgTypes[6]
-		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
-		ms.StoreMessageInfo(mi)
-	}
-}
-
-func (x *SomeInfo) String() string {
-	return protoimpl.X.MessageStringOf(x)
-}
-
-func (*SomeInfo) ProtoMessage() {}
-
-func (x *SomeInfo) ProtoReflect() protoreflect.Message {
-	mi := &file_bxsubscribe_proto_msgTypes[6]
-	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 SomeInfo.ProtoReflect.Descriptor instead.
-func (*SomeInfo) Descriptor() ([]byte, []int) {
-	return file_bxsubscribe_proto_rawDescGZIP(), []int{6}
-}
-
-func (x *SomeInfo) GetHasKey() bool {
-	if x != nil {
-		return x.HasKey
-	}
-	return false
-}
-
-func (x *SomeInfo) GetIsInGuide() bool {
-	if x != nil {
-		return x.IsInGuide
-	}
-	return false
-}
-
-func (x *SomeInfo) GetIsExpire() int64 {
-	if x != nil {
-		return x.IsExpire
-	}
-	return 0
-}
-
-func (x *SomeInfo) GetIsOnTail() int64 {
-	if x != nil {
-		return x.IsOnTail
-	}
-	return 0
-}
-
-func (x *SomeInfo) GetIsPassCount() bool {
-	if x != nil {
-		return x.IsPassCount
-	}
-	return false
-}
-
-func (x *SomeInfo) GetOtherFlag() bool {
-	if x != nil {
-		return x.OtherFlag
-	}
-	return false
-}
-
-func (x *SomeInfo) GetIsRead() bool {
-	if x != nil {
-		return x.IsRead
-	}
-	return false
-}
-
-func (x *SomeInfo) GetIndustry() []string {
-	if x != nil {
-		return x.Industry
-	}
-	return nil
-}
-
-func (x *SomeInfo) GetUserId() string {
-	if x != nil {
-		return x.UserId
-	}
-	return ""
-}
-
-//
-type StatusResp 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"`
-	Status    int64  `protobuf:"varint,3,opt,name=status,proto3" json:"status,omitempty"`
-}
-
-func (x *StatusResp) Reset() {
-	*x = StatusResp{}
-	if protoimpl.UnsafeEnabled {
-		mi := &file_bxsubscribe_proto_msgTypes[7]
-		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
-		ms.StoreMessageInfo(mi)
-	}
-}
-
-func (x *StatusResp) String() string {
-	return protoimpl.X.MessageStringOf(x)
-}
-
-func (*StatusResp) ProtoMessage() {}
-
-func (x *StatusResp) ProtoReflect() protoreflect.Message {
-	mi := &file_bxsubscribe_proto_msgTypes[7]
-	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 StatusResp.ProtoReflect.Descriptor instead.
-func (*StatusResp) Descriptor() ([]byte, []int) {
-	return file_bxsubscribe_proto_rawDescGZIP(), []int{7}
-}
-
-func (x *StatusResp) GetErrorMsg() string {
-	if x != nil {
-		return x.ErrorMsg
-	}
-	return ""
-}
-
-func (x *StatusResp) GetErrorCode() int64 {
-	if x != nil {
-		return x.ErrorCode
-	}
-	return 0
-}
-
-func (x *StatusResp) GetStatus() int64 {
-	if x != nil {
-		return x.Status
-	}
-	return 0
-}
-
-type UpdateSubScribeInfoReq struct {
-	state         protoimpl.MessageState
-	sizeCache     protoimpl.SizeCache
-	unknownFields protoimpl.UnknownFields
-
-	Area            map[string]*CityList `protobuf:"bytes,1,rep,name=area,proto3" json:"area,omitempty" protobuf_key:"bytes,1,opt,name=key,proto3" protobuf_val:"bytes,2,opt,name=value,proto3"` //地区
-	Buyerclass      []string             `protobuf:"bytes,2,rep,name=buyerclass,proto3" json:"buyerclass,omitempty"`                                                                             //采购单位类型
-	Items           []*Items             `protobuf:"bytes,3,rep,name=items,proto3" json:"items,omitempty"`                                                                                       //关键词
-	Infotype        []string             `protobuf:"bytes,4,rep,name=infotype,proto3" json:"infotype,omitempty"`                                                                                 //信息类型
-	Matchway        string               `protobuf:"bytes,5,opt,name=matchway,proto3" json:"matchway,omitempty"`                                                                                 //匹配方式 1标题 2正文
-	Projectmatch    string               `protobuf:"bytes,6,opt,name=projectmatch,proto3" json:"projectmatch,omitempty"`                                                                         //项目匹配 1开始 0关闭
-	Ratemode        string               `protobuf:"bytes,7,opt,name=ratemode,proto3" json:"ratemode,omitempty"`                                                                                 // 1:实时推送,2:每天9点推送,3:每周推送,4:每月推送 5:每日推送两次
-	Apppush         string               `protobuf:"bytes,8,opt,name=apppush,proto3" json:"apppush,omitempty"`                                                                                   //app推送 1开启 0关闭
-	Mailpush        string               `protobuf:"bytes,9,opt,name=mailpush,proto3" json:"mailpush,omitempty"`                                                                                 //邮箱推送 1开启 0关闭
-	Mail            string               `protobuf:"bytes,10,opt,name=mail,proto3" json:"mail,omitempty"`                                                                                        //邮箱
-	Otherbuyerclass string               `protobuf:"bytes,11,opt,name=otherbuyerclass,proto3" json:"otherbuyerclass,omitempty"`                                                                  //匹配未分类类型 1匹配 0不匹配
-	UserId          string               `protobuf:"bytes,12,opt,name=userId,proto3" json:"userId,omitempty"`                                                                                    //用户id
-}
-
-func (x *UpdateSubScribeInfoReq) Reset() {
-	*x = UpdateSubScribeInfoReq{}
-	if protoimpl.UnsafeEnabled {
-		mi := &file_bxsubscribe_proto_msgTypes[8]
-		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
-		ms.StoreMessageInfo(mi)
-	}
-}
-
-func (x *UpdateSubScribeInfoReq) String() string {
-	return protoimpl.X.MessageStringOf(x)
-}
-
-func (*UpdateSubScribeInfoReq) ProtoMessage() {}
-
-func (x *UpdateSubScribeInfoReq) 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 UpdateSubScribeInfoReq.ProtoReflect.Descriptor instead.
-func (*UpdateSubScribeInfoReq) Descriptor() ([]byte, []int) {
-	return file_bxsubscribe_proto_rawDescGZIP(), []int{8}
-}
-
-func (x *UpdateSubScribeInfoReq) GetArea() map[string]*CityList {
-	if x != nil {
-		return x.Area
-	}
-	return nil
-}
-
-func (x *UpdateSubScribeInfoReq) GetBuyerclass() []string {
-	if x != nil {
-		return x.Buyerclass
-	}
-	return nil
-}
-
-func (x *UpdateSubScribeInfoReq) GetItems() []*Items {
-	if x != nil {
-		return x.Items
-	}
-	return nil
-}
-
-func (x *UpdateSubScribeInfoReq) GetInfotype() []string {
-	if x != nil {
-		return x.Infotype
-	}
-	return nil
-}
-
-func (x *UpdateSubScribeInfoReq) GetMatchway() string {
-	if x != nil {
-		return x.Matchway
-	}
-	return ""
-}
-
-func (x *UpdateSubScribeInfoReq) GetProjectmatch() string {
-	if x != nil {
-		return x.Projectmatch
-	}
-	return ""
-}
-
-func (x *UpdateSubScribeInfoReq) GetRatemode() string {
-	if x != nil {
-		return x.Ratemode
-	}
-	return ""
-}
-
-func (x *UpdateSubScribeInfoReq) GetApppush() string {
-	if x != nil {
-		return x.Apppush
-	}
-	return ""
-}
-
-func (x *UpdateSubScribeInfoReq) GetMailpush() string {
-	if x != nil {
-		return x.Mailpush
-	}
-	return ""
-}
-
-func (x *UpdateSubScribeInfoReq) GetMail() string {
-	if x != nil {
-		return x.Mail
-	}
-	return ""
-}
-
-func (x *UpdateSubScribeInfoReq) GetOtherbuyerclass() string {
-	if x != nil {
-		return x.Otherbuyerclass
-	}
-	return ""
-}
-
-func (x *UpdateSubScribeInfoReq) GetUserId() string {
-	if x != nil {
-		return x.UserId
-	}
-	return ""
-}
-
-//城市
-type CityList struct {
-	state         protoimpl.MessageState
-	sizeCache     protoimpl.SizeCache
-	unknownFields protoimpl.UnknownFields
-
-	City []string `protobuf:"bytes,1,rep,name=city,proto3" json:"city,omitempty"`
-}
-
-func (x *CityList) Reset() {
-	*x = CityList{}
-	if protoimpl.UnsafeEnabled {
-		mi := &file_bxsubscribe_proto_msgTypes[9]
-		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
-		ms.StoreMessageInfo(mi)
-	}
-}
-
-func (x *CityList) String() string {
-	return protoimpl.X.MessageStringOf(x)
-}
-
-func (*CityList) ProtoMessage() {}
-
-func (x *CityList) ProtoReflect() protoreflect.Message {
-	mi := &file_bxsubscribe_proto_msgTypes[9]
-	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 CityList.ProtoReflect.Descriptor instead.
-func (*CityList) Descriptor() ([]byte, []int) {
-	return file_bxsubscribe_proto_rawDescGZIP(), []int{9}
-}
-
-func (x *CityList) GetCity() []string {
-	if x != nil {
-		return x.City
-	}
-	return nil
-}
-
-//分类
-type Items struct {
-	state         protoimpl.MessageState
-	sizeCache     protoimpl.SizeCache
-	unknownFields protoimpl.UnknownFields
-
-	SItem      string  `protobuf:"bytes,1,opt,name=s_item,json=sItem,proto3" json:"s_item,omitempty"` //分类名称
-	UpdateTime int64   `protobuf:"varint,2,opt,name=updateTime,proto3" json:"updateTime,omitempty"`
-	AKey       []*Keys `protobuf:"bytes,3,rep,name=a_key,json=aKey,proto3" json:"a_key,omitempty"`
-}
-
-func (x *Items) Reset() {
-	*x = Items{}
-	if protoimpl.UnsafeEnabled {
-		mi := &file_bxsubscribe_proto_msgTypes[10]
-		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
-		ms.StoreMessageInfo(mi)
-	}
-}
-
-func (x *Items) String() string {
-	return protoimpl.X.MessageStringOf(x)
-}
-
-func (*Items) ProtoMessage() {}
-
-func (x *Items) ProtoReflect() protoreflect.Message {
-	mi := &file_bxsubscribe_proto_msgTypes[10]
-	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 Items.ProtoReflect.Descriptor instead.
-func (*Items) Descriptor() ([]byte, []int) {
-	return file_bxsubscribe_proto_rawDescGZIP(), []int{10}
-}
-
-func (x *Items) GetSItem() string {
-	if x != nil {
-		return x.SItem
-	}
-	return ""
-}
-
-func (x *Items) GetUpdateTime() int64 {
-	if x != nil {
-		return x.UpdateTime
-	}
-	return 0
-}
-
-func (x *Items) GetAKey() []*Keys {
-	if x != nil {
-		return x.AKey
-	}
-	return nil
-}
-
-//关键词
-type Keys struct {
-	state         protoimpl.MessageState
-	sizeCache     protoimpl.SizeCache
-	unknownFields protoimpl.UnknownFields
-
-	Key        []string `protobuf:"bytes,1,rep,name=key,proto3" json:"key,omitempty"`
-	Notkey     []string `protobuf:"bytes,2,rep,name=notkey,proto3" json:"notkey,omitempty"`
-	UpdateTime int64    `protobuf:"varint,3,opt,name=updateTime,proto3" json:"updateTime,omitempty"`
-	Matchway   int64    `protobuf:"varint,4,opt,name=matchway,proto3" json:"matchway,omitempty"`
-	AppendKey  []string `protobuf:"bytes,5,rep,name=appendKey,proto3" json:"appendKey,omitempty"`
-}
-
-func (x *Keys) Reset() {
-	*x = Keys{}
-	if protoimpl.UnsafeEnabled {
-		mi := &file_bxsubscribe_proto_msgTypes[11]
-		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
-		ms.StoreMessageInfo(mi)
-	}
-}
-
-func (x *Keys) String() string {
-	return protoimpl.X.MessageStringOf(x)
-}
-
-func (*Keys) ProtoMessage() {}
-
-func (x *Keys) ProtoReflect() protoreflect.Message {
-	mi := &file_bxsubscribe_proto_msgTypes[11]
-	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 Keys.ProtoReflect.Descriptor instead.
-func (*Keys) Descriptor() ([]byte, []int) {
-	return file_bxsubscribe_proto_rawDescGZIP(), []int{11}
-}
-
-func (x *Keys) GetKey() []string {
-	if x != nil {
-		return x.Key
-	}
-	return nil
-}
-
-func (x *Keys) GetNotkey() []string {
-	if x != nil {
-		return x.Notkey
-	}
-	return nil
-}
-
-func (x *Keys) GetUpdateTime() int64 {
-	if x != nil {
-		return x.UpdateTime
-	}
-	return 0
-}
-
-func (x *Keys) GetMatchway() int64 {
-	if x != nil {
-		return x.Matchway
-	}
-	return 0
-}
-
-func (x *Keys) GetAppendKey() []string {
-	if x != nil {
-		return x.AppendKey
-	}
-	return nil
-}
-
-var File_bxsubscribe_proto protoreflect.FileDescriptor
-
-var file_bxsubscribe_proto_rawDesc = []byte{
-	0x0a, 0x11, 0x62, 0x78, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x2e, 0x70, 0x72,
-	0x6f, 0x74, 0x6f, 0x12, 0x0b, 0x62, 0x78, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65,
-	0x22, 0xcf, 0x03, 0x0a, 0x11, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x49, 0x6e,
-	0x66, 0x6f, 0x73, 0x52, 0x65, 0x71, 0x12, 0x18, 0x0a, 0x07, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75,
-	0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x70, 0x61, 0x67, 0x65, 0x4e, 0x75, 0x6d,
-	0x12, 0x1a, 0x0a, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x18, 0x02, 0x20, 0x01,
-	0x28, 0x03, 0x52, 0x08, 0x70, 0x61, 0x67, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1e, 0x0a, 0x0a,
-	0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
-	0x52, 0x0a, 0x73, 0x65, 0x6c, 0x65, 0x63, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04,
-	0x61, 0x72, 0x65, 0x61, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61,
-	0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04,
-	0x63, 0x69, 0x74, 0x79, 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, 0x1e, 0x0a, 0x0a, 0x62, 0x75, 0x79, 0x65, 0x72, 0x43, 0x6c, 0x61, 0x73, 0x73, 0x18, 0x07,
-	0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x62, 0x75, 0x79, 0x65, 0x72, 0x43, 0x6c, 0x61, 0x73, 0x73,
-	0x12, 0x1a, 0x0a, 0x08, 0x6b, 0x65, 0x79, 0x57, 0x6f, 0x72, 0x64, 0x73, 0x18, 0x08, 0x20, 0x01,
-	0x28, 0x09, 0x52, 0x08, 0x6b, 0x65, 0x79, 0x57, 0x6f, 0x72, 0x64, 0x73, 0x12, 0x18, 0x0a, 0x07,
-	0x73, 0x75, 0x62, 0x74, 0x79, 0x70, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73,
-	0x75, 0x62, 0x74, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x75, 0x73, 0x65, 0x72, 0x54, 0x79,
-	0x70, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x75, 0x73, 0x65, 0x72, 0x54, 0x79,
-	0x70, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x0b, 0x20, 0x01,
-	0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x65, 0x6e,
-	0x74, 0x49, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x65, 0x6e, 0x74, 0x49, 0x64,
-	0x12, 0x14, 0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52,
-	0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x18,
-	0x0e, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x12, 0x1e, 0x0a, 0x0a,
-	0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09,
-	0x52, 0x0a, 0x66, 0x69, 0x6c, 0x65, 0x45, 0x78, 0x69, 0x73, 0x74, 0x73, 0x12, 0x1c, 0x0a, 0x09,
-	0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52,
-	0x09, 0x65, 0x6e, 0x74, 0x55, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x64, 0x65,
-	0x70, 0x74, 0x49, 0x64, 0x18, 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x64, 0x65, 0x70, 0x74,
-	0x49, 0x64, 0x22, 0x78, 0x0a, 0x12, 0x53, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x49,
-	0x6e, 0x66, 0x6f, 0x73, 0x52, 0x65, 0x73, 0x70, 0x12, 0x19, 0x0a, 0x08, 0x65, 0x72, 0x72, 0x5f,
-	0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x65, 0x72, 0x72, 0x43,
-	0x6f, 0x64, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x65, 0x72, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02,
-	0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x65, 0x72, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x2e, 0x0a, 0x04,
-	0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x62, 0x78, 0x73,
-	0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69,
-	0x62, 0x65, 0x44, 0x61, 0x74, 0x61, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x77, 0x0a, 0x0d,
-	0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x44, 0x61, 0x74, 0x61, 0x12, 0x14, 0x0a,
-	0x05, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x63, 0x6f,
-	0x75, 0x6e, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x68, 0x61, 0x73, 0x4e, 0x65, 0x78, 0x74, 0x50, 0x61,
-	0x67, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x0b, 0x68, 0x61, 0x73, 0x4e, 0x65, 0x78,
-	0x74, 0x50, 0x61, 0x67, 0x65, 0x12, 0x2e, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20,
-	0x03, 0x28, 0x0b, 0x32, 0x1a, 0x2e, 0x62, 0x78, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62,
-	0x65, 0x2e, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52,
-	0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 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, 0x57, 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, 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, 0x84, 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, 0x1c, 0x0a, 0x09, 0x69, 0x73, 0x49,
-	0x6e, 0x47, 0x75, 0x69, 0x64, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73,
-	0x49, 0x6e, 0x47, 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, 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, 0xf8,
-	0x01, 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, 0x42, 0x0f, 0x5a, 0x0d, 0x2e, 0x2f, 0x62,
-	0x78, 0x73, 0x75, 0x62, 0x73, 0x63, 0x72, 0x69, 0x62, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
-	0x6f, 0x33,
-}
-
-var (
-	file_bxsubscribe_proto_rawDescOnce sync.Once
-	file_bxsubscribe_proto_rawDescData = file_bxsubscribe_proto_rawDesc
-)
-
-func file_bxsubscribe_proto_rawDescGZIP() []byte {
-	file_bxsubscribe_proto_rawDescOnce.Do(func() {
-		file_bxsubscribe_proto_rawDescData = protoimpl.X.CompressGZIP(file_bxsubscribe_proto_rawDescData)
-	})
-	return file_bxsubscribe_proto_rawDescData
-}
-
-var file_bxsubscribe_proto_msgTypes = make([]protoimpl.MessageInfo, 13)
-var file_bxsubscribe_proto_goTypes = []interface{}{
-	(*SubscribeInfosReq)(nil),      // 0: bxsubscribe.SubscribeInfosReq
-	(*SubscribeInfosResp)(nil),     // 1: bxsubscribe.SubscribeInfosResp
-	(*SubscribeData)(nil),          // 2: bxsubscribe.subscribeData
-	(*SubscribeInfo)(nil),          // 3: bxsubscribe.subscribeInfo
-	(*SomeInfoReq)(nil),            // 4: bxsubscribe.SomeInfoReq
-	(*SomeInfoResp)(nil),           // 5: bxsubscribe.SomeInfoResp
-	(*SomeInfo)(nil),               // 6: bxsubscribe.SomeInfo
-	(*StatusResp)(nil),             // 7: bxsubscribe.StatusResp
-	(*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
-}
-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
-	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
-	9,  // 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
-	8,  // 9: bxsubscribe.Bxsubscribe.UpdateSubScribeInfo:input_type -> bxsubscribe.UpdateSubScribeInfoReq
-	1,  // 10: bxsubscribe.Bxsubscribe.GetSubList:output_type -> bxsubscribe.SubscribeInfosResp
-	5,  // 11: bxsubscribe.Bxsubscribe.GetSubSomeInfo:output_type -> bxsubscribe.SomeInfoResp
-	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
-	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
-}
-
-func init() { file_bxsubscribe_proto_init() }
-func file_bxsubscribe_proto_init() {
-	if File_bxsubscribe_proto != nil {
-		return
-	}
-	if !protoimpl.UnsafeEnabled {
-		file_bxsubscribe_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
-			switch v := v.(*SubscribeInfosReq); i {
-			case 0:
-				return &v.state
-			case 1:
-				return &v.sizeCache
-			case 2:
-				return &v.unknownFields
-			default:
-				return nil
-			}
-		}
-		file_bxsubscribe_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
-			switch v := v.(*SubscribeInfosResp); i {
-			case 0:
-				return &v.state
-			case 1:
-				return &v.sizeCache
-			case 2:
-				return &v.unknownFields
-			default:
-				return nil
-			}
-		}
-		file_bxsubscribe_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
-			switch v := v.(*SubscribeData); i {
-			case 0:
-				return &v.state
-			case 1:
-				return &v.sizeCache
-			case 2:
-				return &v.unknownFields
-			default:
-				return nil
-			}
-		}
-		file_bxsubscribe_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
-			switch v := v.(*SubscribeInfo); i {
-			case 0:
-				return &v.state
-			case 1:
-				return &v.sizeCache
-			case 2:
-				return &v.unknownFields
-			default:
-				return nil
-			}
-		}
-		file_bxsubscribe_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
-			switch v := v.(*SomeInfoReq); i {
-			case 0:
-				return &v.state
-			case 1:
-				return &v.sizeCache
-			case 2:
-				return &v.unknownFields
-			default:
-				return nil
-			}
-		}
-		file_bxsubscribe_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
-			switch v := v.(*SomeInfoResp); i {
-			case 0:
-				return &v.state
-			case 1:
-				return &v.sizeCache
-			case 2:
-				return &v.unknownFields
-			default:
-				return nil
-			}
-		}
-		file_bxsubscribe_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
-			switch v := v.(*SomeInfo); i {
-			case 0:
-				return &v.state
-			case 1:
-				return &v.sizeCache
-			case 2:
-				return &v.unknownFields
-			default:
-				return nil
-			}
-		}
-		file_bxsubscribe_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
-			switch v := v.(*StatusResp); i {
-			case 0:
-				return &v.state
-			case 1:
-				return &v.sizeCache
-			case 2:
-				return &v.unknownFields
-			default:
-				return nil
-			}
-		}
-		file_bxsubscribe_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
-			switch v := v.(*UpdateSubScribeInfoReq); i {
-			case 0:
-				return &v.state
-			case 1:
-				return &v.sizeCache
-			case 2:
-				return &v.unknownFields
-			default:
-				return nil
-			}
-		}
-		file_bxsubscribe_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
-			switch v := v.(*CityList); i {
-			case 0:
-				return &v.state
-			case 1:
-				return &v.sizeCache
-			case 2:
-				return &v.unknownFields
-			default:
-				return nil
-			}
-		}
-		file_bxsubscribe_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
-			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[11].Exporter = func(v interface{}, i int) interface{} {
-			switch v := v.(*Keys); i {
-			case 0:
-				return &v.state
-			case 1:
-				return &v.sizeCache
-			case 2:
-				return &v.unknownFields
-			default:
-				return nil
-			}
-		}
-	}
-	type x struct{}
-	out := protoimpl.TypeBuilder{
-		File: protoimpl.DescBuilder{
-			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
-			RawDescriptor: file_bxsubscribe_proto_rawDesc,
-			NumEnums:      0,
-			NumMessages:   13,
-			NumExtensions: 0,
-			NumServices:   1,
-		},
-		GoTypes:           file_bxsubscribe_proto_goTypes,
-		DependencyIndexes: file_bxsubscribe_proto_depIdxs,
-		MessageInfos:      file_bxsubscribe_proto_msgTypes,
-	}.Build()
-	File_bxsubscribe_proto = out.File
-	file_bxsubscribe_proto_rawDesc = nil
-	file_bxsubscribe_proto_goTypes = nil
-	file_bxsubscribe_proto_depIdxs = nil
-}

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

@@ -1,183 +0,0 @@
-// Code generated by protoc-gen-go-grpc. DO NOT EDIT.
-// versions:
-// - protoc-gen-go-grpc v1.2.0
-// - protoc             v3.19.4
-// source: bxsubscribe.proto
-
-package bxsubscribe
-
-import (
-	context "context"
-	grpc "google.golang.org/grpc"
-	codes "google.golang.org/grpc/codes"
-	status "google.golang.org/grpc/status"
-)
-
-// This is a compile-time assertion to ensure that this generated file
-// is compatible with the grpc package it is being compiled against.
-// Requires gRPC-Go v1.32.0 or later.
-const _ = grpc.SupportPackageIsVersion7
-
-// BxsubscribeClient is the client API for Bxsubscribe service.
-//
-// 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 {
-	//获取订阅推送列表
-	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)
-}
-
-type bxsubscribeClient struct {
-	cc grpc.ClientConnInterface
-}
-
-func NewBxsubscribeClient(cc grpc.ClientConnInterface) BxsubscribeClient {
-	return &bxsubscribeClient{cc}
-}
-
-func (c *bxsubscribeClient) GetSubList(ctx context.Context, in *SubscribeInfosReq, opts ...grpc.CallOption) (*SubscribeInfosResp, error) {
-	out := new(SubscribeInfosResp)
-	err := c.cc.Invoke(ctx, "/bxsubscribe.Bxsubscribe/GetSubList", in, out, opts...)
-	if err != nil {
-		return nil, err
-	}
-	return out, nil
-}
-
-func (c *bxsubscribeClient) GetSubSomeInfo(ctx context.Context, in *SomeInfoReq, opts ...grpc.CallOption) (*SomeInfoResp, error) {
-	out := new(SomeInfoResp)
-	err := c.cc.Invoke(ctx, "/bxsubscribe.Bxsubscribe/GetSubSomeInfo", in, out, opts...)
-	if err != nil {
-		return nil, err
-	}
-	return out, nil
-}
-
-func (c *bxsubscribeClient) UpdateSubScribeInfo(ctx context.Context, in *UpdateSubScribeInfoReq, opts ...grpc.CallOption) (*StatusResp, error) {
-	out := new(StatusResp)
-	err := c.cc.Invoke(ctx, "/bxsubscribe.Bxsubscribe/UpdateSubScribeInfo", in, out, opts...)
-	if err != nil {
-		return nil, err
-	}
-	return out, nil
-}
-
-// BxsubscribeServer is the server API for Bxsubscribe service.
-// All implementations must embed UnimplementedBxsubscribeServer
-// for forward compatibility
-type BxsubscribeServer interface {
-	//获取订阅推送列表
-	GetSubList(context.Context, *SubscribeInfosReq) (*SubscribeInfosResp, error)
-	//获取订阅推送相关信息
-	GetSubSomeInfo(context.Context, *SomeInfoReq) (*SomeInfoResp, error)
-	//修改订阅信息接口
-	UpdateSubScribeInfo(context.Context, *UpdateSubScribeInfoReq) (*StatusResp, error)
-	mustEmbedUnimplementedBxsubscribeServer()
-}
-
-// UnimplementedBxsubscribeServer must be embedded to have forward compatible implementations.
-type UnimplementedBxsubscribeServer struct {
-}
-
-func (UnimplementedBxsubscribeServer) GetSubList(context.Context, *SubscribeInfosReq) (*SubscribeInfosResp, error) {
-	return nil, status.Errorf(codes.Unimplemented, "method GetSubList not implemented")
-}
-func (UnimplementedBxsubscribeServer) GetSubSomeInfo(context.Context, *SomeInfoReq) (*SomeInfoResp, error) {
-	return nil, status.Errorf(codes.Unimplemented, "method GetSubSomeInfo not implemented")
-}
-func (UnimplementedBxsubscribeServer) UpdateSubScribeInfo(context.Context, *UpdateSubScribeInfoReq) (*StatusResp, error) {
-	return nil, status.Errorf(codes.Unimplemented, "method UpdateSubScribeInfo not implemented")
-}
-func (UnimplementedBxsubscribeServer) mustEmbedUnimplementedBxsubscribeServer() {}
-
-// UnsafeBxsubscribeServer may be embedded to opt out of forward compatibility for this service.
-// Use of this interface is not recommended, as added methods to BxsubscribeServer will
-// result in compilation errors.
-type UnsafeBxsubscribeServer interface {
-	mustEmbedUnimplementedBxsubscribeServer()
-}
-
-func RegisterBxsubscribeServer(s grpc.ServiceRegistrar, srv BxsubscribeServer) {
-	s.RegisterService(&Bxsubscribe_ServiceDesc, srv)
-}
-
-func _Bxsubscribe_GetSubList_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).GetSubList(ctx, in)
-	}
-	info := &grpc.UnaryServerInfo{
-		Server:     srv,
-		FullMethod: "/bxsubscribe.Bxsubscribe/GetSubList",
-	}
-	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
-		return srv.(BxsubscribeServer).GetSubList(ctx, req.(*SubscribeInfosReq))
-	}
-	return interceptor(ctx, in, info, handler)
-}
-
-func _Bxsubscribe_GetSubSomeInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
-	in := new(SomeInfoReq)
-	if err := dec(in); err != nil {
-		return nil, err
-	}
-	if interceptor == nil {
-		return srv.(BxsubscribeServer).GetSubSomeInfo(ctx, in)
-	}
-	info := &grpc.UnaryServerInfo{
-		Server:     srv,
-		FullMethod: "/bxsubscribe.Bxsubscribe/GetSubSomeInfo",
-	}
-	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
-		return srv.(BxsubscribeServer).GetSubSomeInfo(ctx, req.(*SomeInfoReq))
-	}
-	return interceptor(ctx, in, info, handler)
-}
-
-func _Bxsubscribe_UpdateSubScribeInfo_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
-	in := new(UpdateSubScribeInfoReq)
-	if err := dec(in); err != nil {
-		return nil, err
-	}
-	if interceptor == nil {
-		return srv.(BxsubscribeServer).UpdateSubScribeInfo(ctx, in)
-	}
-	info := &grpc.UnaryServerInfo{
-		Server:     srv,
-		FullMethod: "/bxsubscribe.Bxsubscribe/UpdateSubScribeInfo",
-	}
-	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
-		return srv.(BxsubscribeServer).UpdateSubScribeInfo(ctx, req.(*UpdateSubScribeInfoReq))
-	}
-	return interceptor(ctx, in, info, handler)
-}
-
-// 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)
-var Bxsubscribe_ServiceDesc = grpc.ServiceDesc{
-	ServiceName: "bxsubscribe.Bxsubscribe",
-	HandlerType: (*BxsubscribeServer)(nil),
-	Methods: []grpc.MethodDesc{
-		{
-			MethodName: "GetSubList",
-			Handler:    _Bxsubscribe_GetSubList_Handler,
-		},
-		{
-			MethodName: "GetSubSomeInfo",
-			Handler:    _Bxsubscribe_GetSubSomeInfo_Handler,
-		},
-		{
-			MethodName: "UpdateSubScribeInfo",
-			Handler:    _Bxsubscribe_UpdateSubScribeInfo_Handler,
-		},
-	},
-	Streams:  []grpc.StreamDesc{},
-	Metadata: "bxsubscribe.proto",
-}

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