Browse Source

fenzhihebing

123456 2 years ago
parent
commit
29d3ec5a3e
37 changed files with 2363 additions and 20 deletions
  1. 7 1
      jyBXBase/README.md
  2. BIN
      jyBXBase/api/api.exe
  3. 9 0
      jyBXBase/api/bxbase.api
  4. 28 0
      jyBXBase/api/internal/handler/includedHandler.go
  5. 5 0
      jyBXBase/api/internal/handler/routes.go
  6. 74 0
      jyBXBase/api/internal/logic/includedLogic.go
  7. 4 0
      jyBXBase/api/internal/types/types.go
  8. 29 0
      jyBXBase/api/logs/access.log
  9. 0 0
      jyBXBase/api/logs/error.log
  10. 13 0
      jyBXBase/api/logs/error.log-2022-10-12
  11. 0 0
      jyBXBase/api/logs/severe.log
  12. 5 0
      jyBXBase/api/logs/slow.log
  13. 0 0
      jyBXBase/api/logs/stat.log
  14. 471 0
      jyBXBase/api/logs/stat.log-2022-10-12
  15. 8 0
      jyBXBase/entity/db.go
  16. 5 3
      jyBXBase/rpc/bxbase.go
  17. 39 0
      jyBXBase/rpc/bxbase.proto
  18. 10 0
      jyBXBase/rpc/bxbase/bxbase.go
  19. 1 0
      jyBXBase/rpc/etc/bxbase.yaml
  20. 7 0
      jyBXBase/rpc/etc/db.yaml
  21. 91 0
      jyBXBase/rpc/init/db.go
  22. 3 1
      jyBXBase/rpc/internal/config/config.go
  23. 82 0
      jyBXBase/rpc/internal/logic/includedlogic.go
  24. 6 0
      jyBXBase/rpc/internal/server/bxbaseserver.go
  25. 74 0
      jyBXBase/rpc/logs/access.log
  26. 0 0
      jyBXBase/rpc/logs/error.log
  27. 0 0
      jyBXBase/rpc/logs/error.log-2022-10-12
  28. 0 0
      jyBXBase/rpc/logs/severe.log
  29. 7 0
      jyBXBase/rpc/logs/slow.log
  30. 0 0
      jyBXBase/rpc/logs/stat.log
  31. 538 0
      jyBXBase/rpc/logs/stat.log-2022-10-12
  32. 1 0
      jyBXBase/rpc/model/coverage
  33. 180 0
      jyBXBase/rpc/model/included.go
  34. 89 0
      jyBXBase/rpc/model/included_test.go
  35. BIN
      jyBXBase/rpc/rpc.exe
  36. 535 15
      jyBXBase/rpc/type/bxbase/bxbase.pb.go
  37. 42 0
      jyBXBase/rpc/type/bxbase/bxbase_grpc.pb.go

+ 7 - 1
jyBXBase/README.md

@@ -14,4 +14,10 @@ https://yapi.jydev.jianyu360.com/project/63/interface/api/cat_112
 2、招标信息标签相关接口
 3、招标信息搜索条件筛选相关接口
 4、移动端首页最新标讯接口
-```
+```
+
+
+ goctl api go -api bxbase.api -dir . -style goZero 
+ 
+ 
+ goctl rpc protoc bxbase.proto --go_out=./type --go-grpc_out=./type --zrpc_out=.

BIN
jyBXBase/api/api.exe


+ 9 - 0
jyBXBase/api/bxbase.api

@@ -103,6 +103,11 @@ type (
 		Err_msg  string      `json:"error_msg"`
 		Data     interface{} `json:"data"`
 	}
+
+	//收录情况入参
+	IncludedReq {
+		AppId string `header:"appId,default=10000"`
+	}
 )
 
 service bxbase-api {
@@ -141,4 +146,8 @@ service bxbase-api {
 	//首页最新招标信息
 	@handler NewestBidding
 	post /jybx/base/newest (NewestReq) returns(CommonRes)
+	
+	@doc "收录情况"
+	@handler Included
+	post /jybx/base/included (IncludedReq) returns(CommonRes)
 }

+ 28 - 0
jyBXBase/api/internal/handler/includedHandler.go

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

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

@@ -67,6 +67,11 @@ func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
 				Path:    "/jybx/base/newest",
 				Handler: NewestBiddingHandler(serverCtx),
 			},
+			{
+				Method:  http.MethodPost,
+				Path:    "/jybx/base/included",
+				Handler: IncludedHandler(serverCtx),
+			},
 		},
 	)
 }

+ 74 - 0
jyBXBase/api/internal/logic/includedLogic.go

@@ -0,0 +1,74 @@
+package logic
+
+import (
+	"context"
+	"jyBXBase/rpc/bxbase"
+
+	"jyBXBase/api/internal/svc"
+	"jyBXBase/api/internal/types"
+
+	"app.yhyue.com/moapp/jybase/common"
+
+	"github.com/zeromicro/go-zero/core/logx"
+)
+
+type IncludedLogic struct {
+	logx.Logger
+	ctx    context.Context
+	svcCtx *svc.ServiceContext
+}
+
+func NewIncludedLogic(ctx context.Context, svcCtx *svc.ServiceContext) *IncludedLogic {
+	return &IncludedLogic{
+		Logger: logx.WithContext(ctx),
+		ctx:    ctx,
+		svcCtx: svcCtx,
+	}
+}
+
+func (l *IncludedLogic) Included(req *types.IncludedReq) (resp *types.CommonRes, err error) {
+	res, err0 := l.svcCtx.Bxbase.Included(l.ctx, &bxbase.AppIdReq{
+		AppId: req.AppId,
+	})
+	if err0 != nil {
+		return &types.CommonRes{
+			Err_code: -1,
+			Err_msg:  "错误",
+			Data:     nil,
+		}, nil
+	}
+	return &types.CommonRes{
+		Err_code: common.IntAll(res.ErrorCode),
+		Err_msg:  res.ErrorMsg,
+		Data: map[string]interface{}{
+			"year":                    res.Year,
+			"month":                   res.Month,
+			"day":                     res.Day,
+			"bid":                     res.Bid,
+			"bidUnit":                 res.BidUnit,
+			"bidUnitAppend":           res.BidUnitAppend,
+			"project":                 res.Project,
+			"projectUnit":             res.ProjectUnit,
+			"projectUnitAppend":       res.ProjectUnitAppend,
+			"ent":                     res.Ent,
+			"entUnit":                 res.EntUnit,
+			"entUnitAppend":           res.EntUnitAppend,
+			"buyer":                   res.Buyer,
+			"buyerUnit":               res.BuyerUnit,
+			"buyerUnitAppend":         res.BuyerUnitAppend,
+			"bidDayUpdate":            res.BidDayUpdate,
+			"bidDayUpdateUnit":        res.BidDayUpdateUnit,
+			"bidDayUpdateUnitAppend":  res.BidDayUpdateUnitAppend,
+			"bidField":                res.BidField,
+			"bidFieldUnit":            res.BidFieldUnit,
+			"bidFieldUnitAppend":      res.BidFieldUnitAppend,
+			"fieldAccuracy":           res.FieldAccuracy,
+			"fieldAccuracyUnit":       res.FieldAccuracyUnit,
+			"fieldAccuracyUnitAppend": res.FieldAccuracyUnitAppend,
+			"push":                    res.Push,
+			"pushUnit":                res.PushUnit,
+			"pushUnitAppend":          res.ProjectUnitAppend,
+		},
+	}, nil
+	return
+}

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

@@ -94,3 +94,7 @@ type CommonRes struct {
 	Err_msg  string      `json:"error_msg"`
 	Data     interface{} `json:"data"`
 }
+
+type IncludedReq struct {
+	AppId string `header:"appId,default=10000"`
+}

+ 29 - 0
jyBXBase/api/logs/access.log

@@ -0,0 +1,29 @@
+{"@timestamp":"2022-10-12T15:09:50.262+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T15:09:50.262+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T15:09:50.262+08:00","level":"info","content":"--初始化 mongodb log--"}
+{"@timestamp":"2022-10-12T15:09:50.263+08:00","level":"info","content":"Starting pprof agent at 0.0.0.0:6060"}
+{"@timestamp":"2022-10-12T15:12:07.884+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T15:12:07.884+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T15:12:07.885+08:00","level":"info","content":"--初始化 mongodb log--"}
+{"@timestamp":"2022-10-12T15:12:07.885+08:00","level":"info","content":"Starting pprof agent at 0.0.0.0:6060"}
+{"@timestamp":"2022-10-12T15:12:20.453+08:00","level":"info","duration":"8011.3ms","content":"fail - discov:/127.0.0.1:2379/bxbase.rpc/bxcol.bxbase/Included - AppId:\"10000\" - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"b838479c7559655eb5f9f33b8562d74f","span":"36b300336f03c13c"}
+{"@timestamp":"2022-10-12T15:13:32.947+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T15:13:32.947+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T15:13:32.947+08:00","level":"info","content":"--初始化 mongodb log--"}
+{"@timestamp":"2022-10-12T15:13:32.948+08:00","level":"info","content":"Starting pprof agent at 0.0.0.0:6060"}
+{"@timestamp":"2022-10-12T15:13:42.447+08:00","level":"info","duration":"8014.3ms","content":"fail - discov:/127.0.0.1:2379/bxbase.rpc/bxcol.bxbase/Included - AppId:\"10000\" - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"fcbc0621e50ac9a57634a1903d6a801f","span":"cdd644e0384c6ea2"}
+{"@timestamp":"2022-10-12T15:16:20.756+08:00","level":"info","duration":"8003.0ms","content":"fail - discov:/127.0.0.1:2379/bxbase.rpc/bxcol.bxbase/Included - AppId:\"10000\" - rpc error: code = DeadlineExceeded desc = context deadline exceeded","trace":"95c39a7a4bcc1cceebdba84e7a8cf7d5","span":"70c294037cd8576b"}
+{"@timestamp":"2022-10-12T15:16:22.600+08:00","level":"info","duration":"10.7ms","content":"[HTTP] POST - 200 - /jybx/base/newest - 127.0.0.1:51568 - PostmanRuntime/7.26.8","trace":"13ee388d6c926a58faab32872da8eab5","span":"444f070cda85779e"}
+{"@timestamp":"2022-10-12T15:21:59.035+08:00","level":"info","duration":"5013.6ms","content":"[HTTP] POST - 499 - /jybx/base/included - 127.0.0.1:51568 - PostmanRuntime/7.26.8","trace":"7b16544802dc85d243250330dea14ddf","span":"2c96eca37a326160"}
+{"@timestamp":"2022-10-12T15:21:59.035+08:00","level":"info","duration":"5013.6ms","content":"fail - discov:/127.0.0.1:2379/bxbase.rpc/bxcol.bxbase/Included - AppId:\"10000\" - rpc error: code = Canceled desc = context canceled","trace":"7b16544802dc85d243250330dea14ddf","span":"73a5379f00878686"}
+{"@timestamp":"2022-10-12T15:22:42.992+08:00","level":"info","duration":"3109.2ms","content":"[HTTP] POST - 499 - /jybx/base/included - 127.0.0.1:53094 - PostmanRuntime/7.26.8","trace":"6955dc01218152005557b14bc06e57de","span":"905410476ac4eceb"}
+{"@timestamp":"2022-10-12T15:22:42.993+08:00","level":"info","duration":"3110.1ms","content":"fail - discov:/127.0.0.1:2379/bxbase.rpc/bxcol.bxbase/Included - AppId:\"10000\" - rpc error: code = Canceled desc = context canceled","trace":"6955dc01218152005557b14bc06e57de","span":"d541b3dcf86646fe"}
+{"@timestamp":"2022-10-12T15:23:56.773+08:00","level":"info","duration":"15.1ms","content":"[HTTP] POST - 200 - /jybx/base/included - 127.0.0.1:53267 - PostmanRuntime/7.26.8","trace":"9bab1a31f78fc2c785bf0ebf0b18f279","span":"bd08c64873236500"}
+{"@timestamp":"2022-10-12T15:40:48.242+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T15:40:48.242+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T15:40:48.243+08:00","level":"info","content":"--初始化 mongodb log--"}
+{"@timestamp":"2022-10-12T15:40:48.243+08:00","level":"info","content":"Starting pprof agent at 0.0.0.0:6060"}
+{"@timestamp":"2022-10-12T15:40:51.877+08:00","level":"info","duration":"14.3ms","content":"[HTTP] POST - 200 - /jybx/base/included - 127.0.0.1:55934 - PostmanRuntime/7.26.8","trace":"e1b5149190eb478e5c83fe3165e7e86d","span":"59b2f0ce15a17601"}
+{"@timestamp":"2022-10-12T15:42:57.734+08:00","level":"info","duration":"13.3ms","content":"[HTTP] POST - 200 - /jybx/base/included - 127.0.0.1:55934 - PostmanRuntime/7.26.8","trace":"90f2eea92ebefd97a4f729a17c91beee","span":"b1983d71c917a998"}
+{"@timestamp":"2022-10-12T17:11:57.412+08:00","level":"info","duration":"12.9ms","content":"[HTTP] POST - 200 - /jybx/base/included - 127.0.0.1:55934 - PostmanRuntime/7.26.8","trace":"7f2f93494b914f2d8baab86b240f952e","span":"e3668b9468cf2d21"}
+{"@timestamp":"2022-10-12T17:13:36.047+08:00","level":"info","duration":"10.7ms","content":"[HTTP] POST - 200 - /jybx/base/included - 127.0.0.1:55934 - PostmanRuntime/7.26.8","trace":"27d8b28aef5acee0a3a1ceb6050e7771","span":"12caf523988bf255"}

+ 0 - 0
jyBXBase/api/logs/error.log


+ 13 - 0
jyBXBase/api/logs/error.log-2022-10-12

@@ -0,0 +1,13 @@
+{"@timestamp":"2022-10-12T15:12:20.453+08:00","level":"error","duration":"8011.9ms","content":"loghandler.go:191 [HTTP] POST - 503 - /jybx/base/included - 127.0.0.1:51309 - PostmanRuntime/7.26.8\nPOST /jybx/base/included HTTP/1.1\r\nHost: 127.0.0.1:8006\r\nAccept: */*\r\nAccept-Encoding: gzip, deflate, br\r\nAppid: 10000\r\nConnection: keep-alive\r\nContent-Length: 60\r\nContent-Type: application/json\r\nNewuserid: 123\r\nPostman-Token: e57980f1-fa4d-4bd5-930c-c2f6293117af\r\nUser-Agent: PostmanRuntime/7.26.8\r\nUserid: 6103bb722abfa5f4d81bb1d1\r\n\r\n{\r\n    \"area\":{\r\n\"北京\":[],\r\n\"河南\":[\"濮阳\"]\r\n    }\r\n}","trace":"b838479c7559655eb5f9f33b8562d74f","span":"4db794a5b4298fd1"}
+{"@timestamp":"2022-10-12T15:13:42.447+08:00","level":"error","duration":"8014.8ms","content":"loghandler.go:191 [HTTP] POST - 503 - /jybx/base/included - 127.0.0.1:51568 - PostmanRuntime/7.26.8\nPOST /jybx/base/included HTTP/1.1\r\nHost: 127.0.0.1:8006\r\nAccept: */*\r\nAccept-Encoding: gzip, deflate, br\r\nAppid: 10000\r\nConnection: keep-alive\r\nContent-Length: 60\r\nContent-Type: application/json\r\nNewuserid: 123\r\nPostman-Token: 2ca30c78-7dd2-46de-8225-a29b517b44b3\r\nUser-Agent: PostmanRuntime/7.26.8\r\nUserid: 6103bb722abfa5f4d81bb1d1\r\n\r\n{\r\n    \"area\":{\r\n\"北京\":[],\r\n\"河南\":[\"濮阳\"]\r\n    }\r\n}","trace":"fcbc0621e50ac9a57634a1903d6a801f","span":"323477410a29a212"}
+{"@timestamp":"2022-10-12T15:16:20.756+08:00","level":"error","duration":"8003.0ms","content":"loghandler.go:191 [HTTP] POST - 503 - /jybx/base/included - 127.0.0.1:51568 - PostmanRuntime/7.26.8\nPOST /jybx/base/included HTTP/1.1\r\nHost: 127.0.0.1:8006\r\nAccept: */*\r\nAccept-Encoding: gzip, deflate, br\r\nAppid: 10000\r\nConnection: keep-alive\r\nContent-Length: 0\r\nNewuserid: 123\r\nPostman-Token: 9d4ff4cf-2a80-4ee6-830d-cca499dba262\r\nUser-Agent: PostmanRuntime/7.26.8\r\nUserid: 6103bb722abfa5f4d81bb1d1\r\n\r\n","trace":"95c39a7a4bcc1cceebdba84e7a8cf7d5","span":"f98643e9e73305fd"}
+{"@timestamp":"2022-10-12T15:21:49.195+08:00","level":"error","content":"discovbuilder.go:34 bad resolver state"}
+{"@timestamp":"2022-10-12T15:22:35.745+08:00","level":"error","content":"discovbuilder.go:34 bad resolver state"}
+{"@timestamp":"2022-10-12T15:23:20.320+08:00","level":"error","content":"discovbuilder.go:34 bad resolver state"}
+{"@timestamp":"2022-10-12T15:42:50.383+08:00","level":"error","content":"discovbuilder.go:34 bad resolver state"}
+{"@timestamp":"2022-10-12T17:11:48.758+08:00","level":"error","content":"discovbuilder.go:34 bad resolver state"}
+{"@timestamp":"2022-10-12T17:12:55.434+08:00","level":"error","content":"discovbuilder.go:34 bad resolver state"}
+{"@timestamp":"2022-10-12T17:16:01.854+08:00","level":"error","content":"discovbuilder.go:34 bad resolver state"}
+{"@timestamp":"2022-10-12T17:19:19.844+08:00","level":"error","content":"discovbuilder.go:34 bad resolver state"}
+{"@timestamp":"2022-10-12T17:24:49.425+08:00","level":"error","content":"discovbuilder.go:34 bad resolver state"}
+{"@timestamp":"2022-10-12T20:42:22.255+08:00","level":"error","content":"discovbuilder.go:34 bad resolver state"}

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


+ 5 - 0
jyBXBase/api/logs/slow.log

@@ -0,0 +1,5 @@
+{"@timestamp":"2022-10-12T15:12:20.453+08:00","level":"slow","duration":"8011.9ms","content":"[HTTP] POST - 503 - /jybx/base/included - 127.0.0.1:51309 - PostmanRuntime/7.26.8 - slowcall(8011.9ms)","trace":"b838479c7559655eb5f9f33b8562d74f","span":"4db794a5b4298fd1"}
+{"@timestamp":"2022-10-12T15:13:42.447+08:00","level":"slow","duration":"8014.8ms","content":"[HTTP] POST - 503 - /jybx/base/included - 127.0.0.1:51568 - PostmanRuntime/7.26.8 - slowcall(8014.8ms)","trace":"fcbc0621e50ac9a57634a1903d6a801f","span":"323477410a29a212"}
+{"@timestamp":"2022-10-12T15:16:20.756+08:00","level":"slow","duration":"8003.0ms","content":"[HTTP] POST - 503 - /jybx/base/included - 127.0.0.1:51568 - PostmanRuntime/7.26.8 - slowcall(8003.0ms)","trace":"95c39a7a4bcc1cceebdba84e7a8cf7d5","span":"f98643e9e73305fd"}
+{"@timestamp":"2022-10-12T15:21:59.034+08:00","level":"slow","duration":"5013.6ms","content":"[HTTP] POST - 499 - /jybx/base/included - 127.0.0.1:51568 - PostmanRuntime/7.26.8 - slowcall(5013.6ms)","trace":"7b16544802dc85d243250330dea14ddf","span":"2c96eca37a326160"}
+{"@timestamp":"2022-10-12T15:22:42.992+08:00","level":"slow","duration":"3109.2ms","content":"[HTTP] POST - 499 - /jybx/base/included - 127.0.0.1:53094 - PostmanRuntime/7.26.8 - slowcall(3109.2ms)","trace":"6955dc01218152005557b14bc06e57de","span":"905410476ac4eceb"}

+ 0 - 0
jyBXBase/api/logs/stat.log


+ 471 - 0
jyBXBase/api/logs/stat.log-2022-10-12

@@ -0,0 +1,471 @@
+{"@timestamp":"2022-10-12T15:10:50.245+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=8.4Mi, Sys=19.9Mi, NumGC=3"}
+{"@timestamp":"2022-10-12T15:10:50.290+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:11:50.247+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=8.7Mi, Sys=19.9Mi, NumGC=3"}
+{"@timestamp":"2022-10-12T15:11:50.285+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:12:20.453+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8005, load: 89504, reqs: 1"}
+{"@timestamp":"2022-10-12T15:13:07.886+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=8.8Mi, Sys=18.9Mi, NumGC=3"}
+{"@timestamp":"2022-10-12T15:13:07.901+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:13:20.466+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 8011.0ms, med: 8011.9ms, 90th: 8011.9ms, 99th: 8011.9ms, 99.9th: 8011.9ms"}
+{"@timestamp":"2022-10-12T15:13:42.447+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8005, load: 89522, reqs: 1"}
+{"@timestamp":"2022-10-12T15:14:32.941+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=8.6Mi, Sys=19.4Mi, NumGC=4"}
+{"@timestamp":"2022-10-12T15:14:32.972+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:14:42.461+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 8014.0ms, med: 8014.8ms, 90th: 8014.8ms, 99th: 8014.8ms, 99.9th: 8014.8ms"}
+{"@timestamp":"2022-10-12T15:15:32.940+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=8.9Mi, Sys=19.4Mi, NumGC=4"}
+{"@timestamp":"2022-10-12T15:15:32.970+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:15:42.449+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:16:20.756+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8005, load: 89459, reqs: 1"}
+{"@timestamp":"2022-10-12T15:16:32.944+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=9.1Mi, Sys=19.9Mi, NumGC=5"}
+{"@timestamp":"2022-10-12T15:16:32.976+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 1, drop: 0"}
+{"@timestamp":"2022-10-12T15:16:42.448+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 4006.5ms, med: 8003.0ms, 90th: 8003.0ms, 99th: 8003.0ms, 99.9th: 8003.0ms"}
+{"@timestamp":"2022-10-12T15:17:32.941+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=9.2Mi, Sys=19.9Mi, NumGC=5"}
+{"@timestamp":"2022-10-12T15:17:32.972+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:17:42.452+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:18:32.940+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=9.3Mi, Sys=20.2Mi, NumGC=6"}
+{"@timestamp":"2022-10-12T15:18:32.972+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:18:42.461+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:19:32.947+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=9.5Mi, Sys=20.2Mi, NumGC=6"}
+{"@timestamp":"2022-10-12T15:19:32.963+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:19:42.456+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:20:32.940+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=9.6Mi, Sys=20.2Mi, NumGC=7"}
+{"@timestamp":"2022-10-12T15:20:32.970+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:20:42.448+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:21:32.947+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=9.7Mi, Sys=20.2Mi, NumGC=7"}
+{"@timestamp":"2022-10-12T15:21:32.962+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:21:42.456+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:21:59.034+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8005, load: 70806, reqs: 1"}
+{"@timestamp":"2022-10-12T15:22:32.948+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=10.0Mi, Sys=20.2Mi, NumGC=8"}
+{"@timestamp":"2022-10-12T15:22:32.963+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-10-12T15:22:42.457+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 5014.0ms, med: 5014.5ms, 90th: 5014.5ms, 99th: 5014.5ms, 99.9th: 5014.5ms"}
+{"@timestamp":"2022-10-12T15:22:42.992+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8005, load: 55760, reqs: 1"}
+{"@timestamp":"2022-10-12T15:23:32.951+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=10.3Mi, Sys=20.2Mi, NumGC=8"}
+{"@timestamp":"2022-10-12T15:23:32.967+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-10-12T15:23:42.448+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 3110.0ms, med: 3110.1ms, 90th: 3110.1ms, 99th: 3110.1ms, 99.9th: 3110.1ms"}
+{"@timestamp":"2022-10-12T15:23:56.773+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8005, load: 3883, reqs: 1"}
+{"@timestamp":"2022-10-12T15:24:32.950+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=10.6Mi, Sys=20.2Mi, NumGC=9"}
+{"@timestamp":"2022-10-12T15:24:32.966+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-10-12T15:24:42.450+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 15.0ms, med: 15.1ms, 90th: 15.1ms, 99th: 15.1ms, 99.9th: 15.1ms"}
+{"@timestamp":"2022-10-12T15:25:32.940+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=10.7Mi, Sys=20.2Mi, NumGC=9"}
+{"@timestamp":"2022-10-12T15:25:32.971+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:25:42.453+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:26:32.947+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=10.8Mi, Sys=20.2Mi, NumGC=10"}
+{"@timestamp":"2022-10-12T15:26:32.963+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:26:42.462+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:27:32.946+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=11.0Mi, Sys=20.2Mi, NumGC=10"}
+{"@timestamp":"2022-10-12T15:27:32.963+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:27:42.453+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:28:32.952+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=11.1Mi, Sys=20.2Mi, NumGC=11"}
+{"@timestamp":"2022-10-12T15:28:32.967+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:28:42.461+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:29:32.941+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=11.2Mi, Sys=20.2Mi, NumGC=11"}
+{"@timestamp":"2022-10-12T15:29:32.971+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:29:42.458+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:30:32.942+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=11.3Mi, Sys=20.2Mi, NumGC=12"}
+{"@timestamp":"2022-10-12T15:30:32.973+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:30:42.450+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:31:32.940+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=11.4Mi, Sys=20.2Mi, NumGC=12"}
+{"@timestamp":"2022-10-12T15:31:32.972+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:31:42.456+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:32:32.948+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=11.5Mi, Sys=20.2Mi, NumGC=13"}
+{"@timestamp":"2022-10-12T15:32:32.963+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:32:42.457+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:33:32.942+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=11.7Mi, Sys=20.2Mi, NumGC=13"}
+{"@timestamp":"2022-10-12T15:33:32.972+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:33:42.459+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:34:32.938+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=11.8Mi, Sys=20.2Mi, NumGC=14"}
+{"@timestamp":"2022-10-12T15:34:32.969+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:34:42.456+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:35:32.944+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=11.9Mi, Sys=20.2Mi, NumGC=14"}
+{"@timestamp":"2022-10-12T15:35:32.975+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:35:42.455+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:36:32.939+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=12.0Mi, Sys=20.2Mi, NumGC=15"}
+{"@timestamp":"2022-10-12T15:36:32.971+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:36:42.450+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:37:32.942+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=12.1Mi, Sys=20.2Mi, NumGC=15"}
+{"@timestamp":"2022-10-12T15:37:32.973+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:37:42.455+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:38:32.947+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=12.2Mi, Sys=20.2Mi, NumGC=16"}
+{"@timestamp":"2022-10-12T15:38:32.963+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:38:42.453+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:39:32.942+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=12.3Mi, Sys=20.2Mi, NumGC=16"}
+{"@timestamp":"2022-10-12T15:39:32.973+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:39:42.461+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:40:32.945+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=12.5Mi, Sys=20.2Mi, NumGC=17"}
+{"@timestamp":"2022-10-12T15:40:32.977+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:40:42.454+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:40:51.877+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8005, load: 3554, reqs: 1"}
+{"@timestamp":"2022-10-12T15:41:48.239+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=8.7Mi, Sys=19.4Mi, NumGC=4"}
+{"@timestamp":"2022-10-12T15:41:48.269+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-10-12T15:41:51.888+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 14.0ms, med: 14.3ms, 90th: 14.3ms, 99th: 14.3ms, 99.9th: 14.3ms"}
+{"@timestamp":"2022-10-12T15:42:48.233+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=9.0Mi, Sys=19.4Mi, NumGC=4"}
+{"@timestamp":"2022-10-12T15:42:48.264+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:42:51.885+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:42:57.734+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8005, load: 3644, reqs: 1"}
+{"@timestamp":"2022-10-12T15:43:48.243+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=9.3Mi, Sys=19.9Mi, NumGC=5"}
+{"@timestamp":"2022-10-12T15:43:48.276+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-10-12T15:43:51.885+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 13.0ms, med: 13.3ms, 90th: 13.3ms, 99th: 13.3ms, 99.9th: 13.3ms"}
+{"@timestamp":"2022-10-12T15:44:48.243+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=9.4Mi, Sys=19.9Mi, NumGC=5"}
+{"@timestamp":"2022-10-12T15:44:48.275+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:44:51.885+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:45:48.244+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=9.5Mi, Sys=19.9Mi, NumGC=6"}
+{"@timestamp":"2022-10-12T15:45:48.274+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:45:51.887+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:46:48.242+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=9.7Mi, Sys=19.9Mi, NumGC=6"}
+{"@timestamp":"2022-10-12T15:46:48.273+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:46:51.888+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:47:48.280+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=9.8Mi, Sys=19.9Mi, NumGC=7"}
+{"@timestamp":"2022-10-12T15:47:48.280+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:47:51.884+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:48:48.240+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=9.9Mi, Sys=19.9Mi, NumGC=7"}
+{"@timestamp":"2022-10-12T15:48:48.272+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:48:51.886+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:49:48.245+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=10.0Mi, Sys=19.9Mi, NumGC=8"}
+{"@timestamp":"2022-10-12T15:49:48.275+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:49:51.891+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:50:48.245+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=10.1Mi, Sys=20.2Mi, NumGC=8"}
+{"@timestamp":"2022-10-12T15:50:48.276+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:50:51.878+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:51:48.236+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=10.2Mi, Sys=20.2Mi, NumGC=9"}
+{"@timestamp":"2022-10-12T15:51:48.268+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:51:51.892+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:52:48.242+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=10.4Mi, Sys=20.2Mi, NumGC=9"}
+{"@timestamp":"2022-10-12T15:52:48.273+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:52:51.881+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:53:48.237+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=10.5Mi, Sys=20.2Mi, NumGC=10"}
+{"@timestamp":"2022-10-12T15:53:48.268+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:53:51.884+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:54:48.235+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=10.6Mi, Sys=20.2Mi, NumGC=10"}
+{"@timestamp":"2022-10-12T15:54:48.267+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:54:51.909+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:55:48.232+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=10.7Mi, Sys=20.2Mi, NumGC=11"}
+{"@timestamp":"2022-10-12T15:55:48.262+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:55:51.882+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:56:48.232+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=10.8Mi, Sys=20.2Mi, NumGC=11"}
+{"@timestamp":"2022-10-12T15:56:48.263+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:56:51.885+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:57:48.246+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=10.9Mi, Sys=20.2Mi, NumGC=12"}
+{"@timestamp":"2022-10-12T15:57:48.276+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:57:51.881+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:58:48.245+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=11.1Mi, Sys=20.2Mi, NumGC=12"}
+{"@timestamp":"2022-10-12T15:58:48.261+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:58:51.890+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:59:48.242+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=11.2Mi, Sys=20.2Mi, NumGC=13"}
+{"@timestamp":"2022-10-12T15:59:48.272+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:59:51.882+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:00:48.238+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=11.3Mi, Sys=20.2Mi, NumGC=13"}
+{"@timestamp":"2022-10-12T16:00:48.269+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:00:51.885+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:01:48.237+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=11.4Mi, Sys=20.2Mi, NumGC=14"}
+{"@timestamp":"2022-10-12T16:01:48.269+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:01:51.878+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:02:48.241+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=11.5Mi, Sys=20.2Mi, NumGC=14"}
+{"@timestamp":"2022-10-12T16:02:48.272+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:02:51.880+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:03:48.234+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=11.6Mi, Sys=20.2Mi, NumGC=15"}
+{"@timestamp":"2022-10-12T16:03:48.265+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:03:51.890+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:04:48.242+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=11.8Mi, Sys=20.2Mi, NumGC=15"}
+{"@timestamp":"2022-10-12T16:04:48.274+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:04:51.886+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:05:48.239+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=11.9Mi, Sys=20.2Mi, NumGC=16"}
+{"@timestamp":"2022-10-12T16:05:48.270+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:05:51.882+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:06:48.240+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=12.0Mi, Sys=20.2Mi, NumGC=16"}
+{"@timestamp":"2022-10-12T16:06:48.272+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:06:51.884+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:07:48.243+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=12.1Mi, Sys=20.2Mi, NumGC=17"}
+{"@timestamp":"2022-10-12T16:07:48.273+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:07:51.892+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:08:48.239+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=12.2Mi, Sys=20.2Mi, NumGC=17"}
+{"@timestamp":"2022-10-12T16:08:48.270+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:08:51.878+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:09:48.231+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=12.3Mi, Sys=20.2Mi, NumGC=18"}
+{"@timestamp":"2022-10-12T16:09:48.262+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:09:51.880+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:10:48.233+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=12.5Mi, Sys=20.2Mi, NumGC=18"}
+{"@timestamp":"2022-10-12T16:10:48.263+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:10:51.878+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:11:48.235+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=12.6Mi, Sys=20.2Mi, NumGC=19"}
+{"@timestamp":"2022-10-12T16:11:48.265+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:11:51.885+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:12:48.233+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=12.7Mi, Sys=20.2Mi, NumGC=19"}
+{"@timestamp":"2022-10-12T16:12:48.265+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:12:51.885+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:13:48.244+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=12.8Mi, Sys=20.2Mi, NumGC=20"}
+{"@timestamp":"2022-10-12T16:13:48.275+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:13:51.883+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:14:48.233+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=12.9Mi, Sys=20.2Mi, NumGC=20"}
+{"@timestamp":"2022-10-12T16:14:48.263+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:14:51.888+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:15:48.232+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=13.0Mi, Sys=20.2Mi, NumGC=21"}
+{"@timestamp":"2022-10-12T16:15:48.264+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:15:51.887+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:16:48.244+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=13.1Mi, Sys=20.2Mi, NumGC=21"}
+{"@timestamp":"2022-10-12T16:16:48.276+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:16:51.884+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:17:48.238+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=13.3Mi, Sys=20.2Mi, NumGC=22"}
+{"@timestamp":"2022-10-12T16:17:48.269+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:17:51.890+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:18:48.234+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=13.4Mi, Sys=20.2Mi, NumGC=22"}
+{"@timestamp":"2022-10-12T16:18:48.265+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:18:51.892+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:19:48.241+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=13.5Mi, Sys=20.2Mi, NumGC=23"}
+{"@timestamp":"2022-10-12T16:19:48.272+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:19:51.881+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:20:48.238+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=13.6Mi, Sys=20.2Mi, NumGC=23"}
+{"@timestamp":"2022-10-12T16:20:48.269+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:20:51.889+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:21:48.238+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=13.7Mi, Sys=20.2Mi, NumGC=24"}
+{"@timestamp":"2022-10-12T16:21:48.270+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:21:51.892+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:22:48.235+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=13.8Mi, Sys=20.2Mi, NumGC=24"}
+{"@timestamp":"2022-10-12T16:22:48.265+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:22:51.889+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:23:48.244+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=13.9Mi, Sys=20.2Mi, NumGC=25"}
+{"@timestamp":"2022-10-12T16:23:48.274+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:23:51.885+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:24:48.236+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=14.1Mi, Sys=20.2Mi, NumGC=25"}
+{"@timestamp":"2022-10-12T16:24:48.267+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:24:51.881+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:25:48.244+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=14.2Mi, Sys=20.2Mi, NumGC=26"}
+{"@timestamp":"2022-10-12T16:25:48.275+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:25:51.880+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:26:48.242+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=14.3Mi, Sys=20.2Mi, NumGC=26"}
+{"@timestamp":"2022-10-12T16:26:48.273+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:26:51.883+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:27:48.237+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=14.4Mi, Sys=20.2Mi, NumGC=27"}
+{"@timestamp":"2022-10-12T16:27:48.268+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:27:51.882+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:28:48.233+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=14.5Mi, Sys=20.2Mi, NumGC=27"}
+{"@timestamp":"2022-10-12T16:28:48.263+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:28:51.878+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:29:48.244+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=14.6Mi, Sys=20.2Mi, NumGC=28"}
+{"@timestamp":"2022-10-12T16:29:48.275+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:29:51.883+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:30:48.232+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=14.8Mi, Sys=20.2Mi, NumGC=28"}
+{"@timestamp":"2022-10-12T16:30:48.264+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:30:51.880+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:31:48.238+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=14.9Mi, Sys=20.2Mi, NumGC=29"}
+{"@timestamp":"2022-10-12T16:31:48.269+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:31:51.887+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:32:48.232+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=15.0Mi, Sys=20.2Mi, NumGC=29"}
+{"@timestamp":"2022-10-12T16:32:48.263+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:32:51.880+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:33:48.233+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=15.1Mi, Sys=20.2Mi, NumGC=30"}
+{"@timestamp":"2022-10-12T16:33:48.264+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:33:51.893+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:34:48.233+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=15.2Mi, Sys=20.2Mi, NumGC=30"}
+{"@timestamp":"2022-10-12T16:34:48.265+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:34:51.878+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:35:48.246+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=15.3Mi, Sys=20.2Mi, NumGC=31"}
+{"@timestamp":"2022-10-12T16:35:48.262+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:35:51.884+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:36:48.233+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=15.4Mi, Sys=20.2Mi, NumGC=31"}
+{"@timestamp":"2022-10-12T16:36:48.264+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:36:51.877+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:37:48.236+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=15.6Mi, Sys=20.2Mi, NumGC=32"}
+{"@timestamp":"2022-10-12T16:37:48.268+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:37:51.885+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:38:48.239+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=15.7Mi, Sys=20.2Mi, NumGC=32"}
+{"@timestamp":"2022-10-12T16:38:48.269+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:38:51.892+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:39:48.238+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=15.8Mi, Sys=20.2Mi, NumGC=33"}
+{"@timestamp":"2022-10-12T16:39:48.269+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:39:51.879+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:40:48.233+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=15.9Mi, Sys=20.2Mi, NumGC=33"}
+{"@timestamp":"2022-10-12T16:40:48.265+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:40:51.882+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:41:48.235+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=16.0Mi, Sys=20.2Mi, NumGC=34"}
+{"@timestamp":"2022-10-12T16:41:48.266+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:41:51.884+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:42:48.235+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=16.1Mi, Sys=20.2Mi, NumGC=34"}
+{"@timestamp":"2022-10-12T16:42:48.266+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:42:51.880+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:43:48.239+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=16.2Mi, Sys=20.2Mi, NumGC=35"}
+{"@timestamp":"2022-10-12T16:43:48.270+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:43:51.886+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:44:48.235+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=16.4Mi, Sys=20.2Mi, NumGC=35"}
+{"@timestamp":"2022-10-12T16:44:48.266+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:44:51.885+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:45:48.240+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=16.5Mi, Sys=20.2Mi, NumGC=36"}
+{"@timestamp":"2022-10-12T16:45:48.271+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:45:51.884+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:46:48.238+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=16.6Mi, Sys=20.2Mi, NumGC=36"}
+{"@timestamp":"2022-10-12T16:46:48.269+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:46:51.893+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:47:48.244+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=16.7Mi, Sys=20.2Mi, NumGC=37"}
+{"@timestamp":"2022-10-12T16:47:48.276+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:47:51.890+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:48:48.240+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=16.8Mi, Sys=20.2Mi, NumGC=37"}
+{"@timestamp":"2022-10-12T16:48:48.270+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:48:51.886+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:49:48.232+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=16.9Mi, Sys=20.2Mi, NumGC=38"}
+{"@timestamp":"2022-10-12T16:49:48.262+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:49:51.878+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:50:48.243+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=17.0Mi, Sys=20.2Mi, NumGC=38"}
+{"@timestamp":"2022-10-12T16:50:48.275+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:50:51.879+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:51:48.240+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=17.2Mi, Sys=20.2Mi, NumGC=39"}
+{"@timestamp":"2022-10-12T16:51:48.271+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:51:51.885+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:52:48.239+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=17.3Mi, Sys=20.2Mi, NumGC=39"}
+{"@timestamp":"2022-10-12T16:52:48.271+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:52:51.882+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:53:48.243+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=17.4Mi, Sys=20.2Mi, NumGC=40"}
+{"@timestamp":"2022-10-12T16:53:48.274+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:53:51.886+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:54:48.240+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=17.5Mi, Sys=20.2Mi, NumGC=40"}
+{"@timestamp":"2022-10-12T16:54:48.271+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:54:51.883+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:55:48.242+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=17.6Mi, Sys=20.2Mi, NumGC=41"}
+{"@timestamp":"2022-10-12T16:55:48.272+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:55:51.878+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:56:48.236+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=17.7Mi, Sys=20.2Mi, NumGC=41"}
+{"@timestamp":"2022-10-12T16:56:48.267+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:56:51.883+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:57:48.242+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=17.9Mi, Sys=20.2Mi, NumGC=42"}
+{"@timestamp":"2022-10-12T16:57:48.263+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:57:51.888+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:58:48.246+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=18.0Mi, Sys=20.2Mi, NumGC=42"}
+{"@timestamp":"2022-10-12T16:58:48.277+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:58:51.886+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:59:48.236+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=18.1Mi, Sys=20.2Mi, NumGC=43"}
+{"@timestamp":"2022-10-12T16:59:48.266+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:59:51.883+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:00:48.232+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=18.2Mi, Sys=20.2Mi, NumGC=43"}
+{"@timestamp":"2022-10-12T17:00:48.263+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:00:51.881+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:01:48.243+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=18.3Mi, Sys=20.2Mi, NumGC=44"}
+{"@timestamp":"2022-10-12T17:01:48.275+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:01:51.884+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:02:48.240+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=18.4Mi, Sys=20.2Mi, NumGC=44"}
+{"@timestamp":"2022-10-12T17:02:48.271+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:02:51.880+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:03:48.245+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=18.5Mi, Sys=20.2Mi, NumGC=45"}
+{"@timestamp":"2022-10-12T17:03:48.276+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:03:51.888+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:04:48.233+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=18.7Mi, Sys=20.2Mi, NumGC=45"}
+{"@timestamp":"2022-10-12T17:04:48.265+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:04:51.889+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:05:48.245+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=18.8Mi, Sys=20.2Mi, NumGC=46"}
+{"@timestamp":"2022-10-12T17:05:48.276+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:05:51.889+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:06:48.237+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=18.9Mi, Sys=20.2Mi, NumGC=46"}
+{"@timestamp":"2022-10-12T17:06:48.269+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:06:51.890+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:07:48.244+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=19.0Mi, Sys=20.2Mi, NumGC=47"}
+{"@timestamp":"2022-10-12T17:07:48.275+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:07:51.891+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:08:48.235+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=19.1Mi, Sys=20.2Mi, NumGC=47"}
+{"@timestamp":"2022-10-12T17:08:48.267+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:08:51.891+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:09:48.235+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=19.2Mi, Sys=20.2Mi, NumGC=48"}
+{"@timestamp":"2022-10-12T17:09:48.266+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:09:51.891+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:10:48.235+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=19.3Mi, Sys=20.2Mi, NumGC=48"}
+{"@timestamp":"2022-10-12T17:10:48.267+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:10:51.891+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:11:48.234+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=19.5Mi, Sys=20.2Mi, NumGC=49"}
+{"@timestamp":"2022-10-12T17:11:48.265+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:11:51.890+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:11:57.412+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8005, load: 3589, reqs: 1"}
+{"@timestamp":"2022-10-12T17:12:48.239+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=19.8Mi, Sys=20.2Mi, NumGC=49"}
+{"@timestamp":"2022-10-12T17:12:48.270+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-10-12T17:12:51.887+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 12.0ms, med: 12.9ms, 90th: 12.9ms, 99th: 12.9ms, 99.9th: 12.9ms"}
+{"@timestamp":"2022-10-12T17:13:36.047+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8005, load: 3271, reqs: 1"}
+{"@timestamp":"2022-10-12T17:13:47.918+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8005, load: 2817, reqs: 1"}
+{"@timestamp":"2022-10-12T17:14:36.279+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8005, load: 3171, reqs: 1"}
+{"@timestamp":"2022-10-12T17:14:45.025+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=8.8Mi, Sys=19.9Mi, NumGC=4"}
+{"@timestamp":"2022-10-12T17:14:45.055+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 3, pass: 3, drop: 0"}
+{"@timestamp":"2022-10-12T17:14:47.930+08:00","level":"stat","content":"(bxbase-api) - qps: 0.1/s, drops: 0, avg time: 8.7ms, med: 10.1ms, 90th: 10.1ms, 99th: 10.1ms, 99.9th: 10.1ms"}
+{"@timestamp":"2022-10-12T17:15:02.559+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8005, load: 3512, reqs: 1"}
+{"@timestamp":"2022-10-12T17:15:36.832+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8005, load: 3149, reqs: 1"}
+{"@timestamp":"2022-10-12T17:15:45.026+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.9Mi, TotalAlloc=9.4Mi, Sys=24.0Mi, NumGC=4"}
+{"@timestamp":"2022-10-12T17:15:45.056+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0"}
+{"@timestamp":"2022-10-12T17:15:47.928+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 11.5ms, med: 12.3ms, 90th: 12.3ms, 99th: 12.3ms, 99.9th: 12.3ms"}
+{"@timestamp":"2022-10-12T17:16:36.074+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8005, load: 3446, reqs: 1"}
+{"@timestamp":"2022-10-12T17:16:45.038+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=9.9Mi, Sys=24.0Mi, NumGC=5"}
+{"@timestamp":"2022-10-12T17:16:45.053+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 3, pass: 3, drop: 0"}
+{"@timestamp":"2022-10-12T17:16:47.926+08:00","level":"stat","content":"(bxbase-api) - qps: 0.1/s, drops: 0, avg time: 5.3ms, med: 11.9ms, 90th: 11.9ms, 99th: 11.9ms, 99.9th: 11.9ms"}
+{"@timestamp":"2022-10-12T17:17:35.405+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8005, load: 1705, reqs: 1"}
+{"@timestamp":"2022-10-12T17:17:45.028+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=10.2Mi, Sys=24.0Mi, NumGC=5"}
+{"@timestamp":"2022-10-12T17:17:45.059+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-10-12T17:17:47.927+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 2.0ms, med: 2.9ms, 90th: 2.9ms, 99th: 2.9ms, 99.9th: 2.9ms"}
+{"@timestamp":"2022-10-12T17:18:07.370+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8005, load: 1639, reqs: 1"}
+{"@timestamp":"2022-10-12T17:18:45.034+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=10.8Mi, Sys=24.0Mi, NumGC=6"}
+{"@timestamp":"2022-10-12T17:18:45.050+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 10, pass: 10, drop: 0"}
+{"@timestamp":"2022-10-12T17:18:47.922+08:00","level":"stat","content":"(bxbase-api) - qps: 0.2/s, drops: 0, avg time: 2.9ms, med: 2.3ms, 90th: 11.3ms, 99th: 11.3ms, 99.9th: 11.3ms"}
+{"@timestamp":"2022-10-12T17:18:49.798+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8005, load: 1578, reqs: 1"}
+{"@timestamp":"2022-10-12T17:19:45.033+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=6.0Mi, TotalAlloc=11.3Mi, Sys=24.0Mi, NumGC=6"}
+{"@timestamp":"2022-10-12T17:19:45.049+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-10-12T17:19:47.932+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 2.0ms, med: 2.5ms, 90th: 2.5ms, 99th: 2.5ms, 99.9th: 2.5ms"}
+{"@timestamp":"2022-10-12T17:20:45.041+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=11.4Mi, Sys=24.0Mi, NumGC=7"}
+{"@timestamp":"2022-10-12T17:20:45.049+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:20:47.930+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:21:40.965+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8005, load: 1719, reqs: 1"}
+{"@timestamp":"2022-10-12T17:21:45.036+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=11.7Mi, Sys=24.0Mi, NumGC=7"}
+{"@timestamp":"2022-10-12T17:21:45.052+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-10-12T17:21:47.929+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 3.0ms, med: 3.5ms, 90th: 3.5ms, 99th: 3.5ms, 99.9th: 3.5ms"}
+{"@timestamp":"2022-10-12T17:22:45.094+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=11.8Mi, Sys=24.0Mi, NumGC=8"}
+{"@timestamp":"2022-10-12T17:22:45.094+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:22:47.938+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:23:45.036+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=11.9Mi, Sys=24.0Mi, NumGC=8"}
+{"@timestamp":"2022-10-12T17:23:45.052+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:23:47.923+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:24:45.025+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=12.0Mi, Sys=24.0Mi, NumGC=9"}
+{"@timestamp":"2022-10-12T17:24:45.055+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:24:47.922+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:25:45.034+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=12.3Mi, Sys=24.0Mi, NumGC=9"}
+{"@timestamp":"2022-10-12T17:25:45.050+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:25:47.927+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:26:07.393+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8005, load: 1628, reqs: 1"}
+{"@timestamp":"2022-10-12T17:26:45.030+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=12.5Mi, Sys=24.0Mi, NumGC=10"}
+{"@timestamp":"2022-10-12T17:26:45.062+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 3, pass: 3, drop: 0"}
+{"@timestamp":"2022-10-12T17:26:47.931+08:00","level":"stat","content":"(bxbase-api) - qps: 0.1/s, drops: 0, avg time: 5.3ms, med: 11.9ms, 90th: 11.9ms, 99th: 11.9ms, 99.9th: 11.9ms"}
+{"@timestamp":"2022-10-12T17:27:45.028+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=12.6Mi, Sys=24.0Mi, NumGC=10"}
+{"@timestamp":"2022-10-12T17:27:45.058+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:27:47.925+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:28:45.027+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=12.7Mi, Sys=24.0Mi, NumGC=11"}
+{"@timestamp":"2022-10-12T17:28:45.057+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:28:47.925+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:29:45.025+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=12.8Mi, Sys=24.0Mi, NumGC=11"}
+{"@timestamp":"2022-10-12T17:29:45.057+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:29:47.933+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:30:45.029+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=13.0Mi, Sys=24.0Mi, NumGC=12"}
+{"@timestamp":"2022-10-12T17:30:45.060+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:30:47.920+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:31:45.026+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=13.1Mi, Sys=24.0Mi, NumGC=12"}
+{"@timestamp":"2022-10-12T17:31:45.057+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:31:47.929+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:32:45.030+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=13.2Mi, Sys=24.0Mi, NumGC=13"}
+{"@timestamp":"2022-10-12T17:32:45.060+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:32:47.925+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:33:45.031+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=13.3Mi, Sys=24.0Mi, NumGC=13"}
+{"@timestamp":"2022-10-12T17:33:45.062+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:33:47.924+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:34:45.030+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=13.4Mi, Sys=24.0Mi, NumGC=14"}
+{"@timestamp":"2022-10-12T17:34:45.059+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:34:47.927+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:35:45.038+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=13.5Mi, Sys=24.0Mi, NumGC=14"}
+{"@timestamp":"2022-10-12T17:35:45.053+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:35:47.921+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:36:45.025+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=13.7Mi, Sys=24.0Mi, NumGC=15"}
+{"@timestamp":"2022-10-12T17:36:45.055+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:36:47.927+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:37:45.034+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=13.8Mi, Sys=24.0Mi, NumGC=15"}
+{"@timestamp":"2022-10-12T17:37:45.050+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:37:47.923+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:38:45.027+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=13.9Mi, Sys=24.0Mi, NumGC=16"}
+{"@timestamp":"2022-10-12T17:38:45.058+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:38:47.922+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:39:45.035+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=14.0Mi, Sys=24.0Mi, NumGC=16"}
+{"@timestamp":"2022-10-12T17:39:45.050+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:39:47.920+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:40:45.030+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=14.1Mi, Sys=24.0Mi, NumGC=17"}
+{"@timestamp":"2022-10-12T17:40:45.061+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:40:47.924+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:41:45.038+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=14.2Mi, Sys=24.0Mi, NumGC=17"}
+{"@timestamp":"2022-10-12T17:41:45.054+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:41:47.932+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T20:42:21.532+08:00","level":"stat","content":"(bxbase-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T20:42:21.532+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=14.3Mi, Sys=24.0Mi, NumGC=18"}
+{"@timestamp":"2022-10-12T20:42:21.532+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}

+ 8 - 0
jyBXBase/entity/db.go

@@ -21,8 +21,16 @@ type MongoStruct struct {
 }
 
 type Mysql struct {
+<<<<<<< HEAD
       Main        *MysqlStruct `json:"main,optional"`
       BaseService *MysqlStruct `json:"baseService,omitempty"`
+=======
+	Main         *MysqlStruct `json:"main,optional"`
+	Push         *MysqlStruct `json:"push,optional"`
+	MemberPush   *MysqlStruct `json:"memberPush"`
+	EntnichePush *MysqlStruct `json:"entnichePush"`
+	BaseService  *MysqlStruct `json:"baseService"`
+>>>>>>> master
 }
 
 //mysql

+ 5 - 3
jyBXBase/rpc/bxbase.go

@@ -1,20 +1,22 @@
 package main
 
 import (
-	MC "app.yhyue.com/moapp/jybase/common"
-	"app.yhyue.com/moapp/jybase/endless"
 	"fmt"
 	"log"
 
+	MC "app.yhyue.com/moapp/jybase/common"
+	"app.yhyue.com/moapp/jybase/endless"
+
 	"jyBXBase/rpc/internal/server"
 	"jyBXBase/rpc/internal/svc"
 	"jyBXBase/rpc/type/bxbase"
 
+	IC "jyBXBase/rpc/init"
+
 	"github.com/zeromicro/go-zero/core/service"
 	"github.com/zeromicro/go-zero/zrpc"
 	"google.golang.org/grpc"
 	"google.golang.org/grpc/reflection"
-	IC "jyBXBase/rpc/init"
 )
 
 func main() {

+ 39 - 0
jyBXBase/rpc/bxbase.proto

@@ -224,6 +224,42 @@ message CheckRes {
   string data = 3;
 }
 
+message AppIdReq{
+	string AppId =1;
+}
+
+//剑鱼网站收录情况返回参数
+message IncludedResp{
+	int64 year =1; //年
+	int64 month =2; //月
+	int64 day =3; //日
+	float bid=4;//招标信息的数值
+	string bidUnit=5; //招标信息的数值单位
+	string bidUnitAppend=6; //招标信息的数值单位后面的加号
+	float project=7;//招标采购项目的数值
+	string projectUnit=8;//招标采购项目的数值单位
+	string projectUnitAppend=9;//招标采购项目的数值单位后面的加号
+	float ent=10; //企业数据库的数值
+	string entUnit=11;//企业数据库的数值单位
+	string entUnitAppend=12;//企业数据库的数值单位后面的加号
+	float buyer=13;//采购单位库的数值
+	string buyerUnit=14;//采购单位库的数值单位
+	string buyerUnitAppend=15;//采购单位库的数值单位后面的加号
+	float bidDayUpdate=16;//每日更新招标信息的数值
+	string bidDayUpdateUnit=17;//每日更新招标信息的数值单位
+	string bidDayUpdateUnitAppend=18;//每日更新招标信息的数值单位后面的加号
+	float bidField=19;//招标信息数据字段的数值
+	string bidFieldUnit=20;//招标信息数据字段的数值单位
+	string bidFieldUnitAppend=21;//招标信息数据字段数值单位后面的加号
+	float fieldAccuracy=22;//数据字段准确率的数值
+	string fieldAccuracyUnit=23;//数据字段准确率的数值单位
+	string fieldAccuracyUnitAppend=24;//数据字段准确率的数值单位后面的加号
+	float push=25;//推送招标信息的数值
+	string pushUnit=26;//推送招标信息的数值单位
+	string pushUnitAppend=27;//推送招标信息的数值单位后面的加号
+	string error_msg = 28;
+	int64 error_code = 29;
+}
 
 //servie
 service bxbase {
@@ -251,4 +287,7 @@ service bxbase {
 
   //首页最新招标信息
   rpc NewestBidding(NewestBiddingReq)returns(NewsetBiddingResp);
+
+  //剑鱼网站收录情况
+  rpc Included (AppIdReq) returns(IncludedResp);
 }

+ 10 - 0
jyBXBase/rpc/bxbase/bxbase.go

@@ -16,6 +16,7 @@ type (
 	AddSearchReq      = bxbase.AddSearchReq
 	AddlabelReq       = bxbase.AddlabelReq
 	AddlabelRes       = bxbase.AddlabelRes
+	AppIdReq          = bxbase.AppIdReq
 	BCActionReq       = bxbase.BCActionReq
 	CheckRes          = bxbase.CheckRes
 	ColData           = bxbase.ColData
@@ -25,6 +26,7 @@ type (
 	GetLabelActionReq = bxbase.GetLabelActionReq
 	GetLabelActionRes = bxbase.GetLabelActionRes
 	IData             = bxbase.IData
+	IncludedResp      = bxbase.IncludedResp
 	IsCollActionReq   = bxbase.IsCollActionReq
 	IsCollActionRes   = bxbase.IsCollActionRes
 	LabelActionReq    = bxbase.LabelActionReq
@@ -64,6 +66,8 @@ type (
 		DelSearch(ctx context.Context, in *DelSearchReq, opts ...grpc.CallOption) (*CommonRes, error)
 		// 首页最新招标信息
 		NewestBidding(ctx context.Context, in *NewestBiddingReq, opts ...grpc.CallOption) (*NewsetBiddingResp, error)
+		// 剑鱼网站收录情况
+		Included(ctx context.Context, in *AppIdReq, opts ...grpc.CallOption) (*IncludedResp, error)
 	}
 
 	defaultBxbase struct {
@@ -142,3 +146,9 @@ func (m *defaultBxbase) NewestBidding(ctx context.Context, in *NewestBiddingReq,
 	client := bxbase.NewBxbaseClient(m.cli.Conn())
 	return client.NewestBidding(ctx, in, opts...)
 }
+
+// 剑鱼网站收录情况
+func (m *defaultBxbase) Included(ctx context.Context, in *AppIdReq, opts ...grpc.CallOption) (*IncludedResp, error) {
+	client := bxbase.NewBxbaseClient(m.cli.Conn())
+	return client.Included(ctx, in, opts...)
+}

+ 1 - 0
jyBXBase/rpc/etc/bxbase.yaml

@@ -8,3 +8,4 @@ Timeout: 8000
 Webrpcport: 8015
 BidSearchOldUserLimit: 1626105600
 FileSignBool: true
+UnitAppend: '+'

+ 7 - 0
jyBXBase/rpc/etc/db.yaml

@@ -13,6 +13,13 @@ mysql:
         password: '=PDT49#80Z!RVv52_z'
         maxOpenConns: 5
         maxIdleConns: 5
+    baseService:
+        dbName: base_service
+        address: 192.168.3.217:4000
+        userName: root
+        password: '=PDT49#80Z!RVv52_z'
+        maxOpenConns: 5
+        maxIdleConns: 5
 redis:
     addr:
         - other=192.168.3.206:1712

+ 91 - 0
jyBXBase/rpc/init/db.go

@@ -4,6 +4,7 @@
 package init
 
 import (
+<<<<<<< HEAD
         "app.yhyue.com/moapp/jybase/esv1"
         "app.yhyue.com/moapp/jybase/mongodb"
         "app.yhyue.com/moapp/jybase/mysql"
@@ -19,6 +20,29 @@ var (
       Mgo              mongodb.MongodbSim
       MgoEnt           mongodb.MongodbSim
       MgoBidding       mongodb.MongodbSim
+=======
+	"strings"
+
+	"github.com/zeromicro/go-zero/core/logx"
+
+	"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"
+)
+
+var (
+	MainMysql          *mysql.Mysql
+	PushMysql          *mysql.Mysql
+	BigmemberPushMysql *mysql.Mysql
+	EntnichePushMysql  *mysql.Mysql
+	BaseServiceMysql   *mysql.Mysql
+	Mgo                mongodb.MongodbSim
+	MgoEnt             mongodb.MongodbSim
+	MgoBidding         mongodb.MongodbSim
+>>>>>>> master
 )
 
 //
@@ -60,6 +84,7 @@ func MongoDBInit(em *entity.Mongo) {
 
 //
 func MysqlInit(em *entity.Mysql) {
+<<<<<<< HEAD
       //初始化 mysql-main
       if em.Main.Address != "" {
 	  logx.Info("--初始化 main mysql--")
@@ -86,6 +111,72 @@ func MysqlInit(em *entity.Mysql) {
 	  }
 	  BaseServiceMysql.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-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()
+	}
+	if em.BaseService.Address != "" {
+		logx.Info("--初始化 BaseServiceMysql tidb--")
+		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()
+	}
+>>>>>>> master
 }
 
 //

+ 3 - 1
jyBXBase/rpc/internal/config/config.go

@@ -1,8 +1,9 @@
 package config
 
 import (
-	"github.com/zeromicro/go-zero/zrpc"
 	"jyBXBase/entity"
+
+	"github.com/zeromicro/go-zero/zrpc"
 )
 
 type Config struct {
@@ -10,6 +11,7 @@ type Config struct {
 	Webrpcport            int64
 	BidSearchOldUserLimit int64
 	FileSignBool          bool
+	UnitAppend            string //数值单位后面的加号 写死的目前
 }
 
 type Db struct {

+ 82 - 0
jyBXBase/rpc/internal/logic/includedlogic.go

@@ -0,0 +1,82 @@
+package logic
+
+import (
+	"context"
+	"fmt"
+	IC "jyBXBase/rpc/init"
+	"jyBXBase/rpc/internal/svc"
+	"jyBXBase/rpc/model"
+	"jyBXBase/rpc/type/bxbase"
+
+	"app.yhyue.com/moapp/jybase/common"
+	"app.yhyue.com/moapp/jybase/redis"
+
+	"github.com/zeromicro/go-zero/core/logx"
+)
+
+type IncludedLogic struct {
+	ctx    context.Context
+	svcCtx *svc.ServiceContext
+	logx.Logger
+}
+
+func NewIncludedLogic(ctx context.Context, svcCtx *svc.ServiceContext) *IncludedLogic {
+	return &IncludedLogic{
+		ctx:    ctx,
+		svcCtx: svcCtx,
+		Logger: logx.WithContext(ctx),
+	}
+}
+
+// 剑鱼网站收录情况
+func (l *IncludedLogic) Included(in *bxbase.AppIdReq) (*bxbase.IncludedResp, error) {
+	resp := &bxbase.IncludedResp{}
+	include := model.Included{
+		MysqlDb: IC.BaseServiceMysql,
+		Mgo:     IC.Mgo,
+	}
+	data := &model.IncludedData{}
+	if jyIncludedData := redis.Get("other", "jyIncludedData"); jyIncludedData != nil {
+		data, _ = common.JsonUnmarshal(jyIncludedData, &model.IncludedData{}).(*model.IncludedData)
+	} else {
+		includeData, err := include.GetIncludedData()
+		if err != nil || includeData == nil {
+			l.Error(fmt.Sprintf("%+v", in), err.Error())
+			resp.ErrorMsg = err.Error()
+			resp.ErrorCode = -1
+			return resp, nil
+		}
+		data = includeData
+		redis.Put("other", "jyIncludedData", data, 7200)
+	}
+
+	unitAppend := IC.C.UnitAppend
+	resp.Bid = float32(data.Bid)
+	resp.BidUnit = data.BidUnit
+	resp.BidUnitAppend = unitAppend
+	resp.BidDayUpdate = float32(data.BidDayUpdate)
+	resp.BidDayUpdateUnit = data.BidDayUpdateUnit
+	resp.BidDayUpdateUnitAppend = unitAppend
+	resp.BidField = float32(data.BidField)
+	resp.BidFieldUnit = data.BidFieldUnit
+	resp.BidFieldUnitAppend = unitAppend
+	resp.Buyer = float32(data.Buyer)
+	resp.BuyerUnit = data.BuyerUnit
+	resp.BuyerUnitAppend = unitAppend
+	resp.Year = data.Year
+	resp.Month = data.Month
+	resp.Day = data.Day
+	resp.Ent = float32(data.Ent)
+	resp.EntUnit = data.EntUnit
+	resp.EntUnitAppend = unitAppend
+	resp.FieldAccuracy = float32(data.FieldAccuracy)
+	resp.FieldAccuracyUnit = data.FieldAccuracyUnit
+	resp.FieldAccuracyUnitAppend = unitAppend
+	resp.Push = float32(data.Push)
+	resp.PushUnit = data.PushUnit
+	resp.PushUnitAppend = unitAppend
+	resp.Project = float32(data.Project)
+	resp.ProjectUnit = data.ProjectUnit
+	resp.ProjectUnitAppend = unitAppend
+	return resp, nil
+}

+ 6 - 0
jyBXBase/rpc/internal/server/bxbaseserver.go

@@ -87,3 +87,9 @@ func (s *BxbaseServer) NewestBidding(ctx context.Context, in *bxbase.NewestBiddi
 	l := logic.NewNewestBiddingLogic(ctx, s.svcCtx)
 	return l.NewestBidding(in)
 }
+
+// 剑鱼网站收录情况
+func (s *BxbaseServer) Included(ctx context.Context, in *bxbase.AppIdReq) (*bxbase.IncludedResp, error) {
+	l := logic.NewIncludedLogic(ctx, s.svcCtx)
+	return l.Included(in)
+}

+ 74 - 0
jyBXBase/rpc/logs/access.log

@@ -0,0 +1,74 @@
+{"@timestamp":"2022-10-12T13:36:02.212+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T13:36:02.212+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T13:45:11.406+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T13:45:11.406+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T14:03:51.078+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T14:03:51.079+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T14:06:09.540+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T14:06:09.540+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T14:06:31.624+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T14:06:31.624+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T14:46:26.484+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T14:46:26.484+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T15:12:28.772+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T15:12:28.772+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T15:16:22.599+08:00","level":"info","duration":"9.6ms","content":"127.0.0.1:51560 - /bxcol.bxbase/NewestBidding - {\"userId\":\"6103bb722abfa5f4d81bb1d1\",\"appId\":\"10000\"}","trace":"13ee388d6c926a58faab32872da8eab5","span":"044663d8b39a385f"}
+{"@timestamp":"2022-10-12T15:21:49.491+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T15:21:49.491+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T15:22:37.262+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T15:22:37.262+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T15:23:54.620+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T15:23:54.620+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T15:23:56.772+08:00","level":"info","duration":"14.0ms","content":"127.0.0.1:53263 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"9bab1a31f78fc2c785bf0ebf0b18f279","span":"54ffef6490a53153"}
+{"@timestamp":"2022-10-12T15:40:45.228+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T15:40:45.228+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T15:40:51.876+08:00","level":"info","duration":"11.1ms","content":"127.0.0.1:55924 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"e1b5149190eb478e5c83fe3165e7e86d","span":"bf7204b0015c1d2e"}
+{"@timestamp":"2022-10-12T15:42:55.457+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T15:42:55.457+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T15:42:57.734+08:00","level":"info","duration":"11.7ms","content":"127.0.0.1:56319 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"90f2eea92ebefd97a4f729a17c91beee","span":"60fb2c82abc639b7"}
+{"@timestamp":"2022-10-12T17:11:51.022+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T17:11:51.022+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T17:11:57.411+08:00","level":"info","duration":"11.2ms","content":"127.0.0.1:57532 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"7f2f93494b914f2d8baab86b240f952e","span":"3de462201a08d291"}
+{"@timestamp":"2022-10-12T17:12:55.918+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T17:12:55.918+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T17:13:36.047+08:00","level":"info","duration":"9.4ms","content":"127.0.0.1:57708 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"27d8b28aef5acee0a3a1ceb6050e7771","span":"6447f1c54232d19c"}
+{"@timestamp":"2022-10-12T17:13:47.918+08:00","level":"info","duration":"7.9ms","content":"127.0.0.1:57822 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"33f9f03f7e8e9a8518371f4c7cde954b","span":"3983cd60aa5e0444"}
+{"@timestamp":"2022-10-12T17:14:33.415+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T17:14:33.415+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T17:14:36.279+08:00","level":"info","duration":"9.0ms","content":"127.0.0.1:57963 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"09bffaa12e1b73b26595abc5710019f7","span":"69730b9efd645902"}
+{"@timestamp":"2022-10-12T17:14:42.046+08:00","level":"info","duration":"5.9ms","content":"127.0.0.1:57963 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"6d890405cea040235d410ca5f4956b77","span":"352e76a15b78e78f"}
+{"@timestamp":"2022-10-12T17:15:00.298+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T17:15:00.298+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T17:15:02.558+08:00","level":"info","duration":"11.1ms","content":"127.0.0.1:58053 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"64cf3964b90fbc47813c4a5775fb68c8","span":"9db5e8f496f1bc81"}
+{"@timestamp":"2022-10-12T17:15:35.182+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T17:15:35.182+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T17:15:36.832+08:00","level":"info","duration":"9.4ms","content":"127.0.0.1:58158 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"60a054c0ee051915c802d21c36557a98","span":"20deae5aa6ac83de"}
+{"@timestamp":"2022-10-12T17:15:51.116+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T17:15:51.116+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T17:16:33.372+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T17:16:33.372+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T17:16:36.073+08:00","level":"info","duration":"10.8ms","content":"127.0.0.1:58340 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"831243497b0a2bc2f38bebec18ac7596","span":"8507796ab59d55dc"}
+{"@timestamp":"2022-10-12T17:16:41.184+08:00","level":"info","duration":"1.3ms","content":"127.0.0.1:58340 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"209080506f12fd9d2b796d30b990f164","span":"fb6fe59de5fad9f4"}
+{"@timestamp":"2022-10-12T17:16:42.370+08:00","level":"info","duration":"1.3ms","content":"127.0.0.1:58340 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"4372645b411b30d58c4879f8e8bdd8d7","span":"66abc1e830c06684"}
+{"@timestamp":"2022-10-12T17:17:18.087+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T17:17:18.087+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T17:17:35.404+08:00","level":"info","duration":"1.9ms","content":"127.0.0.1:58459 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"1cacd33965abf967587771804ffc2673","span":"6058312973ccb2f7"}
+{"@timestamp":"2022-10-12T17:18:01.130+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T17:18:01.130+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T17:18:07.370+08:00","level":"info","duration":"1.9ms","content":"127.0.0.1:58607 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"0064c8c05cd0c5c573c8af92b7cf48f2","span":"10737f5b97cc5bd0"}
+{"@timestamp":"2022-10-12T17:18:10.699+08:00","level":"info","duration":"1.5ms","content":"127.0.0.1:58607 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"d84a43c9829e5c2ce8e926ed998e51d2","span":"3126d5d24fe0c8fd"}
+{"@timestamp":"2022-10-12T17:18:11.231+08:00","level":"info","duration":"1.7ms","content":"127.0.0.1:58607 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"14e3f4f4d83f462f2caf97b2e21818b2","span":"970dc2b9beb944dd"}
+{"@timestamp":"2022-10-12T17:18:11.717+08:00","level":"info","duration":"1.6ms","content":"127.0.0.1:58607 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"e769f01bf4a02e41145a912f738f71a8","span":"95f12cf0c7455a8f"}
+{"@timestamp":"2022-10-12T17:18:12.177+08:00","level":"info","duration":"1.7ms","content":"127.0.0.1:58607 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"7acc418b24b57bb2cf4ee8bc3330f0aa","span":"f6af6bde3ef2c8ab"}
+{"@timestamp":"2022-10-12T17:18:12.639+08:00","level":"info","duration":"1.5ms","content":"127.0.0.1:58607 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"34bb74362a1a4a38d35401dbb4ac684e","span":"91c9beecfbcff844"}
+{"@timestamp":"2022-10-12T17:18:13.092+08:00","level":"info","duration":"1.5ms","content":"127.0.0.1:58607 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"54be90442b7a9259c7f0959de1ab352b","span":"14d7aeef3cc57718"}
+{"@timestamp":"2022-10-12T17:18:13.630+08:00","level":"info","duration":"1.7ms","content":"127.0.0.1:58607 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"b91fe966cf74b219616f2db29fd8c9d8","span":"9da86bdf111b474a"}
+{"@timestamp":"2022-10-12T17:18:26.079+08:00","level":"info","duration":"10.2ms","content":"127.0.0.1:58607 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"b58568c7ab79bdb835411afcf363b412","span":"c8df6eba7afe575b"}
+{"@timestamp":"2022-10-12T17:18:48.134+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T17:18:48.134+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T17:18:49.798+08:00","level":"info","duration":"1.5ms","content":"127.0.0.1:58716 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"86e45c4df80798340852d42b61eab853","span":"c23a426d4f37a8c5"}
+{"@timestamp":"2022-10-12T17:19:09.169+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T17:19:09.169+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T17:21:14.924+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-10-12T17:21:14.925+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-10-12T17:21:40.964+08:00","level":"info","duration":"1.9ms","content":"127.0.0.1:59291 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"a63570a4bc03f94425a0a317e2db1613","span":"b79fdb0e3c574a01"}

+ 0 - 0
jyBXBase/rpc/logs/error.log


File diff suppressed because it is too large
+ 0 - 0
jyBXBase/rpc/logs/error.log-2022-10-12


+ 0 - 0
jyBXBase/rpc/logs/severe.log


+ 7 - 0
jyBXBase/rpc/logs/slow.log

@@ -0,0 +1,7 @@
+{"@timestamp":"2022-10-12T15:12:06.809+08:00","level":"slow","duration":"5140.6ms","content":"[RPC] slowcall - 127.0.0.1:50794 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"46b79624b3d4003bbdbc8e0b370bf127","span":"1869927a19d1a520"}
+{"@timestamp":"2022-10-12T15:12:20.453+08:00","level":"slow","duration":"8010.8ms","content":"[RPC] slowcall - 127.0.0.1:51302 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"b838479c7559655eb5f9f33b8562d74f","span":"b4083cb91dcd03f6"}
+{"@timestamp":"2022-10-12T15:13:30.837+08:00","level":"slow","duration":"3965.7ms","content":"[RPC] slowcall - 127.0.0.1:51372 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"c40b8d37ff7ea9b41909a6674a5317f3","span":"abe12add1146e0b1"}
+{"@timestamp":"2022-10-12T15:13:42.447+08:00","level":"slow","duration":"8013.7ms","content":"[RPC] slowcall - 127.0.0.1:51560 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"fcbc0621e50ac9a57634a1903d6a801f","span":"1f0f50a3bab80523"}
+{"@timestamp":"2022-10-12T15:16:20.756+08:00","level":"slow","duration":"8003.0ms","content":"[RPC] slowcall - 127.0.0.1:51560 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"95c39a7a4bcc1cceebdba84e7a8cf7d5","span":"dd26e43c2f7c8405"}
+{"@timestamp":"2022-10-12T15:21:59.035+08:00","level":"slow","duration":"5013.3ms","content":"[RPC] slowcall - 127.0.0.1:52973 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"7b16544802dc85d243250330dea14ddf","span":"0c43bd51a446f916"}
+{"@timestamp":"2022-10-12T15:22:42.993+08:00","level":"slow","duration":"3109.6ms","content":"[RPC] slowcall - 127.0.0.1:53089 - /bxcol.bxbase/Included - {\"AppId\":\"10000\"}","trace":"6955dc01218152005557b14bc06e57de","span":"6d8e2fe29af8bcc1"}

+ 0 - 0
jyBXBase/rpc/logs/stat.log


+ 538 - 0
jyBXBase/rpc/logs/stat.log-2022-10-12

@@ -0,0 +1,538 @@
+{"@timestamp":"2022-10-12T14:04:51.030+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.4Mi, TotalAlloc=8.2Mi, Sys=19.7Mi, NumGC=4"}
+{"@timestamp":"2022-10-12T14:04:51.079+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:05:51.027+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.4Mi, TotalAlloc=9.2Mi, Sys=28.7Mi, NumGC=5"}
+{"@timestamp":"2022-10-12T14:05:51.088+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:07:31.572+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.2Mi, TotalAlloc=8.1Mi, Sys=23.5Mi, NumGC=4"}
+{"@timestamp":"2022-10-12T14:07:31.625+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:08:31.581+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.2Mi, TotalAlloc=9.1Mi, Sys=23.8Mi, NumGC=5"}
+{"@timestamp":"2022-10-12T14:08:31.628+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:09:31.578+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.2Mi, TotalAlloc=10.0Mi, Sys=24.3Mi, NumGC=6"}
+{"@timestamp":"2022-10-12T14:09:31.626+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:10:31.579+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.8Mi, Sys=24.3Mi, NumGC=6"}
+{"@timestamp":"2022-10-12T14:10:31.625+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:11:31.574+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.2Mi, TotalAlloc=11.5Mi, Sys=24.3Mi, NumGC=7"}
+{"@timestamp":"2022-10-12T14:11:31.635+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:12:31.569+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.1Mi, TotalAlloc=12.3Mi, Sys=24.3Mi, NumGC=8"}
+{"@timestamp":"2022-10-12T14:12:31.633+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:13:31.570+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=13.1Mi, Sys=24.3Mi, NumGC=8"}
+{"@timestamp":"2022-10-12T14:13:31.630+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:14:31.576+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.1Mi, TotalAlloc=13.9Mi, Sys=24.3Mi, NumGC=9"}
+{"@timestamp":"2022-10-12T14:14:31.625+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:15:31.578+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=14.8Mi, Sys=24.3Mi, NumGC=9"}
+{"@timestamp":"2022-10-12T14:15:31.625+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:16:31.571+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.3Mi, TotalAlloc=15.6Mi, Sys=24.3Mi, NumGC=10"}
+{"@timestamp":"2022-10-12T14:16:31.633+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:17:31.569+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=16.4Mi, Sys=24.5Mi, NumGC=10"}
+{"@timestamp":"2022-10-12T14:17:31.632+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:18:31.570+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.3Mi, TotalAlloc=17.3Mi, Sys=24.5Mi, NumGC=11"}
+{"@timestamp":"2022-10-12T14:18:31.631+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:19:31.577+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=18.1Mi, Sys=24.5Mi, NumGC=11"}
+{"@timestamp":"2022-10-12T14:19:31.625+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:20:31.567+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.4Mi, TotalAlloc=18.9Mi, Sys=24.5Mi, NumGC=12"}
+{"@timestamp":"2022-10-12T14:20:31.631+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:21:31.581+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=19.8Mi, Sys=24.8Mi, NumGC=12"}
+{"@timestamp":"2022-10-12T14:21:31.628+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:22:31.579+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=20.6Mi, Sys=24.8Mi, NumGC=13"}
+{"@timestamp":"2022-10-12T14:22:31.625+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:23:31.576+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.1Mi, TotalAlloc=21.4Mi, Sys=24.8Mi, NumGC=14"}
+{"@timestamp":"2022-10-12T14:23:31.625+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:24:31.577+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.1Mi, TotalAlloc=22.3Mi, Sys=24.8Mi, NumGC=15"}
+{"@timestamp":"2022-10-12T14:24:31.625+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:25:31.571+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=23.1Mi, Sys=24.8Mi, NumGC=15"}
+{"@timestamp":"2022-10-12T14:25:31.633+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:26:31.573+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.4Mi, TotalAlloc=24.0Mi, Sys=24.8Mi, NumGC=16"}
+{"@timestamp":"2022-10-12T14:26:31.634+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:27:31.577+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=24.8Mi, Sys=24.8Mi, NumGC=16"}
+{"@timestamp":"2022-10-12T14:27:31.625+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:28:31.578+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.4Mi, TotalAlloc=25.5Mi, Sys=24.8Mi, NumGC=17"}
+{"@timestamp":"2022-10-12T14:28:31.626+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:29:31.570+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=26.3Mi, Sys=24.8Mi, NumGC=17"}
+{"@timestamp":"2022-10-12T14:29:31.632+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:30:31.576+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=27.2Mi, Sys=24.8Mi, NumGC=18"}
+{"@timestamp":"2022-10-12T14:30:31.625+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:31:31.581+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=28.0Mi, Sys=24.8Mi, NumGC=18"}
+{"@timestamp":"2022-10-12T14:31:31.628+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:32:31.566+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=28.9Mi, Sys=24.8Mi, NumGC=19"}
+{"@timestamp":"2022-10-12T14:32:31.625+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:33:31.569+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.2Mi, TotalAlloc=29.7Mi, Sys=24.8Mi, NumGC=20"}
+{"@timestamp":"2022-10-12T14:33:31.632+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:34:31.568+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=30.5Mi, Sys=24.8Mi, NumGC=20"}
+{"@timestamp":"2022-10-12T14:34:31.630+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:35:31.573+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.3Mi, TotalAlloc=31.4Mi, Sys=24.8Mi, NumGC=21"}
+{"@timestamp":"2022-10-12T14:35:31.634+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:36:31.581+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=32.2Mi, Sys=24.8Mi, NumGC=21"}
+{"@timestamp":"2022-10-12T14:36:31.628+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:37:31.577+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.3Mi, TotalAlloc=33.0Mi, Sys=24.8Mi, NumGC=22"}
+{"@timestamp":"2022-10-12T14:37:31.625+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:38:31.567+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=33.9Mi, Sys=24.8Mi, NumGC=22"}
+{"@timestamp":"2022-10-12T14:38:31.628+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:39:31.579+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.4Mi, TotalAlloc=34.7Mi, Sys=24.8Mi, NumGC=23"}
+{"@timestamp":"2022-10-12T14:39:31.625+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:40:31.571+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=35.5Mi, Sys=24.8Mi, NumGC=23"}
+{"@timestamp":"2022-10-12T14:40:31.634+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:41:31.568+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.4Mi, TotalAlloc=36.3Mi, Sys=24.8Mi, NumGC=24"}
+{"@timestamp":"2022-10-12T14:41:31.628+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:42:31.576+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=37.1Mi, Sys=24.8Mi, NumGC=24"}
+{"@timestamp":"2022-10-12T14:42:31.625+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:43:31.580+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.4Mi, TotalAlloc=38.0Mi, Sys=28.9Mi, NumGC=25"}
+{"@timestamp":"2022-10-12T14:43:31.626+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:44:31.578+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=38.8Mi, Sys=28.9Mi, NumGC=25"}
+{"@timestamp":"2022-10-12T14:44:31.625+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:45:31.568+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.4Mi, TotalAlloc=39.5Mi, Sys=28.9Mi, NumGC=26"}
+{"@timestamp":"2022-10-12T14:45:31.629+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:47:26.429+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.2Mi, TotalAlloc=8.2Mi, Sys=19.4Mi, NumGC=4"}
+{"@timestamp":"2022-10-12T14:47:26.491+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:48:26.433+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.3Mi, TotalAlloc=9.1Mi, Sys=24.5Mi, NumGC=5"}
+{"@timestamp":"2022-10-12T14:48:26.495+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:49:26.434+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.1Mi, TotalAlloc=10.0Mi, Sys=24.8Mi, NumGC=6"}
+{"@timestamp":"2022-10-12T14:49:26.495+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:50:26.431+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.8Mi, Sys=24.8Mi, NumGC=6"}
+{"@timestamp":"2022-10-12T14:50:26.492+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:51:26.437+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.4Mi, TotalAlloc=11.7Mi, Sys=24.8Mi, NumGC=7"}
+{"@timestamp":"2022-10-12T14:51:26.484+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:52:26.425+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=12.5Mi, Sys=24.8Mi, NumGC=7"}
+{"@timestamp":"2022-10-12T14:52:26.487+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:53:26.424+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.3Mi, TotalAlloc=13.3Mi, Sys=24.8Mi, NumGC=8"}
+{"@timestamp":"2022-10-12T14:53:26.485+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:54:26.437+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=14.2Mi, Sys=24.8Mi, NumGC=8"}
+{"@timestamp":"2022-10-12T14:54:26.484+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:55:26.438+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.3Mi, TotalAlloc=14.9Mi, Sys=24.8Mi, NumGC=9"}
+{"@timestamp":"2022-10-12T14:55:26.486+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:56:26.439+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=15.7Mi, Sys=25.0Mi, NumGC=9"}
+{"@timestamp":"2022-10-12T14:56:26.484+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:57:26.427+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.4Mi, TotalAlloc=16.6Mi, Sys=25.0Mi, NumGC=10"}
+{"@timestamp":"2022-10-12T14:57:26.489+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:58:26.428+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=17.4Mi, Sys=25.0Mi, NumGC=10"}
+{"@timestamp":"2022-10-12T14:58:26.491+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T14:59:26.438+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.4Mi, TotalAlloc=18.2Mi, Sys=25.0Mi, NumGC=11"}
+{"@timestamp":"2022-10-12T14:59:26.485+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:00:26.437+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=19.0Mi, Sys=25.0Mi, NumGC=11"}
+{"@timestamp":"2022-10-12T15:00:26.485+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:01:26.433+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.4Mi, TotalAlloc=19.9Mi, Sys=25.0Mi, NumGC=12"}
+{"@timestamp":"2022-10-12T15:01:26.494+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:02:26.427+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.2Mi, TotalAlloc=20.7Mi, Sys=25.0Mi, NumGC=13"}
+{"@timestamp":"2022-10-12T15:02:26.489+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:03:26.429+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=21.5Mi, Sys=25.0Mi, NumGC=13"}
+{"@timestamp":"2022-10-12T15:03:26.490+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:04:26.429+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.3Mi, TotalAlloc=22.3Mi, Sys=25.0Mi, NumGC=14"}
+{"@timestamp":"2022-10-12T15:04:26.490+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:05:26.436+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=23.1Mi, Sys=25.0Mi, NumGC=14"}
+{"@timestamp":"2022-10-12T15:05:26.484+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:06:26.427+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.4Mi, TotalAlloc=24.0Mi, Sys=25.0Mi, NumGC=15"}
+{"@timestamp":"2022-10-12T15:06:26.491+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:07:26.427+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=24.8Mi, Sys=25.0Mi, NumGC=15"}
+{"@timestamp":"2022-10-12T15:07:26.489+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:08:26.428+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.4Mi, TotalAlloc=25.6Mi, Sys=25.0Mi, NumGC=16"}
+{"@timestamp":"2022-10-12T15:08:26.491+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:09:26.427+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=26.4Mi, Sys=25.0Mi, NumGC=16"}
+{"@timestamp":"2022-10-12T15:09:26.489+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:10:26.428+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=27.4Mi, Sys=25.0Mi, NumGC=17"}
+{"@timestamp":"2022-10-12T15:10:26.490+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:11:26.424+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=28.2Mi, Sys=25.0Mi, NumGC=17"}
+{"@timestamp":"2022-10-12T15:11:26.486+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:12:26.432+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=29.3Mi, Sys=25.0Mi, NumGC=18"}
+{"@timestamp":"2022-10-12T15:12:26.494+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0"}
+{"@timestamp":"2022-10-12T15:13:28.724+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=8.5Mi, Sys=24.3Mi, NumGC=4"}
+{"@timestamp":"2022-10-12T15:13:28.773+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:14:28.724+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.6Mi, Sys=24.5Mi, NumGC=5"}
+{"@timestamp":"2022-10-12T15:14:28.772+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 2, drop: 0"}
+{"@timestamp":"2022-10-12T15:14:30.842+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 5989.5ms, med: 8013.7ms, 90th: 8013.7ms, 99th: 8013.7ms, 99.9th: 8013.7ms"}
+{"@timestamp":"2022-10-12T15:15:28.718+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=10.4Mi, Sys=24.5Mi, NumGC=6"}
+{"@timestamp":"2022-10-12T15:15:28.780+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:15:30.849+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:16:28.725+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.4Mi, TotalAlloc=11.4Mi, Sys=24.8Mi, NumGC=7"}
+{"@timestamp":"2022-10-12T15:16:28.773+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0"}
+{"@timestamp":"2022-10-12T15:16:30.852+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 4006.0ms, med: 8003.0ms, 90th: 8003.0ms, 99th: 8003.0ms, 99.9th: 8003.0ms"}
+{"@timestamp":"2022-10-12T15:17:28.721+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=12.2Mi, Sys=24.8Mi, NumGC=7"}
+{"@timestamp":"2022-10-12T15:17:28.782+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:17:30.846+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:18:28.711+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=13.0Mi, Sys=24.8Mi, NumGC=8"}
+{"@timestamp":"2022-10-12T15:18:28.772+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:18:30.851+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:19:28.721+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=13.8Mi, Sys=24.8Mi, NumGC=8"}
+{"@timestamp":"2022-10-12T15:19:28.783+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:19:30.852+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:20:28.719+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=14.7Mi, Sys=28.9Mi, NumGC=9"}
+{"@timestamp":"2022-10-12T15:20:28.780+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:20:30.844+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:21:28.722+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=15.5Mi, Sys=28.9Mi, NumGC=9"}
+{"@timestamp":"2022-10-12T15:21:28.783+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:21:30.846+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:24:54.571+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=8.5Mi, Sys=18.9Mi, NumGC=4"}
+{"@timestamp":"2022-10-12T15:24:54.633+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-10-12T15:24:56.783+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 14.0ms, med: 14.0ms, 90th: 14.0ms, 99th: 14.0ms, 99.9th: 14.0ms"}
+{"@timestamp":"2022-10-12T15:25:54.562+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=9.5Mi, Sys=27.4Mi, NumGC=5"}
+{"@timestamp":"2022-10-12T15:25:54.624+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:25:56.786+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:26:54.561+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=10.3Mi, Sys=28.2Mi, NumGC=5"}
+{"@timestamp":"2022-10-12T15:26:54.624+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:26:56.773+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:27:54.567+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=11.1Mi, Sys=28.4Mi, NumGC=6"}
+{"@timestamp":"2022-10-12T15:27:54.630+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:27:56.779+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:28:54.573+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=12.0Mi, Sys=28.4Mi, NumGC=6"}
+{"@timestamp":"2022-10-12T15:28:54.621+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:28:56.774+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:29:54.566+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=12.8Mi, Sys=28.4Mi, NumGC=7"}
+{"@timestamp":"2022-10-12T15:29:54.627+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:29:56.775+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:30:54.569+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=13.6Mi, Sys=28.4Mi, NumGC=7"}
+{"@timestamp":"2022-10-12T15:30:54.630+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:30:56.775+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:31:54.566+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=14.5Mi, Sys=28.4Mi, NumGC=8"}
+{"@timestamp":"2022-10-12T15:31:54.627+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:31:56.776+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:32:54.568+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=15.3Mi, Sys=28.7Mi, NumGC=8"}
+{"@timestamp":"2022-10-12T15:32:54.630+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:32:56.775+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:33:54.564+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=16.1Mi, Sys=28.7Mi, NumGC=9"}
+{"@timestamp":"2022-10-12T15:33:54.626+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:33:56.780+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:34:54.559+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=16.9Mi, Sys=28.7Mi, NumGC=9"}
+{"@timestamp":"2022-10-12T15:34:54.623+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:34:56.786+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:35:54.562+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=17.7Mi, Sys=28.7Mi, NumGC=10"}
+{"@timestamp":"2022-10-12T15:35:54.623+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:35:56.779+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:36:54.557+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=18.6Mi, Sys=28.7Mi, NumGC=10"}
+{"@timestamp":"2022-10-12T15:36:54.621+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:36:56.786+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:37:54.571+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=19.4Mi, Sys=28.7Mi, NumGC=11"}
+{"@timestamp":"2022-10-12T15:37:54.633+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:37:56.786+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:38:54.558+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=20.2Mi, Sys=28.7Mi, NumGC=11"}
+{"@timestamp":"2022-10-12T15:38:54.622+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:38:56.787+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:39:54.566+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=21.0Mi, Sys=28.7Mi, NumGC=12"}
+{"@timestamp":"2022-10-12T15:39:54.627+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:39:56.786+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:41:45.169+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=8.8Mi, Sys=24.0Mi, NumGC=4"}
+{"@timestamp":"2022-10-12T15:41:45.231+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-10-12T15:41:51.888+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 11.0ms, med: 11.1ms, 90th: 11.1ms, 99th: 11.1ms, 99.9th: 11.1ms"}
+{"@timestamp":"2022-10-12T15:43:55.395+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=8.6Mi, Sys=24.3Mi, NumGC=4"}
+{"@timestamp":"2022-10-12T15:43:55.458+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-10-12T15:43:57.744+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 11.0ms, med: 11.7ms, 90th: 11.7ms, 99th: 11.7ms, 99.9th: 11.7ms"}
+{"@timestamp":"2022-10-12T15:44:55.405+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.6Mi, Sys=24.5Mi, NumGC=5"}
+{"@timestamp":"2022-10-12T15:44:55.468+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:44:57.740+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:45:55.395+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=10.4Mi, Sys=24.5Mi, NumGC=5"}
+{"@timestamp":"2022-10-12T15:45:55.458+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:45:57.737+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:46:55.399+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=11.2Mi, Sys=24.5Mi, NumGC=6"}
+{"@timestamp":"2022-10-12T15:46:55.461+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:46:57.742+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:47:55.403+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=12.1Mi, Sys=24.5Mi, NumGC=6"}
+{"@timestamp":"2022-10-12T15:47:55.464+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:47:57.743+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:48:55.402+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=12.9Mi, Sys=24.5Mi, NumGC=7"}
+{"@timestamp":"2022-10-12T15:48:55.464+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:48:57.741+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:49:55.401+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=13.7Mi, Sys=24.8Mi, NumGC=7"}
+{"@timestamp":"2022-10-12T15:49:55.463+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:49:57.738+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:50:55.405+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=14.5Mi, Sys=24.8Mi, NumGC=8"}
+{"@timestamp":"2022-10-12T15:50:55.466+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:50:57.738+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:51:55.400+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=15.4Mi, Sys=24.8Mi, NumGC=8"}
+{"@timestamp":"2022-10-12T15:51:55.461+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:51:57.735+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:52:55.395+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=16.2Mi, Sys=24.8Mi, NumGC=9"}
+{"@timestamp":"2022-10-12T15:52:55.458+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:52:57.735+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:53:55.406+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=17.0Mi, Sys=24.8Mi, NumGC=9"}
+{"@timestamp":"2022-10-12T15:53:55.468+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:53:57.736+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:54:55.398+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=17.9Mi, Sys=24.8Mi, NumGC=10"}
+{"@timestamp":"2022-10-12T15:54:55.461+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:54:57.743+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:55:55.404+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=18.7Mi, Sys=24.8Mi, NumGC=10"}
+{"@timestamp":"2022-10-12T15:55:55.466+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:55:57.737+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:56:55.398+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=19.5Mi, Sys=24.8Mi, NumGC=11"}
+{"@timestamp":"2022-10-12T15:56:55.459+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:56:57.742+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:57:55.398+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=20.4Mi, Sys=24.8Mi, NumGC=11"}
+{"@timestamp":"2022-10-12T15:57:55.460+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:57:57.744+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:58:55.408+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=21.2Mi, Sys=24.8Mi, NumGC=12"}
+{"@timestamp":"2022-10-12T15:58:55.469+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:58:57.737+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T15:59:55.405+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=22.0Mi, Sys=24.8Mi, NumGC=12"}
+{"@timestamp":"2022-10-12T15:59:55.468+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T15:59:57.742+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:00:55.404+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=22.8Mi, Sys=24.8Mi, NumGC=13"}
+{"@timestamp":"2022-10-12T16:00:55.464+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:00:57.739+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:01:55.395+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=23.6Mi, Sys=24.8Mi, NumGC=13"}
+{"@timestamp":"2022-10-12T16:01:55.458+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:01:57.743+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:02:55.404+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=24.5Mi, Sys=24.8Mi, NumGC=14"}
+{"@timestamp":"2022-10-12T16:02:55.466+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:02:57.740+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:03:55.400+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=25.3Mi, Sys=24.8Mi, NumGC=14"}
+{"@timestamp":"2022-10-12T16:03:55.462+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:03:57.739+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:04:55.397+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=26.2Mi, Sys=24.8Mi, NumGC=15"}
+{"@timestamp":"2022-10-12T16:04:55.460+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:04:57.737+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:05:55.397+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=27.0Mi, Sys=24.8Mi, NumGC=15"}
+{"@timestamp":"2022-10-12T16:05:55.461+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:05:57.740+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:06:55.407+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=27.7Mi, Sys=24.8Mi, NumGC=16"}
+{"@timestamp":"2022-10-12T16:06:55.470+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:06:57.734+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:07:55.394+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=28.6Mi, Sys=24.8Mi, NumGC=16"}
+{"@timestamp":"2022-10-12T16:07:55.457+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:07:57.739+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:08:55.400+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=29.4Mi, Sys=28.9Mi, NumGC=17"}
+{"@timestamp":"2022-10-12T16:08:55.461+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:08:57.746+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:09:55.404+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=30.2Mi, Sys=28.9Mi, NumGC=17"}
+{"@timestamp":"2022-10-12T16:09:55.466+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:09:57.742+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:10:55.408+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=31.0Mi, Sys=28.9Mi, NumGC=18"}
+{"@timestamp":"2022-10-12T16:10:55.470+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:10:57.746+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:11:55.396+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=31.8Mi, Sys=28.9Mi, NumGC=18"}
+{"@timestamp":"2022-10-12T16:11:55.458+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:11:57.739+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:12:55.408+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=32.7Mi, Sys=28.9Mi, NumGC=19"}
+{"@timestamp":"2022-10-12T16:12:55.468+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:12:57.740+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:13:55.409+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=33.5Mi, Sys=28.9Mi, NumGC=19"}
+{"@timestamp":"2022-10-12T16:13:55.470+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:13:57.747+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:14:55.398+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=34.3Mi, Sys=28.9Mi, NumGC=20"}
+{"@timestamp":"2022-10-12T16:14:55.460+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:14:57.745+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:15:55.404+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=35.1Mi, Sys=28.9Mi, NumGC=20"}
+{"@timestamp":"2022-10-12T16:15:55.468+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:15:57.740+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:16:55.409+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=35.9Mi, Sys=28.9Mi, NumGC=21"}
+{"@timestamp":"2022-10-12T16:16:55.458+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:16:57.748+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:17:55.401+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=36.8Mi, Sys=28.9Mi, NumGC=21"}
+{"@timestamp":"2022-10-12T16:17:55.463+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:17:57.736+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:18:55.396+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=37.6Mi, Sys=28.9Mi, NumGC=22"}
+{"@timestamp":"2022-10-12T16:18:55.458+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:18:57.743+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:19:55.401+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=38.4Mi, Sys=28.9Mi, NumGC=22"}
+{"@timestamp":"2022-10-12T16:19:55.457+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:19:57.736+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:20:55.403+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=39.2Mi, Sys=28.9Mi, NumGC=23"}
+{"@timestamp":"2022-10-12T16:20:55.464+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:20:57.738+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:21:55.402+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=40.0Mi, Sys=28.9Mi, NumGC=23"}
+{"@timestamp":"2022-10-12T16:21:55.465+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:21:57.736+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:22:55.402+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=40.9Mi, Sys=28.9Mi, NumGC=24"}
+{"@timestamp":"2022-10-12T16:22:55.464+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:22:57.737+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:23:55.396+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=41.6Mi, Sys=28.9Mi, NumGC=24"}
+{"@timestamp":"2022-10-12T16:23:55.458+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:23:57.741+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:24:55.406+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=42.5Mi, Sys=28.9Mi, NumGC=25"}
+{"@timestamp":"2022-10-12T16:24:55.466+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:24:57.738+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:25:55.397+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=43.2Mi, Sys=28.9Mi, NumGC=25"}
+{"@timestamp":"2022-10-12T16:25:55.457+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:25:57.736+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:26:55.404+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=44.1Mi, Sys=28.9Mi, NumGC=26"}
+{"@timestamp":"2022-10-12T16:26:55.466+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:26:57.737+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:27:55.407+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=44.9Mi, Sys=28.9Mi, NumGC=26"}
+{"@timestamp":"2022-10-12T16:27:55.468+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:27:57.744+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:28:55.405+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=45.6Mi, Sys=28.9Mi, NumGC=27"}
+{"@timestamp":"2022-10-12T16:28:55.458+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:28:57.748+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:29:55.404+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=46.4Mi, Sys=28.9Mi, NumGC=27"}
+{"@timestamp":"2022-10-12T16:29:55.465+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:29:57.744+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:30:55.399+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=47.2Mi, Sys=28.9Mi, NumGC=28"}
+{"@timestamp":"2022-10-12T16:30:55.461+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:30:57.735+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:31:55.405+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=48.0Mi, Sys=28.9Mi, NumGC=28"}
+{"@timestamp":"2022-10-12T16:31:55.466+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:31:57.736+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:32:55.401+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=48.8Mi, Sys=28.9Mi, NumGC=29"}
+{"@timestamp":"2022-10-12T16:32:55.463+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:32:57.744+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:33:55.401+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=49.6Mi, Sys=28.9Mi, NumGC=29"}
+{"@timestamp":"2022-10-12T16:33:55.463+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:33:57.743+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:34:55.404+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=50.4Mi, Sys=28.9Mi, NumGC=30"}
+{"@timestamp":"2022-10-12T16:34:55.466+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:34:57.741+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:35:55.402+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=51.3Mi, Sys=28.9Mi, NumGC=30"}
+{"@timestamp":"2022-10-12T16:35:55.465+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:35:57.735+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:36:55.407+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=52.1Mi, Sys=28.9Mi, NumGC=31"}
+{"@timestamp":"2022-10-12T16:36:55.469+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:36:57.743+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:37:55.397+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=52.9Mi, Sys=28.9Mi, NumGC=31"}
+{"@timestamp":"2022-10-12T16:37:55.459+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:37:57.747+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:38:55.396+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=53.7Mi, Sys=28.9Mi, NumGC=32"}
+{"@timestamp":"2022-10-12T16:38:55.459+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:38:57.748+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:39:55.394+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=54.5Mi, Sys=28.9Mi, NumGC=32"}
+{"@timestamp":"2022-10-12T16:39:55.458+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:39:57.741+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:40:55.399+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=55.3Mi, Sys=28.9Mi, NumGC=33"}
+{"@timestamp":"2022-10-12T16:40:55.461+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:40:57.734+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:41:55.406+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=56.1Mi, Sys=28.9Mi, NumGC=33"}
+{"@timestamp":"2022-10-12T16:41:55.468+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:41:57.743+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:42:55.402+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=56.9Mi, Sys=28.9Mi, NumGC=34"}
+{"@timestamp":"2022-10-12T16:42:55.463+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:42:57.739+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:43:55.399+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=57.7Mi, Sys=28.9Mi, NumGC=34"}
+{"@timestamp":"2022-10-12T16:43:55.462+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:43:57.734+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:44:55.399+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=58.5Mi, Sys=28.9Mi, NumGC=35"}
+{"@timestamp":"2022-10-12T16:44:55.460+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:44:57.733+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:45:55.406+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=59.3Mi, Sys=28.9Mi, NumGC=35"}
+{"@timestamp":"2022-10-12T16:45:55.467+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:45:57.741+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:46:55.404+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=60.1Mi, Sys=28.9Mi, NumGC=36"}
+{"@timestamp":"2022-10-12T16:46:55.466+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:46:57.743+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:47:55.396+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=61.0Mi, Sys=28.9Mi, NumGC=36"}
+{"@timestamp":"2022-10-12T16:47:55.458+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:47:57.747+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:48:55.404+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=61.8Mi, Sys=28.9Mi, NumGC=37"}
+{"@timestamp":"2022-10-12T16:48:55.467+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:48:57.742+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:49:55.400+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=62.6Mi, Sys=28.9Mi, NumGC=37"}
+{"@timestamp":"2022-10-12T16:49:55.462+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:49:57.734+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:50:55.409+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=63.4Mi, Sys=28.9Mi, NumGC=38"}
+{"@timestamp":"2022-10-12T16:50:55.458+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:50:57.749+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:51:55.405+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.7Mi, TotalAlloc=64.1Mi, Sys=28.9Mi, NumGC=38"}
+{"@timestamp":"2022-10-12T16:51:55.457+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:51:57.741+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:52:55.406+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=64.9Mi, Sys=28.9Mi, NumGC=39"}
+{"@timestamp":"2022-10-12T16:52:55.469+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:52:57.745+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:53:55.409+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=65.7Mi, Sys=28.9Mi, NumGC=39"}
+{"@timestamp":"2022-10-12T16:53:55.457+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:53:57.748+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:54:55.406+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=66.5Mi, Sys=28.9Mi, NumGC=40"}
+{"@timestamp":"2022-10-12T16:54:55.470+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:54:57.739+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:55:55.398+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=67.4Mi, Sys=28.9Mi, NumGC=40"}
+{"@timestamp":"2022-10-12T16:55:55.459+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:55:57.745+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:56:55.400+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=68.2Mi, Sys=28.9Mi, NumGC=41"}
+{"@timestamp":"2022-10-12T16:56:55.462+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:56:57.748+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:57:55.405+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=69.0Mi, Sys=28.9Mi, NumGC=41"}
+{"@timestamp":"2022-10-12T16:57:55.468+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:57:57.736+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:58:55.405+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=69.8Mi, Sys=28.9Mi, NumGC=42"}
+{"@timestamp":"2022-10-12T16:58:55.468+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:58:57.744+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T16:59:55.401+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=70.6Mi, Sys=28.9Mi, NumGC=42"}
+{"@timestamp":"2022-10-12T16:59:55.462+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T16:59:57.749+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:00:55.397+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=71.5Mi, Sys=28.9Mi, NumGC=43"}
+{"@timestamp":"2022-10-12T17:00:55.460+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:00:57.747+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:01:55.400+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=72.3Mi, Sys=28.9Mi, NumGC=43"}
+{"@timestamp":"2022-10-12T17:01:55.462+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:01:57.735+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:02:55.400+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=73.1Mi, Sys=28.9Mi, NumGC=44"}
+{"@timestamp":"2022-10-12T17:02:55.462+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:02:57.741+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:03:55.402+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=73.9Mi, Sys=28.9Mi, NumGC=44"}
+{"@timestamp":"2022-10-12T17:03:55.464+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:03:57.741+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:04:55.406+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=74.7Mi, Sys=28.9Mi, NumGC=45"}
+{"@timestamp":"2022-10-12T17:04:55.457+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:04:57.741+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:05:55.396+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=75.5Mi, Sys=28.9Mi, NumGC=45"}
+{"@timestamp":"2022-10-12T17:05:55.458+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:05:57.747+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:06:55.397+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=76.3Mi, Sys=28.9Mi, NumGC=46"}
+{"@timestamp":"2022-10-12T17:06:55.461+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:06:57.735+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:07:55.408+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=77.2Mi, Sys=28.9Mi, NumGC=46"}
+{"@timestamp":"2022-10-12T17:07:55.470+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:07:57.747+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:08:55.406+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=78.0Mi, Sys=28.9Mi, NumGC=47"}
+{"@timestamp":"2022-10-12T17:08:55.468+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:08:57.740+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:09:55.398+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.8Mi, TotalAlloc=78.8Mi, Sys=28.9Mi, NumGC=47"}
+{"@timestamp":"2022-10-12T17:09:55.460+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:09:57.744+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:10:55.399+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=79.6Mi, Sys=28.9Mi, NumGC=48"}
+{"@timestamp":"2022-10-12T17:10:55.462+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:10:57.734+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:13:55.861+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=8.5Mi, Sys=19.4Mi, NumGC=4"}
+{"@timestamp":"2022-10-12T17:13:55.924+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0"}
+{"@timestamp":"2022-10-12T17:22:14.867+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=8.6Mi, Sys=24.0Mi, NumGC=4"}
+{"@timestamp":"2022-10-12T17:22:14.929+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-10-12T17:22:40.972+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 1.0ms, med: 1.9ms, 90th: 1.9ms, 99th: 1.9ms, 99.9th: 1.9ms"}
+{"@timestamp":"2022-10-12T17:23:14.870+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.6Mi, Sys=28.7Mi, NumGC=5"}
+{"@timestamp":"2022-10-12T17:23:14.925+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:23:40.967+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:24:14.865+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.4Mi, TotalAlloc=10.5Mi, Sys=28.7Mi, NumGC=6"}
+{"@timestamp":"2022-10-12T17:24:14.927+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:25:58.614+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=8.2Mi, Sys=24.0Mi, NumGC=4"}
+{"@timestamp":"2022-10-12T17:25:58.678+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:26:58.610+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.6Mi, Sys=24.5Mi, NumGC=5"}
+{"@timestamp":"2022-10-12T17:26:58.678+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 3, pass: 3, drop: 0"}
+{"@timestamp":"2022-10-12T17:27:07.402+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.1/s, drops: 0, avg time: 4.3ms, med: 10.5ms, 90th: 10.5ms, 99th: 10.5ms, 99.9th: 10.5ms"}
+{"@timestamp":"2022-10-12T17:27:58.611+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.4Mi, TotalAlloc=10.4Mi, Sys=24.5Mi, NumGC=6"}
+{"@timestamp":"2022-10-12T17:27:58.690+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:28:07.406+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:28:58.617+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=11.2Mi, Sys=24.5Mi, NumGC=6"}
+{"@timestamp":"2022-10-12T17:28:58.679+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:29:07.394+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:29:58.614+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.4Mi, TotalAlloc=12.0Mi, Sys=24.5Mi, NumGC=7"}
+{"@timestamp":"2022-10-12T17:29:58.677+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:30:07.406+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:30:58.611+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=12.9Mi, Sys=24.5Mi, NumGC=7"}
+{"@timestamp":"2022-10-12T17:30:58.687+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:31:07.409+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:31:58.604+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=13.7Mi, Sys=24.8Mi, NumGC=8"}
+{"@timestamp":"2022-10-12T17:31:58.682+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:32:07.399+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:32:58.613+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=14.6Mi, Sys=24.8Mi, NumGC=8"}
+{"@timestamp":"2022-10-12T17:32:58.677+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:33:07.404+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:33:58.608+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=15.4Mi, Sys=24.8Mi, NumGC=9"}
+{"@timestamp":"2022-10-12T17:33:58.686+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:34:07.395+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:34:58.610+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=16.2Mi, Sys=24.8Mi, NumGC=9"}
+{"@timestamp":"2022-10-12T17:34:58.690+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:35:07.398+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:35:58.604+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=17.0Mi, Sys=24.8Mi, NumGC=10"}
+{"@timestamp":"2022-10-12T17:35:58.681+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:36:07.403+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:36:58.613+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=17.9Mi, Sys=24.8Mi, NumGC=10"}
+{"@timestamp":"2022-10-12T17:36:58.678+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:37:07.401+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:37:58.605+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=18.7Mi, Sys=28.9Mi, NumGC=11"}
+{"@timestamp":"2022-10-12T17:37:58.683+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:38:07.401+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:38:58.613+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=19.5Mi, Sys=28.9Mi, NumGC=11"}
+{"@timestamp":"2022-10-12T17:38:58.690+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:39:07.397+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:39:58.615+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=20.4Mi, Sys=28.9Mi, NumGC=12"}
+{"@timestamp":"2022-10-12T17:39:58.678+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:40:07.396+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:40:58.614+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=21.2Mi, Sys=28.9Mi, NumGC=12"}
+{"@timestamp":"2022-10-12T17:40:58.678+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:41:07.397+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T17:41:58.609+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=22.0Mi, Sys=28.9Mi, NumGC=13"}
+{"@timestamp":"2022-10-12T17:41:58.686+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T17:42:07.406+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T20:42:21.607+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-10-12T20:42:21.607+08:00","level":"stat","content":"(bxbase.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-10-12T20:42:21.607+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=22.7Mi, Sys=28.9Mi, NumGC=13"}

+ 1 - 0
jyBXBase/rpc/model/coverage

@@ -0,0 +1 @@
+mode: set

+ 180 - 0
jyBXBase/rpc/model/included.go

@@ -0,0 +1,180 @@
+package model
+
+import (
+	"errors"
+	"fmt"
+	"strconv"
+	"time"
+
+	"app.yhyue.com/moapp/jybase/common"
+	"app.yhyue.com/moapp/jybase/date"
+	"app.yhyue.com/moapp/jybase/mongodb"
+	"app.yhyue.com/moapp/jybase/mysql"
+)
+
+type Included struct {
+	MysqlDb *mysql.Mysql
+	Mgo     mongodb.MongodbSim
+}
+
+const (
+	IncludedInfoDbName = "included_info" //招录信息表
+)
+
+type IncludedData struct {
+	Year                    int64   `json:"Year"`                    //年
+	Month                   int64   `json:"Month"`                   //月
+	Day                     int64   `json:"Day"`                     //日
+	Bid                     float64 `json:"Bid"`                     //招标信息的数值
+	BidUnit                 string  `json:"BidUnit"`                 //招标信息的数值单位
+	BidUnitAppend           string  `json:"BidUnitAppend"`           //招标信息的数值单位后面的加号
+	Project                 float64 `json:"Project"`                 //招标采购项目的数值
+	ProjectUnit             string  `json:"ProjectUnit"`             //招标采购项目的数值单位
+	ProjectUnitAppend       string  `json:"ProjectUnitAppend"`       //招标采购项目的数值单位后面的加号
+	Ent                     float64 `json:"Ent"`                     //企业数据库的数值
+	EntUnit                 string  `json:"EntUnit"`                 //企业数据库的数值单位
+	EntUnitAppend           string  `json:"EntUnitAppend"`           //企业数据库的数值单位后面的加号
+	Buyer                   float64 `json:"Buyer"`                   //采购单位库的数值
+	BuyerUnit               string  `json:"BuyerUnit"`               //采购单位库的数值单位
+	BuyerUnitAppend         string  `json:"BuyerUnitAppend"`         //采购单位库的数值单位后面的加号
+	BidDayUpdate            float64 `json:"BidDayUpdate"`            //每日更新招标信息的数值
+	BidDayUpdateUnit        string  `json:"BidDayUpdateUnit"`        //每日更新招标信息的数值单位
+	BidDayUpdateUnitAppend  string  `json:"BidDayUpdateUnitAppend"`  //每日更新招标信息的数值单位后面的加号
+	BidField                float64 `json:"BidField"`                //招标信息数据字段的数值
+	BidFieldUnit            string  `json:"BidFieldUnit"`            //招标信息数据字段的数值单位
+	BidFieldUnitAppend      string  `json:"BidFieldUnitAppend"`      //招标信息数据字段数值单位后面的加号
+	FieldAccuracy           float64 `json:"FieldAccuracy"`           //数据字段准确率的数值
+	FieldAccuracyUnit       string  `json:"FieldAccuracyUnit"`       //数据字段准确率的数值单位
+	FieldAccuracyUnitAppend string  `json:"FieldAccuracyUnitAppend"` //数据字段准确率的数值单位后面的加号
+	Push                    float64 `json:"Push"`                    //推送招标信息的数值
+	PushUnit                string  `json:"PushUnit"`                //推送招标信息的数值单位
+	PushUnitAppend          string  `json:"PushUnitAppend"`          //推送招标信息的数值单位后面的加号
+}
+
+//获取收录情况的一堆数据
+func (this *Included) GetIncludedData() (*IncludedData, error) {
+	data := this.MysqlDb.SelectBySql(fmt.Sprintf(`select bid,project,ent,buyer,bid_day_update,bid_field,field_accuracy,create_time from %s order by create_time desc limit 1`, IncludedInfoDbName))
+	if data == nil || len(*data) <= 0 {
+		return nil, errors.New("暂无数据")
+	}
+	//
+	info := (*data)[0]
+	//招标信息的数值
+	bid := common.Int64All(info["bid"])
+	Bid, BidUnit := formdataNum(bid)
+	//招标采购项目的数值
+	project := common.Int64All(info["project"])
+	Project, ProjectUnit := formdataNum(project)
+	//企业数据库的数值
+	ent := common.Int64All(info["ent"])
+	Ent, EntUnit := formdataNum(ent)
+	//采购单位库的数值
+	buyer := common.Int64All(info["buyer"])
+	Buyer, BuyerUnit := formdataNum(buyer)
+	//每日更新招标信息的数值
+	bid_day_update := common.Int64All(info["bid_day_update"])
+	BidDayUpdate, BidDayUpdateUnit := formdataNum(bid_day_update)
+	//每日更新招标信息的数值
+	bid_field := common.Int64All(info["bid_field"])
+	BidField, BidFieldUnit := formdataNum(bid_field)
+	//每日更新招标信息的数值
+	field_accuracy := common.Float64All(info["field_accuracy"])
+	FieldAccuracy, FieldAccuracyUnit := field_accuracy, "%"
+	mdata, ok := this.Mgo.Find("swordfish_index", map[string]interface{}{
+		"i_push": map[string]interface{}{
+			"$exists": true,
+		},
+	}, `{"_id":-1}`, `{"i_push":1}`, false, 0, 1)
+	i_push := 0
+	if mdata != nil && ok && len(*mdata) > 0 {
+		swordData := (*mdata)[0]
+		i_push = common.IntAll(swordData["i_push"])
+	}
+	Push, PushUnit := formdataNum(int64(i_push))
+	createTime, _ := time.ParseInLocation(date.Date_Full_Layout, common.ObjToString(info["create_time"]), time.Local)
+	includeData := &IncludedData{
+		Year:              int64(createTime.Year()),
+		Month:             int64(createTime.Month()),
+		Day:               int64(createTime.Day()),
+		Bid:               Bid,
+		BidUnit:           BidUnit,
+		Project:           Project,
+		ProjectUnit:       ProjectUnit,
+		Ent:               Ent,
+		EntUnit:           EntUnit,
+		Buyer:             Buyer,
+		BuyerUnit:         BuyerUnit,
+		BidDayUpdate:      BidDayUpdate,
+		BidDayUpdateUnit:  BidDayUpdateUnit,
+		BidField:          BidField,
+		BidFieldUnit:      BidFieldUnit,
+		FieldAccuracy:     FieldAccuracy,
+		FieldAccuracyUnit: FieldAccuracyUnit,
+		Push:              Push,
+		PushUnit:          PushUnit,
+	}
+	return includeData, nil
+}
+
+//格式输出数据
+//亿亿、万亿、亿、万 只有一位的时候保留1位小数点 两位及以上不保留  1.1亿  11亿
+func formdataNum(num int64) (floatNum float64, unit string) {
+	s_num := strconv.Itoa(int(num))
+	len_m := len(s_num)
+	m := ""
+	indexArr := []int{17, 13, 9, 5}
+	unitArr := []string{"亿亿", "万亿", "亿", "万"}
+
+	for k, v := range indexArr {
+		if len_m > v {
+			if common.IntAll(s_num[len_m-(v-1):len_m-(v-2)]) >= 5 {
+				if common.IntAll(s_num[0:len_m-(v-1)])+1 == 10 {
+					//满10 进 1
+					m1, _ := strconv.Atoi(s_num[0 : len_m-(v-1)])
+					m = strconv.Itoa(m1 + 1)
+				} else {
+					//满 万 进1 单位
+					if common.IntAll(s_num[0:len_m-(v-1)])+1 == 10000 {
+						m = "1"
+						unit = unitArr[k-1]
+					} else {
+						m = strconv.Itoa(common.IntAll(s_num[0:len_m-(v-1)]) + 1)
+					}
+				}
+				// log.Println("m1:", m)
+			} else {
+				m = s_num[0 : len_m-(v-1)]
+				// log.Println("m2:", m)
+			}
+		} else if len_m == v { //
+
+			if common.IntAll(s_num[len_m-(v-2):len_m-(v-3)]) >= 5 {
+				m = s_num[0 : len_m-(v-1)]
+				//满10 进 1
+				if common.IntAll(s_num[len_m-(v-1):len_m-(v-2)])+1 == 10 {
+					m1, _ := strconv.Atoi(s_num[0 : len_m-(v-1)])
+					m = strconv.Itoa(m1 + 1)
+				} else {
+					m += "." + strconv.Itoa(common.IntAll(s_num[len_m-(v-1):len_m-(v-2)])+1)
+				}
+				// log.Println("m3:", m)
+			} else {
+				m = s_num[0 : len_m-(v-1)]
+				m += "." + s_num[len_m-(v-1):len_m-(v-2)]
+				// log.Println("m4:", m)
+			}
+		}
+		if m != "" {
+			if unit == "" {
+				unit = unitArr[k]
+			}
+			break
+		}
+	}
+	if m == "" {
+		m = s_num
+	}
+	//string 转float
+	floatNum, _ = strconv.ParseFloat(m, 64)
+	return floatNum, unit
+}

+ 89 - 0
jyBXBase/rpc/model/included_test.go

@@ -0,0 +1,89 @@
+package model
+
+import (
+	"reflect"
+	"testing"
+
+	"app.yhyue.com/moapp/jybase/mongodb"
+	"app.yhyue.com/moapp/jybase/mysql"
+)
+
+var (
+	BaseMysql *mysql.Mysql
+	MgoJy     mongodb.MongodbSim
+)
+
+func init() {
+	BaseMysql = &mysql.Mysql{
+		Address:      "192.168.3.217:4000",
+		UserName:     "root",
+		PassWord:     "=PDT49#80Z!RVv52_z",
+		DBName:       "base_service",
+		MaxOpenConns: 5,
+		MaxIdleConns: 5,
+	}
+
+	//mongo初始化
+	MgoJy = mongodb.MongodbSim{
+		MongodbAddr: "192.168.3.206:27080",
+		Size:        50,
+		DbName:      "qfw",
+	}
+	MgoJy.InitPool()
+}
+
+func TestIncluded_GetIncludedData(t *testing.T) {
+	type fields struct {
+		MysqlDb *mysql.Mysql
+		Mgo     *mongodb.MongodbSim
+	}
+	tests := []struct {
+		name    string
+		fields  fields
+		want    *IncludedData
+		wantErr bool
+	}{
+		// TODO: Add test cases.
+	}
+	for _, tt := range tests {
+		t.Run(tt.name, func(t *testing.T) {
+			this := &Included{
+				MysqlDb: BaseMysql,
+				Mgo:     MgoJy,
+			}
+			got, err := this.GetIncludedData()
+			if (err != nil) != tt.wantErr {
+				t.Errorf("GetIncludedData() error = %v, wantErr %v", err, tt.wantErr)
+				return
+			}
+			if !reflect.DeepEqual(got, tt.want) {
+				t.Errorf("GetIncludedData() got = %v, want %v", got, tt.want)
+			}
+		})
+	}
+}
+
+func Test_formdataNum(t *testing.T) {
+	type args struct {
+		num int64
+	}
+	tests := []struct {
+		name         string
+		args         args
+		wantFloatNum float64
+		wantUnit     string
+	}{
+		// TODO: Add test cases.
+	}
+	for _, tt := range tests {
+		t.Run(tt.name, func(t *testing.T) {
+			gotFloatNum, gotUnit := formdataNum(tt.args.num)
+			if gotFloatNum != tt.wantFloatNum {
+				t.Errorf("formdataNum() gotFloatNum = %v, want %v", gotFloatNum, tt.wantFloatNum)
+			}
+			if gotUnit != tt.wantUnit {
+				t.Errorf("formdataNum() gotUnit = %v, want %v", gotUnit, tt.wantUnit)
+			}
+		})
+	}
+}

BIN
jyBXBase/rpc/rpc.exe


+ 535 - 15
jyBXBase/rpc/type/bxbase/bxbase.pb.go

@@ -1,7 +1,12 @@
 // Code generated by protoc-gen-go. DO NOT EDIT.
 // versions:
+<<<<<<< HEAD
 // 	protoc-gen-go v1.28.0
 // 	protoc        v3.15.1
+=======
+// 	protoc-gen-go v1.27.1
+// 	protoc        v3.19.4
+>>>>>>> master
 // source: bxbase.proto
 
 package bxbase
@@ -2285,6 +2290,325 @@ func (x *CheckRes) GetData() string {
 	return ""
 }
 
+type AppIdReq struct {
+	state         protoimpl.MessageState
+	sizeCache     protoimpl.SizeCache
+	unknownFields protoimpl.UnknownFields
+
+	AppId string `protobuf:"bytes,1,opt,name=AppId,proto3" json:"AppId,omitempty"`
+}
+
+func (x *AppIdReq) Reset() {
+	*x = AppIdReq{}
+	if protoimpl.UnsafeEnabled {
+		mi := &file_bxbase_proto_msgTypes[27]
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		ms.StoreMessageInfo(mi)
+	}
+}
+
+func (x *AppIdReq) String() string {
+	return protoimpl.X.MessageStringOf(x)
+}
+
+func (*AppIdReq) ProtoMessage() {}
+
+func (x *AppIdReq) ProtoReflect() protoreflect.Message {
+	mi := &file_bxbase_proto_msgTypes[27]
+	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 AppIdReq.ProtoReflect.Descriptor instead.
+func (*AppIdReq) Descriptor() ([]byte, []int) {
+	return file_bxbase_proto_rawDescGZIP(), []int{27}
+}
+
+func (x *AppIdReq) GetAppId() string {
+	if x != nil {
+		return x.AppId
+	}
+	return ""
+}
+
+//剑鱼网站收录情况返回参数
+type IncludedResp struct {
+	state         protoimpl.MessageState
+	sizeCache     protoimpl.SizeCache
+	unknownFields protoimpl.UnknownFields
+
+	Year                    int64   `protobuf:"varint,1,opt,name=year,proto3" json:"year,omitempty"`                                       //年
+	Month                   int64   `protobuf:"varint,2,opt,name=month,proto3" json:"month,omitempty"`                                     //月
+	Day                     int64   `protobuf:"varint,3,opt,name=day,proto3" json:"day,omitempty"`                                         //日
+	Bid                     float32 `protobuf:"fixed32,4,opt,name=bid,proto3" json:"bid,omitempty"`                                        //招标信息的数值
+	BidUnit                 string  `protobuf:"bytes,5,opt,name=bidUnit,proto3" json:"bidUnit,omitempty"`                                  //招标信息的数值单位
+	BidUnitAppend           string  `protobuf:"bytes,6,opt,name=bidUnitAppend,proto3" json:"bidUnitAppend,omitempty"`                      //招标信息的数值单位后面的加号
+	Project                 float32 `protobuf:"fixed32,7,opt,name=project,proto3" json:"project,omitempty"`                                //招标采购项目的数值
+	ProjectUnit             string  `protobuf:"bytes,8,opt,name=projectUnit,proto3" json:"projectUnit,omitempty"`                          //招标采购项目的数值单位
+	ProjectUnitAppend       string  `protobuf:"bytes,9,opt,name=projectUnitAppend,proto3" json:"projectUnitAppend,omitempty"`              //招标采购项目的数值单位后面的加号
+	Ent                     float32 `protobuf:"fixed32,10,opt,name=ent,proto3" json:"ent,omitempty"`                                       //企业数据库的数值
+	EntUnit                 string  `protobuf:"bytes,11,opt,name=entUnit,proto3" json:"entUnit,omitempty"`                                 //企业数据库的数值单位
+	EntUnitAppend           string  `protobuf:"bytes,12,opt,name=entUnitAppend,proto3" json:"entUnitAppend,omitempty"`                     //企业数据库的数值单位后面的加号
+	Buyer                   float32 `protobuf:"fixed32,13,opt,name=buyer,proto3" json:"buyer,omitempty"`                                   //采购单位库的数值
+	BuyerUnit               string  `protobuf:"bytes,14,opt,name=buyerUnit,proto3" json:"buyerUnit,omitempty"`                             //采购单位库的数值单位
+	BuyerUnitAppend         string  `protobuf:"bytes,15,opt,name=buyerUnitAppend,proto3" json:"buyerUnitAppend,omitempty"`                 //采购单位库的数值单位后面的加号
+	BidDayUpdate            float32 `protobuf:"fixed32,16,opt,name=bidDayUpdate,proto3" json:"bidDayUpdate,omitempty"`                     //每日更新招标信息的数值
+	BidDayUpdateUnit        string  `protobuf:"bytes,17,opt,name=bidDayUpdateUnit,proto3" json:"bidDayUpdateUnit,omitempty"`               //每日更新招标信息的数值单位
+	BidDayUpdateUnitAppend  string  `protobuf:"bytes,18,opt,name=bidDayUpdateUnitAppend,proto3" json:"bidDayUpdateUnitAppend,omitempty"`   //每日更新招标信息的数值单位后面的加号
+	BidField                float32 `protobuf:"fixed32,19,opt,name=bidField,proto3" json:"bidField,omitempty"`                             //招标信息数据字段的数值
+	BidFieldUnit            string  `protobuf:"bytes,20,opt,name=bidFieldUnit,proto3" json:"bidFieldUnit,omitempty"`                       //招标信息数据字段的数值单位
+	BidFieldUnitAppend      string  `protobuf:"bytes,21,opt,name=bidFieldUnitAppend,proto3" json:"bidFieldUnitAppend,omitempty"`           //招标信息数据字段数值单位后面的加号
+	FieldAccuracy           float32 `protobuf:"fixed32,22,opt,name=fieldAccuracy,proto3" json:"fieldAccuracy,omitempty"`                   //数据字段准确率的数值
+	FieldAccuracyUnit       string  `protobuf:"bytes,23,opt,name=fieldAccuracyUnit,proto3" json:"fieldAccuracyUnit,omitempty"`             //数据字段准确率的数值单位
+	FieldAccuracyUnitAppend string  `protobuf:"bytes,24,opt,name=fieldAccuracyUnitAppend,proto3" json:"fieldAccuracyUnitAppend,omitempty"` //数据字段准确率的数值单位后面的加号
+	Push                    float32 `protobuf:"fixed32,25,opt,name=push,proto3" json:"push,omitempty"`                                     //推送招标信息的数值
+	PushUnit                string  `protobuf:"bytes,26,opt,name=pushUnit,proto3" json:"pushUnit,omitempty"`                               //推送招标信息的数值单位
+	PushUnitAppend          string  `protobuf:"bytes,27,opt,name=pushUnitAppend,proto3" json:"pushUnitAppend,omitempty"`                   //推送招标信息的数值单位后面的加号
+	ErrorMsg                string  `protobuf:"bytes,28,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
+	ErrorCode               int64   `protobuf:"varint,29,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
+}
+
+func (x *IncludedResp) Reset() {
+	*x = IncludedResp{}
+	if protoimpl.UnsafeEnabled {
+		mi := &file_bxbase_proto_msgTypes[28]
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		ms.StoreMessageInfo(mi)
+	}
+}
+
+func (x *IncludedResp) String() string {
+	return protoimpl.X.MessageStringOf(x)
+}
+
+func (*IncludedResp) ProtoMessage() {}
+
+func (x *IncludedResp) ProtoReflect() protoreflect.Message {
+	mi := &file_bxbase_proto_msgTypes[28]
+	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 IncludedResp.ProtoReflect.Descriptor instead.
+func (*IncludedResp) Descriptor() ([]byte, []int) {
+	return file_bxbase_proto_rawDescGZIP(), []int{28}
+}
+
+func (x *IncludedResp) GetYear() int64 {
+	if x != nil {
+		return x.Year
+	}
+	return 0
+}
+
+func (x *IncludedResp) GetMonth() int64 {
+	if x != nil {
+		return x.Month
+	}
+	return 0
+}
+
+func (x *IncludedResp) GetDay() int64 {
+	if x != nil {
+		return x.Day
+	}
+	return 0
+}
+
+func (x *IncludedResp) GetBid() float32 {
+	if x != nil {
+		return x.Bid
+	}
+	return 0
+}
+
+func (x *IncludedResp) GetBidUnit() string {
+	if x != nil {
+		return x.BidUnit
+	}
+	return ""
+}
+
+func (x *IncludedResp) GetBidUnitAppend() string {
+	if x != nil {
+		return x.BidUnitAppend
+	}
+	return ""
+}
+
+func (x *IncludedResp) GetProject() float32 {
+	if x != nil {
+		return x.Project
+	}
+	return 0
+}
+
+func (x *IncludedResp) GetProjectUnit() string {
+	if x != nil {
+		return x.ProjectUnit
+	}
+	return ""
+}
+
+func (x *IncludedResp) GetProjectUnitAppend() string {
+	if x != nil {
+		return x.ProjectUnitAppend
+	}
+	return ""
+}
+
+func (x *IncludedResp) GetEnt() float32 {
+	if x != nil {
+		return x.Ent
+	}
+	return 0
+}
+
+func (x *IncludedResp) GetEntUnit() string {
+	if x != nil {
+		return x.EntUnit
+	}
+	return ""
+}
+
+func (x *IncludedResp) GetEntUnitAppend() string {
+	if x != nil {
+		return x.EntUnitAppend
+	}
+	return ""
+}
+
+func (x *IncludedResp) GetBuyer() float32 {
+	if x != nil {
+		return x.Buyer
+	}
+	return 0
+}
+
+func (x *IncludedResp) GetBuyerUnit() string {
+	if x != nil {
+		return x.BuyerUnit
+	}
+	return ""
+}
+
+func (x *IncludedResp) GetBuyerUnitAppend() string {
+	if x != nil {
+		return x.BuyerUnitAppend
+	}
+	return ""
+}
+
+func (x *IncludedResp) GetBidDayUpdate() float32 {
+	if x != nil {
+		return x.BidDayUpdate
+	}
+	return 0
+}
+
+func (x *IncludedResp) GetBidDayUpdateUnit() string {
+	if x != nil {
+		return x.BidDayUpdateUnit
+	}
+	return ""
+}
+
+func (x *IncludedResp) GetBidDayUpdateUnitAppend() string {
+	if x != nil {
+		return x.BidDayUpdateUnitAppend
+	}
+	return ""
+}
+
+func (x *IncludedResp) GetBidField() float32 {
+	if x != nil {
+		return x.BidField
+	}
+	return 0
+}
+
+func (x *IncludedResp) GetBidFieldUnit() string {
+	if x != nil {
+		return x.BidFieldUnit
+	}
+	return ""
+}
+
+func (x *IncludedResp) GetBidFieldUnitAppend() string {
+	if x != nil {
+		return x.BidFieldUnitAppend
+	}
+	return ""
+}
+
+func (x *IncludedResp) GetFieldAccuracy() float32 {
+	if x != nil {
+		return x.FieldAccuracy
+	}
+	return 0
+}
+
+func (x *IncludedResp) GetFieldAccuracyUnit() string {
+	if x != nil {
+		return x.FieldAccuracyUnit
+	}
+	return ""
+}
+
+func (x *IncludedResp) GetFieldAccuracyUnitAppend() string {
+	if x != nil {
+		return x.FieldAccuracyUnitAppend
+	}
+	return ""
+}
+
+func (x *IncludedResp) GetPush() float32 {
+	if x != nil {
+		return x.Push
+	}
+	return 0
+}
+
+func (x *IncludedResp) GetPushUnit() string {
+	if x != nil {
+		return x.PushUnit
+	}
+	return ""
+}
+
+func (x *IncludedResp) GetPushUnitAppend() string {
+	if x != nil {
+		return x.PushUnitAppend
+	}
+	return ""
+}
+
+func (x *IncludedResp) GetErrorMsg() string {
+	if x != nil {
+		return x.ErrorMsg
+	}
+	return ""
+}
+
+func (x *IncludedResp) GetErrorCode() int64 {
+	if x != nil {
+		return x.ErrorCode
+	}
+	return 0
+}
+
 var File_bxbase_proto protoreflect.FileDescriptor
 
 var file_bxbase_proto_rawDesc = []byte{
@@ -2505,6 +2829,7 @@ 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,
+<<<<<<< HEAD
 	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,
@@ -2605,6 +2930,173 @@ var file_bxbase_proto_rawDesc = []byte{
 	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,
+=======
+	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, 0x22, 0x20, 0x0a, 0x08, 0x41,
+	0x70, 0x70, 0x49, 0x64, 0x52, 0x65, 0x71, 0x12, 0x14, 0x0a, 0x05, 0x41, 0x70, 0x70, 0x49, 0x64,
+	0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x41, 0x70, 0x70, 0x49, 0x64, 0x22, 0xd0, 0x07,
+	0x0a, 0x0c, 0x49, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x12, 0x12,
+	0x0a, 0x04, 0x79, 0x65, 0x61, 0x72, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x04, 0x79, 0x65,
+	0x61, 0x72, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x18, 0x02, 0x20, 0x01, 0x28,
+	0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x74, 0x68, 0x12, 0x10, 0x0a, 0x03, 0x64, 0x61, 0x79, 0x18,
+	0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x64, 0x61, 0x79, 0x12, 0x10, 0x0a, 0x03, 0x62, 0x69,
+	0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x02, 0x52, 0x03, 0x62, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07,
+	0x62, 0x69, 0x64, 0x55, 0x6e, 0x69, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x62,
+	0x69, 0x64, 0x55, 0x6e, 0x69, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x62, 0x69, 0x64, 0x55, 0x6e, 0x69,
+	0x74, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x62,
+	0x69, 0x64, 0x55, 0x6e, 0x69, 0x74, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x12, 0x18, 0x0a, 0x07,
+	0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x18, 0x07, 0x20, 0x01, 0x28, 0x02, 0x52, 0x07, 0x70,
+	0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63,
+	0x74, 0x55, 0x6e, 0x69, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x70, 0x72, 0x6f,
+	0x6a, 0x65, 0x63, 0x74, 0x55, 0x6e, 0x69, 0x74, 0x12, 0x2c, 0x0a, 0x11, 0x70, 0x72, 0x6f, 0x6a,
+	0x65, 0x63, 0x74, 0x55, 0x6e, 0x69, 0x74, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x18, 0x09, 0x20,
+	0x01, 0x28, 0x09, 0x52, 0x11, 0x70, 0x72, 0x6f, 0x6a, 0x65, 0x63, 0x74, 0x55, 0x6e, 0x69, 0x74,
+	0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x65, 0x6e, 0x74, 0x18, 0x0a, 0x20,
+	0x01, 0x28, 0x02, 0x52, 0x03, 0x65, 0x6e, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x74, 0x55,
+	0x6e, 0x69, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x65, 0x6e, 0x74, 0x55, 0x6e,
+	0x69, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x65, 0x6e, 0x74, 0x55, 0x6e, 0x69, 0x74, 0x41, 0x70, 0x70,
+	0x65, 0x6e, 0x64, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x6e, 0x74, 0x55, 0x6e,
+	0x69, 0x74, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x62, 0x75, 0x79, 0x65,
+	0x72, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x02, 0x52, 0x05, 0x62, 0x75, 0x79, 0x65, 0x72, 0x12, 0x1c,
+	0x0a, 0x09, 0x62, 0x75, 0x79, 0x65, 0x72, 0x55, 0x6e, 0x69, 0x74, 0x18, 0x0e, 0x20, 0x01, 0x28,
+	0x09, 0x52, 0x09, 0x62, 0x75, 0x79, 0x65, 0x72, 0x55, 0x6e, 0x69, 0x74, 0x12, 0x28, 0x0a, 0x0f,
+	0x62, 0x75, 0x79, 0x65, 0x72, 0x55, 0x6e, 0x69, 0x74, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x18,
+	0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x62, 0x75, 0x79, 0x65, 0x72, 0x55, 0x6e, 0x69, 0x74,
+	0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x62, 0x69, 0x64, 0x44, 0x61, 0x79,
+	0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x18, 0x10, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0c, 0x62, 0x69,
+	0x64, 0x44, 0x61, 0x79, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x12, 0x2a, 0x0a, 0x10, 0x62, 0x69,
+	0x64, 0x44, 0x61, 0x79, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x6e, 0x69, 0x74, 0x18, 0x11,
+	0x20, 0x01, 0x28, 0x09, 0x52, 0x10, 0x62, 0x69, 0x64, 0x44, 0x61, 0x79, 0x55, 0x70, 0x64, 0x61,
+	0x74, 0x65, 0x55, 0x6e, 0x69, 0x74, 0x12, 0x36, 0x0a, 0x16, 0x62, 0x69, 0x64, 0x44, 0x61, 0x79,
+	0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x55, 0x6e, 0x69, 0x74, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64,
+	0x18, 0x12, 0x20, 0x01, 0x28, 0x09, 0x52, 0x16, 0x62, 0x69, 0x64, 0x44, 0x61, 0x79, 0x55, 0x70,
+	0x64, 0x61, 0x74, 0x65, 0x55, 0x6e, 0x69, 0x74, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x12, 0x1a,
+	0x0a, 0x08, 0x62, 0x69, 0x64, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x18, 0x13, 0x20, 0x01, 0x28, 0x02,
+	0x52, 0x08, 0x62, 0x69, 0x64, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x12, 0x22, 0x0a, 0x0c, 0x62, 0x69,
+	0x64, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x55, 0x6e, 0x69, 0x74, 0x18, 0x14, 0x20, 0x01, 0x28, 0x09,
+	0x52, 0x0c, 0x62, 0x69, 0x64, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x55, 0x6e, 0x69, 0x74, 0x12, 0x2e,
+	0x0a, 0x12, 0x62, 0x69, 0x64, 0x46, 0x69, 0x65, 0x6c, 0x64, 0x55, 0x6e, 0x69, 0x74, 0x41, 0x70,
+	0x70, 0x65, 0x6e, 0x64, 0x18, 0x15, 0x20, 0x01, 0x28, 0x09, 0x52, 0x12, 0x62, 0x69, 0x64, 0x46,
+	0x69, 0x65, 0x6c, 0x64, 0x55, 0x6e, 0x69, 0x74, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x12, 0x24,
+	0x0a, 0x0d, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x75, 0x72, 0x61, 0x63, 0x79, 0x18,
+	0x16, 0x20, 0x01, 0x28, 0x02, 0x52, 0x0d, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x75,
+	0x72, 0x61, 0x63, 0x79, 0x12, 0x2c, 0x0a, 0x11, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x41, 0x63, 0x63,
+	0x75, 0x72, 0x61, 0x63, 0x79, 0x55, 0x6e, 0x69, 0x74, 0x18, 0x17, 0x20, 0x01, 0x28, 0x09, 0x52,
+	0x11, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x75, 0x72, 0x61, 0x63, 0x79, 0x55, 0x6e,
+	0x69, 0x74, 0x12, 0x38, 0x0a, 0x17, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x75, 0x72,
+	0x61, 0x63, 0x79, 0x55, 0x6e, 0x69, 0x74, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x18, 0x18, 0x20,
+	0x01, 0x28, 0x09, 0x52, 0x17, 0x66, 0x69, 0x65, 0x6c, 0x64, 0x41, 0x63, 0x63, 0x75, 0x72, 0x61,
+	0x63, 0x79, 0x55, 0x6e, 0x69, 0x74, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x12, 0x12, 0x0a, 0x04,
+	0x70, 0x75, 0x73, 0x68, 0x18, 0x19, 0x20, 0x01, 0x28, 0x02, 0x52, 0x04, 0x70, 0x75, 0x73, 0x68,
+	0x12, 0x1a, 0x0a, 0x08, 0x70, 0x75, 0x73, 0x68, 0x55, 0x6e, 0x69, 0x74, 0x18, 0x1a, 0x20, 0x01,
+	0x28, 0x09, 0x52, 0x08, 0x70, 0x75, 0x73, 0x68, 0x55, 0x6e, 0x69, 0x74, 0x12, 0x26, 0x0a, 0x0e,
+	0x70, 0x75, 0x73, 0x68, 0x55, 0x6e, 0x69, 0x74, 0x41, 0x70, 0x70, 0x65, 0x6e, 0x64, 0x18, 0x1b,
+	0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x70, 0x75, 0x73, 0x68, 0x55, 0x6e, 0x69, 0x74, 0x41, 0x70,
+	0x70, 0x65, 0x6e, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73,
+	0x67, 0x18, 0x1c, 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,
+	0x1d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65,
+	0x32, 0xab, 0x05, 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, 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, 0x12, 0x30, 0x0a, 0x08,
+	0x49, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x12, 0x0f, 0x2e, 0x62, 0x78, 0x63, 0x6f, 0x6c,
+	0x2e, 0x41, 0x70, 0x70, 0x49, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x13, 0x2e, 0x62, 0x78, 0x63, 0x6f,
+	0x6c, 0x2e, 0x49, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x64, 0x52, 0x65, 0x73, 0x70, 0x42, 0x0a,
+	0x5a, 0x08, 0x2e, 0x2f, 0x62, 0x78, 0x62, 0x61, 0x73, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74,
+	0x6f, 0x33,
+>>>>>>> master
 }
 
 var (
@@ -2619,7 +3111,7 @@ func file_bxbase_proto_rawDescGZIP() []byte {
 	return file_bxbase_proto_rawDescData
 }
 
-var file_bxbase_proto_msgTypes = make([]protoimpl.MessageInfo, 27)
+var file_bxbase_proto_msgTypes = make([]protoimpl.MessageInfo, 29)
 var file_bxbase_proto_goTypes = []interface{}{
 	(*AddlabelReq)(nil),       // 0: bxcol.AddlabelReq
 	(*AddlabelRes)(nil),       // 1: bxcol.AddlabelRes
@@ -2648,6 +3140,8 @@ var file_bxbase_proto_goTypes = []interface{}{
 	(*NewestList)(nil),        // 24: bxcol.newestList
 	(*CommonRes)(nil),         // 25: bxcol.CommonRes
 	(*CheckRes)(nil),          // 26: bxcol.CheckRes
+	(*AppIdReq)(nil),          // 27: bxcol.AppIdReq
+	(*IncludedResp)(nil),      // 28: bxcol.IncludedResp
 }
 var file_bxbase_proto_depIdxs = []int32{
 	4,  // 0: bxcol.GetLabelActionRes.labels:type_name -> bxcol.LabelByUser
@@ -2669,19 +3163,21 @@ var file_bxbase_proto_depIdxs = []int32{
 	19, // 16: bxcol.bxbase.CheckSearch:input_type -> bxcol.AddSearchReq
 	20, // 17: bxcol.bxbase.DelSearch:input_type -> bxcol.DelSearchReq
 	21, // 18: bxcol.bxbase.NewestBidding:input_type -> bxcol.NewestBiddingReq
-	1,  // 19: bxcol.bxbase.Addlabel:output_type -> bxcol.AddlabelRes
-	3,  // 20: bxcol.bxbase.GetLabelAction:output_type -> bxcol.GetLabelActionRes
-	6,  // 21: bxcol.bxbase.LabelAction:output_type -> bxcol.LabelActionRes
-	6,  // 22: bxcol.bxbase.BCAction:output_type -> bxcol.LabelActionRes
-	9,  // 23: bxcol.bxbase.IsCollAction:output_type -> bxcol.IsCollActionRes
-	13, // 24: bxcol.bxbase.List:output_type -> bxcol.ListRes
-	17, // 25: bxcol.bxbase.ShowSearch:output_type -> bxcol.ShowSearchRes
-	25, // 26: bxcol.bxbase.AddSearch:output_type -> bxcol.CommonRes
-	26, // 27: bxcol.bxbase.CheckSearch:output_type -> bxcol.CheckRes
-	25, // 28: bxcol.bxbase.DelSearch:output_type -> bxcol.CommonRes
-	22, // 29: bxcol.bxbase.NewestBidding:output_type -> bxcol.NewsetBiddingResp
-	19, // [19:30] is the sub-list for method output_type
-	8,  // [8:19] is the sub-list for method input_type
+	27, // 19: bxcol.bxbase.Included:input_type -> bxcol.AppIdReq
+	1,  // 20: bxcol.bxbase.Addlabel:output_type -> bxcol.AddlabelRes
+	3,  // 21: bxcol.bxbase.GetLabelAction:output_type -> bxcol.GetLabelActionRes
+	6,  // 22: bxcol.bxbase.LabelAction:output_type -> bxcol.LabelActionRes
+	6,  // 23: bxcol.bxbase.BCAction:output_type -> bxcol.LabelActionRes
+	9,  // 24: bxcol.bxbase.IsCollAction:output_type -> bxcol.IsCollActionRes
+	13, // 25: bxcol.bxbase.List:output_type -> bxcol.ListRes
+	17, // 26: bxcol.bxbase.ShowSearch:output_type -> bxcol.ShowSearchRes
+	25, // 27: bxcol.bxbase.AddSearch:output_type -> bxcol.CommonRes
+	26, // 28: bxcol.bxbase.CheckSearch:output_type -> bxcol.CheckRes
+	25, // 29: bxcol.bxbase.DelSearch:output_type -> bxcol.CommonRes
+	22, // 30: bxcol.bxbase.NewestBidding:output_type -> bxcol.NewsetBiddingResp
+	28, // 31: bxcol.bxbase.Included:output_type -> bxcol.IncludedResp
+	20, // [20:32] is the sub-list for method output_type
+	8,  // [8:20] is the sub-list for method input_type
 	8,  // [8:8] is the sub-list for extension type_name
 	8,  // [8:8] is the sub-list for extension extendee
 	0,  // [0:8] is the sub-list for field type_name
@@ -3017,6 +3513,30 @@ func file_bxbase_proto_init() {
 				return nil
 			}
 		}
+		file_bxbase_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
+			switch v := v.(*AppIdReq); i {
+			case 0:
+				return &v.state
+			case 1:
+				return &v.sizeCache
+			case 2:
+				return &v.unknownFields
+			default:
+				return nil
+			}
+		}
+		file_bxbase_proto_msgTypes[28].Exporter = func(v interface{}, i int) interface{} {
+			switch v := v.(*IncludedResp); 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{
@@ -3024,7 +3544,7 @@ func file_bxbase_proto_init() {
 			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
 			RawDescriptor: file_bxbase_proto_rawDesc,
 			NumEnums:      0,
-			NumMessages:   27,
+			NumMessages:   29,
 			NumExtensions: 0,
 			NumServices:   1,
 		},

+ 42 - 0
jyBXBase/rpc/type/bxbase/bxbase_grpc.pb.go

@@ -1,7 +1,11 @@
 // Code generated by protoc-gen-go-grpc. DO NOT EDIT.
 // versions:
 // - protoc-gen-go-grpc v1.2.0
+<<<<<<< HEAD
 // - protoc             v3.15.1
+=======
+// - protoc             v3.19.4
+>>>>>>> master
 // source: bxbase.proto
 
 package bxbase
@@ -44,6 +48,8 @@ type BxbaseClient interface {
 	DelSearch(ctx context.Context, in *DelSearchReq, opts ...grpc.CallOption) (*CommonRes, error)
 	//首页最新招标信息
 	NewestBidding(ctx context.Context, in *NewestBiddingReq, opts ...grpc.CallOption) (*NewsetBiddingResp, error)
+	//剑鱼网站收录情况
+	Included(ctx context.Context, in *AppIdReq, opts ...grpc.CallOption) (*IncludedResp, error)
 }
 
 type bxbaseClient struct {
@@ -153,6 +159,15 @@ func (c *bxbaseClient) NewestBidding(ctx context.Context, in *NewestBiddingReq,
 	return out, nil
 }
 
+func (c *bxbaseClient) Included(ctx context.Context, in *AppIdReq, opts ...grpc.CallOption) (*IncludedResp, error) {
+	out := new(IncludedResp)
+	err := c.cc.Invoke(ctx, "/bxcol.bxbase/Included", in, out, opts...)
+	if err != nil {
+		return nil, err
+	}
+	return out, nil
+}
+
 // BxbaseServer is the server API for Bxbase service.
 // All implementations must embed UnimplementedBxbaseServer
 // for forward compatibility
@@ -179,6 +194,8 @@ type BxbaseServer interface {
 	DelSearch(context.Context, *DelSearchReq) (*CommonRes, error)
 	//首页最新招标信息
 	NewestBidding(context.Context, *NewestBiddingReq) (*NewsetBiddingResp, error)
+	//剑鱼网站收录情况
+	Included(context.Context, *AppIdReq) (*IncludedResp, error)
 	mustEmbedUnimplementedBxbaseServer()
 }
 
@@ -219,6 +236,9 @@ func (UnimplementedBxbaseServer) DelSearch(context.Context, *DelSearchReq) (*Com
 func (UnimplementedBxbaseServer) NewestBidding(context.Context, *NewestBiddingReq) (*NewsetBiddingResp, error) {
 	return nil, status.Errorf(codes.Unimplemented, "method NewestBidding not implemented")
 }
+func (UnimplementedBxbaseServer) Included(context.Context, *AppIdReq) (*IncludedResp, error) {
+	return nil, status.Errorf(codes.Unimplemented, "method Included not implemented")
+}
 func (UnimplementedBxbaseServer) mustEmbedUnimplementedBxbaseServer() {}
 
 // UnsafeBxbaseServer may be embedded to opt out of forward compatibility for this service.
@@ -430,6 +450,24 @@ func _Bxbase_NewestBidding_Handler(srv interface{}, ctx context.Context, dec fun
 	return interceptor(ctx, in, info, handler)
 }
 
+func _Bxbase_Included_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
+	in := new(AppIdReq)
+	if err := dec(in); err != nil {
+		return nil, err
+	}
+	if interceptor == nil {
+		return srv.(BxbaseServer).Included(ctx, in)
+	}
+	info := &grpc.UnaryServerInfo{
+		Server:     srv,
+		FullMethod: "/bxcol.bxbase/Included",
+	}
+	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
+		return srv.(BxbaseServer).Included(ctx, req.(*AppIdReq))
+	}
+	return interceptor(ctx, in, info, handler)
+}
+
 // Bxbase_ServiceDesc is the grpc.ServiceDesc for Bxbase service.
 // It's only intended for direct use with grpc.RegisterService,
 // and not to be introspected or modified (even as a copy)
@@ -481,6 +519,10 @@ var Bxbase_ServiceDesc = grpc.ServiceDesc{
 			MethodName: "NewestBidding",
 			Handler:    _Bxbase_NewestBidding_Handler,
 		},
+		{
+			MethodName: "Included",
+			Handler:    _Bxbase_Included_Handler,
+		},
 	},
 	Streams:  []grpc.StreamDesc{},
 	Metadata: "bxbase.proto",

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