renjiaojiao 3 年之前
父节点
当前提交
db1280564f

+ 3 - 3
api/knowledge/etc/knowledge-api.yaml

@@ -1,15 +1,15 @@
 Name: knowledge-api
 Host: 0.0.0.0
-Port: 8889
+Port: 9080
 WebRpcPort: 8016
 Gateway:
   ServerCode: jyinfo
   Etcd:
     - 127.0.0.1:2379
-knowledge:
+Knowledge:
   Etcd:
     Hosts:
-      - 192.168.3.206:2379
+      - 127.0.0.1:2379
     Key: knowledge.rpc
   Timeout: 10000
 AppId: 10000

+ 0 - 28
api/knowledge/internal/handler/knowledgehandler.go

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

+ 6 - 2
api/knowledge/internal/logic/knowledgeaddlogic.go

@@ -3,7 +3,8 @@ package logic
 import (
 	"context"
 	"github.com/zeromicro/go-zero/core/logx"
-	"knowledgeBase/rpc/knowledge/knowledge"
+	"knowledgeBase/rpc/knowledge/knowledgeclient"
+	"log"
 
 	"knowledgeBase/api/knowledge/internal/svc"
 	"knowledgeBase/api/knowledge/internal/types"
@@ -25,7 +26,9 @@ func NewKnowledgeAddLogic(ctx context.Context, svcCtx *svc.ServiceContext) Knowl
 
 func (l *KnowledgeAddLogic) KnowledgeAdd(req types.AddKnowledgeReq) (*types.CommonRes, error) {
 	// todo: add your logic here and delete this line
-	resp, err := l.svcCtx.Knowledge.KnowledgeAdd(l.ctx, &knowledge.AddRequest{
+
+	log.Println("req.Answer", req.Answer)
+	resp, err := l.svcCtx.Knowledge.KnowledgeAdd(l.ctx, &knowledgeclient.AddRequest{
 		Question: req.Question,
 		Answer:   req.Answer,
 		Person:   req.Person,
@@ -40,4 +43,5 @@ func (l *KnowledgeAddLogic) KnowledgeAdd(req types.AddKnowledgeReq) (*types.Comm
 		Error_code: int(resp.ErrorCode),
 		Data:       resp.Data,
 	}, nil
+	//return &types.CommonRes{}, nil
 }

+ 11 - 2
api/knowledge/internal/logic/knowledgedellogic.go

@@ -3,6 +3,7 @@ package logic
 import (
 	"context"
 	"github.com/zeromicro/go-zero/core/logx"
+	"knowledgeBase/rpc/knowledge/knowledgeclient"
 
 	"knowledgeBase/api/knowledge/internal/svc"
 	"knowledgeBase/api/knowledge/internal/types"
@@ -24,6 +25,14 @@ func NewKnowledgeDelLogic(ctx context.Context, svcCtx *svc.ServiceContext) Knowl
 
 func (l *KnowledgeDelLogic) KnowledgeDel(req types.DeleteReq) (*types.CommonRes, error) {
 	// todo: add your logic here and delete this line
-
-	return &types.CommonRes{}, nil
+	resp, err := l.svcCtx.Knowledge.KnowledgeDel(l.ctx, &knowledgeclient.KnowledgeDelReq{
+		AnswerId: req.AnswerId,
+	})
+	if err != nil {
+		return nil, err
+	}
+	return &types.CommonRes{
+		Error_code: int(resp.ErrorCode),
+		Error_msg:  resp.ErrorMsg,
+	}, nil
 }

+ 16 - 2
api/knowledge/internal/logic/knowledgeeditlogic.go

@@ -3,6 +3,7 @@ package logic
 import (
 	"context"
 	"github.com/zeromicro/go-zero/core/logx"
+	"knowledgeBase/rpc/knowledge/knowledgeclient"
 
 	"knowledgeBase/api/knowledge/internal/svc"
 	"knowledgeBase/api/knowledge/internal/types"
@@ -24,6 +25,19 @@ func NewKnowledgeEditLogic(ctx context.Context, svcCtx *svc.ServiceContext) Know
 
 func (l *KnowledgeEditLogic) KnowledgeEdit(req types.EditReq) (*types.CommonRes, error) {
 	// todo: add your logic here and delete this line
-
-	return &types.CommonRes{}, nil
+	resp, err := l.svcCtx.Knowledge.KnowledgeEdit(l.ctx, &knowledgeclient.KnowledgeEditReq{
+		Question:    req.Question,
+		Answer:      req.Answer,
+		AnswerId:    req.AnswerId,
+		KnowledgeId: req.KnowledgeId,
+		TenantId:    req.TenantId,
+		Person:      req.Person,
+	})
+	if err != nil {
+		return nil, err
+	}
+	return &types.CommonRes{
+		Error_code: int(resp.ErrorCode),
+		Error_msg:  resp.ErrorMsg,
+	}, nil
 }

+ 2 - 2
api/knowledge/internal/logic/knowledgeinfologic.go

@@ -3,7 +3,7 @@ package logic
 import (
 	"context"
 	"github.com/zeromicro/go-zero/core/logx"
-	"knowledgeBase/rpc/knowledge/knowledge"
+	"knowledgeBase/rpc/knowledge/knowledgeclient"
 
 	"knowledgeBase/api/knowledge/internal/svc"
 	"knowledgeBase/api/knowledge/internal/types"
@@ -25,7 +25,7 @@ func NewKnowledgeInfoLogic(ctx context.Context, svcCtx *svc.ServiceContext) Know
 
 func (l *KnowledgeInfoLogic) KnowledgeInfo(req types.InfoReq) (*types.CommonRes, error) {
 	// todo: add your logic here and delete this line
-	resp, err := l.svcCtx.Knowledge.KnowledgeInfo(l.ctx, &knowledge.KnowledgeEntity{
+	resp, err := l.svcCtx.Knowledge.KnowledgeInfo(l.ctx, &knowledgeclient.KnowledgeEntity{
 		AnswerId: req.AnswerId,
 	})
 	if err != nil {

+ 14 - 2
api/knowledge/internal/logic/knowledgelistlogic.go

@@ -3,6 +3,7 @@ package logic
 import (
 	"context"
 	"github.com/zeromicro/go-zero/core/logx"
+	"knowledgeBase/rpc/knowledge/knowledgeclient"
 
 	"knowledgeBase/api/knowledge/internal/svc"
 	"knowledgeBase/api/knowledge/internal/types"
@@ -24,6 +25,17 @@ func NewKnowledgeListLogic(ctx context.Context, svcCtx *svc.ServiceContext) Know
 
 func (l *KnowledgeListLogic) KnowledgeList(req types.ListReq) (*types.CommonRes, error) {
 	// todo: add your logic here and delete this line
-
-	return &types.CommonRes{}, nil
+	resp, err := l.svcCtx.Knowledge.KnowledgeList(l.ctx, &knowledgeclient.ListRequest{
+		TenantId:  req.TenantId,
+		PageIndex: req.PageIndex,
+		PageSize:  req.PageSize,
+	})
+	if err != nil {
+		return nil, err
+	}
+	return &types.CommonRes{
+		Error_code: int(resp.ErrorCode),
+		Error_msg:  resp.ErrorMsg,
+		Data:       resp.Data,
+	}, nil
 }

+ 3 - 1
api/knowledge/internal/svc/servicecontext.go

@@ -1,6 +1,7 @@
 package svc
 
 import (
+	"github.com/zeromicro/go-zero/zrpc"
 	"knowledgeBase/api/knowledge/internal/config"
 	"knowledgeBase/rpc/knowledge/knowledgeclient"
 )
@@ -12,6 +13,7 @@ type ServiceContext struct {
 
 func NewServiceContext(c config.Config) *ServiceContext {
 	return &ServiceContext{
-		Config: c,
+		Config:    c,
+		Knowledge: knowledgeclient.NewKnowledge(zrpc.MustNewClient(c.Knowledge)),
 	}
 }

+ 7 - 3
api/knowledge/internal/types/types.go

@@ -4,7 +4,7 @@ package types
 type AddKnowledgeReq struct {
 	Question string `json:"question"`
 	Answer   string `json:"answer"`
-	TenanId  string `json:"tenantId"`
+	TenanId  int64  `json:"tenantId"`
 	AppId    string `json:"appId"`
 	Person   string `json:"person"`
 }
@@ -27,8 +27,12 @@ type InfoReq struct {
 }
 
 type EditReq struct {
-	Question string `json:"question"`
-	Answer   string `json:"answer"`
+	Question    string `json:"question"`
+	Answer      string `json:"answer"`
+	Person      string `json:"person"`
+	AnswerId    int64  `json:"answerId"`
+	TenantId    int64  `json:"tenantId"`
+	KnowledgeId int64  `json:"knowledgeId"`
 }
 
 type DeleteReq struct {

+ 33 - 32
api/knowledge/knowledge.api

@@ -1,53 +1,54 @@
 type AddKnowledgeReq {
-    Question string `json:"question"`
-    Answer string `json:"answer"`
-    TenanId string `json:"tenantId"`
-    AppId string `json:"appId"`
-    Person string `json:"person"`
+	Question string `json:"question"`
+	Answer   string `json:"answer"`
+	TenanId  int64  `json:"tenantId"`
+	AppId    string `json:"appId"`
+	Person   string `json:"person"`
 }
 
 type FindAnswerReq {
-    Question string `json:"question"`
-    TenantId int64 `json:"tenantId"`
-    Type int64 `json:"type"` //1 文字  2 语音
-    AppId string `json:"appId"`
+	Question string `json:"question"`
+	TenantId int64  `json:"tenantId"`
+	Type     int64  `json:"type"` //1 文字  2 语音
+	AppId    string `json:"appId"`
 }
 
 type ListReq {
-    PageSize int64 `json:"pageSize"`
-    PageIndex int64 `json:"pageIndex"`
-    TenantId int64 `json:"tenantId"`
+	PageSize  int64 `json:"pageSize"`
+	PageIndex int64 `json:"pageIndex"`
+	TenantId  int64 `json:"tenantId"`
 }
 type InfoReq {
-    AnswerId int64 `json:"answerId"`
+	AnswerId int64 `json:"answerId"`
 }
 
 type EditReq {
-    Question string `json:"question"`
-    Answer string `json:"answer"`
-    Person string `json:"person"`
-    AnswerId int64 `json:"answerId"`
-    TenantId int64 `json:"tenantId"`
+	Question    string `json:"question"`
+	Answer      string `json:"answer"`
+	Person      string `json:"person"`
+	AnswerId    int64  `json:"answerId"`
+	TenantId    int64  `json:"tenantId"`
+	KnowledgeId int64  `json:"knowledgeId"`
 }
 type DeleteReq {
-    AnswerId int64 `json:"answerId"`
+	AnswerId int64 `json:"answerId"`
 }
 
 type CommonRes {
-    Error_code int `json:"error_code"`
-    Error_msg string `json:"error_msg"`
-    Data interface{} `json:"data"`
+	Error_code int         `json:"error_code"`
+	Error_msg  string      `json:"error_msg"`
+	Data       interface{} `json:"data"`
 }
 
 service knowledge-api {
-    @handler knowledgeAdd
-    post /knowledge/knowledgeAdd (AddKnowledgeReq) returns (CommonRes);
-    @handler knowledgeList
-    post /knowledge/knowledgeList (ListReq) returns (CommonRes);
-    @handler knowledgeInfo
-    post /knowledge/knowledgeInfo (InfoReq) returns (CommonRes);
-    @handler knowledgeEdit
-    post /knowledge/knowledgeEdit (EditReq) returns (CommonRes);
-    @handler knowledgeDel
-    post /knowledge/knowledgeDel (DeleteReq) returns (CommonRes);
+	@handler knowledgeAdd
+	post /knowledge/knowledgeAdd (AddKnowledgeReq) returns (CommonRes);
+	@handler knowledgeList
+	post /knowledge/knowledgeList (ListReq) returns (CommonRes);
+	@handler knowledgeInfo
+	post /knowledge/knowledgeInfo (InfoReq) returns (CommonRes);
+	@handler knowledgeEdit
+	post /knowledge/knowledgeEdit (EditReq) returns (CommonRes);
+	@handler knowledgeDel
+	post /knowledge/knowledgeDel (DeleteReq) returns (CommonRes);
 }

+ 10 - 11
api/knowledge/knowledge.go

@@ -3,25 +3,24 @@ package main
 import (
 	mc "app.yhyue.com/moapp/jybase/common"
 	"app.yhyue.com/moapp/jybase/endless"
+	"flag"
 	"fmt"
 	"github.com/zeromicro/go-zero/rest"
 	"log"
-	"os"
-	"os/signal"
-	"syscall"
-
-	"bp.jydev.jianyu360.cn/BaseService/gateway/core/node"
+	//"bp.jydev.jianyu360.cn/BaseService/gateway/core/node"
 	. "knowledgeBase/api/knowledge/common"
 	"knowledgeBase/api/knowledge/internal/handler"
 	"knowledgeBase/api/knowledge/internal/svc"
 )
 
+var configFile = flag.String("f", "etc/knowledge-api.yaml", "the config file")
+
 func main() {
 	//注册代理服务
-	closeNotify, err := node.NewNode(C.Gateway.Etcd...).Register(C.Gateway.ServerCode, mc.InterfaceToStr(C.Port))
+	/*closeNotify, err := node.NewNode(C.Gateway.Etcd...).Register(C.Gateway.ServerCode, mc.InterfaceToStr(C.Port))
 	if err != nil {
 		panic(err)
-	}
+	}*/
 	//
 	go func() {
 		err := endless.ListenAndServe(":"+mc.InterfaceToStr(C.WebRpcPort), nil, func() {})
@@ -39,8 +38,8 @@ func main() {
 	fmt.Printf("Starting server at %s:%d...\n", C.Host, C.Port)
 	server.Start()
 
-	quit := make(chan os.Signal, 1)
-	signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM)
-	<-quit
-	closeNotify()
+	//quit := make(chan os.Signal, 1)
+	//signal.Notify(quit, syscall.SIGINT, syscall.SIGTERM)
+	//<-quit
+	//closeNotify()
 }

+ 23 - 2
api/knowledge/logs/access.log

@@ -1,2 +1,23 @@
-{"@timestamp":"2022-06-22T14:20:56.193+08:00","level":"info","content":"info--日志记录"}
-{"@timestamp":"2022-06-22T14:20:56.193+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-24T15:13:22.630+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-24T15:13:22.630+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-24T15:29:37.892+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-24T15:29:37.892+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-24T15:30:14.257+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-24T15:30:14.257+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-24T15:32:28.194+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-24T15:32:28.194+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-24T15:35:53.399+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-24T15:35:53.399+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-24T15:36:05.566+08:00","level":"info","duration":"662.4ms","content":"[HTTP] POST - 200 - /knowledge/knowledgeAdd - 127.0.0.1:51504 - ApiPOST Runtime +https://www.apipost.cn","trace":"04e2d36a8a258320c3dd9d98ce0d103c","span":"a7a69b61a7daae49"}
+{"@timestamp":"2022-06-24T16:45:55.943+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-24T16:45:55.943+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-24T16:49:26.984+08:00","level":"info","duration":"55.8ms","content":"[HTTP] POST - 200 - /knowledge/knowledgeList - 127.0.0.1:52780 - ApiPOST Runtime +https://www.apipost.cn","trace":"6c156ce036d712edadf6aef94a6b744c","span":"abdd54cb18494d64"}
+{"@timestamp":"2022-06-24T16:58:54.224+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-24T16:58:54.224+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-24T17:04:15.514+08:00","level":"info","duration":"7.5ms","content":"[HTTP] POST - 200 - /knowledge/knowledgeList - 127.0.0.1:52987 - ApiPOST Runtime +https://www.apipost.cn","trace":"477e81ae1d3c7b609039e4c2bf6952c2","span":"46bc386505f68a9a"}
+{"@timestamp":"2022-06-24T17:07:49.256+08:00","level":"info","duration":"17.3ms","content":"[HTTP] POST - 200 - /knowledge/knowledgeInfo - 127.0.0.1:53031 - ApiPOST Runtime +https://www.apipost.cn","trace":"5064be0c5fffd7b162c633c1047cc5c8","span":"ec253a05da5fb2ad"}
+{"@timestamp":"2022-06-24T17:20:58.837+08:00","level":"info","duration":"13.8ms","content":"[HTTP] POST - 200 - /knowledge/knowledgeInfo - 127.0.0.1:53249 - ApiPOST Runtime +https://www.apipost.cn","trace":"f49d5e6dcfb026f5efb0e59880e5cbf9","span":"10b92fda6ba1ced6"}
+{"@timestamp":"2022-06-24T17:26:29.073+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-24T17:26:29.073+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-24T17:26:36.388+08:00","level":"info","duration":"170.4ms","content":"[HTTP] POST - 200 - /knowledge/knowledgeAdd - 127.0.0.1:53331 - ApiPOST Runtime +https://www.apipost.cn","trace":"5ad0199cb634b75e2140401ffb99b4cd","span":"782bacc5c8ba00f7"}
+{"@timestamp":"2022-06-24T17:27:25.445+08:00","level":"info","duration":"218.6ms","content":"[HTTP] POST - 200 - /knowledge/knowledgeAdd - 127.0.0.1:53348 - ApiPOST Runtime +https://www.apipost.cn","trace":"6782e348d48dfe68e317dcdf056b8a69","span":"7ba582fbd3d147ed"}

+ 2 - 0
api/knowledge/logs/slow.log

@@ -0,0 +1,2 @@
+{"@timestamp":"2022-06-24T15:36:05.566+08:00","level":"slow","duration":"661.3ms","content":"[RPC] ok - slowcall - discov:/127.0.0.1:2379/knowledge.rpc/template.knowledge/KnowledgeAdd - question:\"剑鱼标讯有哪些收费项目,有哪些收费项目,是怎么收费得\" tenantId:\"10000\" appId:\"10000\" person:\"wode\" - error_msg:\"插入数据成功\"","trace":"04e2d36a8a258320c3dd9d98ce0d103c","span":"f2b654bfb8efab83"}
+{"@timestamp":"2022-06-24T15:36:05.566+08:00","level":"slow","duration":"662.4ms","content":"[HTTP] POST - 200 - /knowledge/knowledgeAdd - 127.0.0.1:51504 - ApiPOST Runtime +https://www.apipost.cn - slowcall(662.4ms)","trace":"04e2d36a8a258320c3dd9d98ce0d103c","span":"a7a69b61a7daae49"}

+ 392 - 201
api/knowledge/logs/stat.log

@@ -1,201 +1,392 @@
-{"@timestamp":"2022-06-22T14:21:56.186+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.7Mi, TotalAlloc=5.5Mi, Sys=14.0Mi, NumGC=2"}
-{"@timestamp":"2022-06-22T14:22:56.177+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.7Mi, TotalAlloc=5.5Mi, Sys=14.0Mi, NumGC=2"}
-{"@timestamp":"2022-06-22T14:23:56.175+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.5Mi, Sys=14.0Mi, NumGC=3"}
-{"@timestamp":"2022-06-22T14:24:56.182+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.5Mi, Sys=14.0Mi, NumGC=3"}
-{"@timestamp":"2022-06-22T14:25:56.175+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.5Mi, Sys=14.0Mi, NumGC=4"}
-{"@timestamp":"2022-06-22T14:26:56.187+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.5Mi, Sys=14.0Mi, NumGC=4"}
-{"@timestamp":"2022-06-22T14:27:56.179+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.5Mi, Sys=14.0Mi, NumGC=5"}
-{"@timestamp":"2022-06-22T14:28:56.174+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.5Mi, Sys=14.0Mi, NumGC=5"}
-{"@timestamp":"2022-06-22T14:29:56.188+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.5Mi, Sys=14.0Mi, NumGC=6"}
-{"@timestamp":"2022-06-22T14:30:56.181+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.5Mi, Sys=14.0Mi, NumGC=6"}
-{"@timestamp":"2022-06-22T14:31:56.187+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.5Mi, Sys=14.0Mi, NumGC=7"}
-{"@timestamp":"2022-06-22T14:32:56.188+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.5Mi, Sys=14.0Mi, NumGC=7"}
-{"@timestamp":"2022-06-22T14:33:56.184+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.5Mi, Sys=14.0Mi, NumGC=8"}
-{"@timestamp":"2022-06-22T14:34:56.183+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.5Mi, Sys=14.0Mi, NumGC=8"}
-{"@timestamp":"2022-06-22T14:35:56.182+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.5Mi, Sys=14.0Mi, NumGC=9"}
-{"@timestamp":"2022-06-22T14:36:56.186+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.5Mi, Sys=14.0Mi, NumGC=9"}
-{"@timestamp":"2022-06-22T14:37:56.175+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.5Mi, Sys=14.0Mi, NumGC=10"}
-{"@timestamp":"2022-06-22T14:38:56.186+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.6Mi, Sys=14.0Mi, NumGC=10"}
-{"@timestamp":"2022-06-22T14:39:56.187+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.6Mi, Sys=14.0Mi, NumGC=11"}
-{"@timestamp":"2022-06-22T14:40:56.187+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.6Mi, Sys=14.0Mi, NumGC=11"}
-{"@timestamp":"2022-06-22T14:41:56.176+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.6Mi, Sys=14.0Mi, NumGC=12"}
-{"@timestamp":"2022-06-22T14:42:56.176+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.6Mi, Sys=14.0Mi, NumGC=12"}
-{"@timestamp":"2022-06-22T14:43:56.180+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.6Mi, Sys=14.0Mi, NumGC=13"}
-{"@timestamp":"2022-06-22T14:44:56.188+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.6Mi, Sys=14.0Mi, NumGC=13"}
-{"@timestamp":"2022-06-22T14:45:56.184+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.6Mi, Sys=14.0Mi, NumGC=14"}
-{"@timestamp":"2022-06-22T14:46:56.175+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.6Mi, Sys=14.0Mi, NumGC=14"}
-{"@timestamp":"2022-06-22T14:47:56.186+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.6Mi, Sys=14.0Mi, NumGC=15"}
-{"@timestamp":"2022-06-22T14:48:56.188+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.6Mi, Sys=14.0Mi, NumGC=15"}
-{"@timestamp":"2022-06-22T14:49:56.180+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.6Mi, Sys=14.0Mi, NumGC=16"}
-{"@timestamp":"2022-06-22T14:50:56.188+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.6Mi, Sys=14.0Mi, NumGC=16"}
-{"@timestamp":"2022-06-22T14:51:56.190+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.6Mi, Sys=14.0Mi, NumGC=17"}
-{"@timestamp":"2022-06-22T14:52:56.183+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.6Mi, Sys=14.0Mi, NumGC=17"}
-{"@timestamp":"2022-06-22T14:53:56.180+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.6Mi, Sys=14.0Mi, NumGC=18"}
-{"@timestamp":"2022-06-22T14:54:56.185+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.6Mi, Sys=14.0Mi, NumGC=18"}
-{"@timestamp":"2022-06-22T14:55:56.185+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.6Mi, Sys=14.0Mi, NumGC=19"}
-{"@timestamp":"2022-06-22T14:56:56.178+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.7Mi, Sys=14.0Mi, NumGC=19"}
-{"@timestamp":"2022-06-22T14:57:56.186+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.7Mi, Sys=14.0Mi, NumGC=20"}
-{"@timestamp":"2022-06-22T14:58:56.189+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.7Mi, Sys=14.0Mi, NumGC=20"}
-{"@timestamp":"2022-06-22T14:59:56.187+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.7Mi, Sys=14.0Mi, NumGC=21"}
-{"@timestamp":"2022-06-22T15:00:56.179+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.7Mi, Sys=14.0Mi, NumGC=21"}
-{"@timestamp":"2022-06-22T15:01:56.180+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.7Mi, Sys=14.0Mi, NumGC=22"}
-{"@timestamp":"2022-06-22T15:02:56.185+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.7Mi, Sys=14.0Mi, NumGC=22"}
-{"@timestamp":"2022-06-22T15:03:56.184+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.7Mi, Sys=14.0Mi, NumGC=23"}
-{"@timestamp":"2022-06-22T15:04:56.188+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.7Mi, Sys=14.0Mi, NumGC=23"}
-{"@timestamp":"2022-06-22T15:05:56.175+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.7Mi, Sys=14.0Mi, NumGC=24"}
-{"@timestamp":"2022-06-22T15:06:56.187+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.7Mi, Sys=14.0Mi, NumGC=24"}
-{"@timestamp":"2022-06-22T15:07:56.187+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.7Mi, Sys=14.0Mi, NumGC=25"}
-{"@timestamp":"2022-06-22T15:08:56.175+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.7Mi, Sys=14.0Mi, NumGC=25"}
-{"@timestamp":"2022-06-22T15:09:56.181+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.7Mi, Sys=14.0Mi, NumGC=26"}
-{"@timestamp":"2022-06-22T15:10:56.182+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.7Mi, Sys=14.0Mi, NumGC=26"}
-{"@timestamp":"2022-06-22T15:11:56.183+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.7Mi, Sys=14.0Mi, NumGC=27"}
-{"@timestamp":"2022-06-22T15:12:56.187+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.7Mi, Sys=14.0Mi, NumGC=27"}
-{"@timestamp":"2022-06-22T15:13:56.178+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.7Mi, Sys=14.0Mi, NumGC=28"}
-{"@timestamp":"2022-06-22T15:14:56.187+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.8Mi, Sys=14.0Mi, NumGC=28"}
-{"@timestamp":"2022-06-22T15:15:56.183+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.8Mi, Sys=14.0Mi, NumGC=29"}
-{"@timestamp":"2022-06-22T15:16:56.181+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.8Mi, Sys=14.0Mi, NumGC=29"}
-{"@timestamp":"2022-06-22T15:17:56.189+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.8Mi, Sys=14.0Mi, NumGC=30"}
-{"@timestamp":"2022-06-22T15:18:56.179+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.8Mi, Sys=14.0Mi, NumGC=30"}
-{"@timestamp":"2022-06-22T15:19:56.185+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.8Mi, Sys=14.0Mi, NumGC=31"}
-{"@timestamp":"2022-06-22T15:20:56.185+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.8Mi, Sys=14.0Mi, NumGC=31"}
-{"@timestamp":"2022-06-22T15:21:56.185+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.8Mi, Sys=14.0Mi, NumGC=32"}
-{"@timestamp":"2022-06-22T15:22:56.181+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.8Mi, Sys=14.0Mi, NumGC=32"}
-{"@timestamp":"2022-06-22T15:23:56.185+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.8Mi, Sys=14.0Mi, NumGC=33"}
-{"@timestamp":"2022-06-22T15:24:56.189+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.8Mi, Sys=14.0Mi, NumGC=33"}
-{"@timestamp":"2022-06-22T15:25:56.179+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.8Mi, Sys=14.0Mi, NumGC=34"}
-{"@timestamp":"2022-06-22T15:26:56.182+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.8Mi, Sys=14.0Mi, NumGC=34"}
-{"@timestamp":"2022-06-22T15:27:56.177+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.8Mi, Sys=14.0Mi, NumGC=35"}
-{"@timestamp":"2022-06-22T15:28:56.188+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.8Mi, Sys=14.0Mi, NumGC=35"}
-{"@timestamp":"2022-06-22T15:29:56.189+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.5Mi, TotalAlloc=5.8Mi, Sys=14.0Mi, NumGC=36"}
-{"@timestamp":"2022-06-22T15:30:56.186+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.8Mi, Sys=14.0Mi, NumGC=36"}
-{"@timestamp":"2022-06-22T15:31:56.189+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.8Mi, Sys=14.0Mi, NumGC=37"}
-{"@timestamp":"2022-06-22T15:32:56.175+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.8Mi, Sys=14.0Mi, NumGC=37"}
-{"@timestamp":"2022-06-22T15:33:56.178+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.8Mi, Sys=14.0Mi, NumGC=38"}
-{"@timestamp":"2022-06-22T15:34:56.180+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.9Mi, Sys=14.0Mi, NumGC=38"}
-{"@timestamp":"2022-06-22T15:35:56.183+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.9Mi, Sys=14.0Mi, NumGC=39"}
-{"@timestamp":"2022-06-22T15:36:57.498+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.9Mi, Sys=14.0Mi, NumGC=39"}
-{"@timestamp":"2022-06-22T15:37:57.495+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.9Mi, Sys=14.0Mi, NumGC=40"}
-{"@timestamp":"2022-06-22T15:38:57.493+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.9Mi, Sys=14.0Mi, NumGC=40"}
-{"@timestamp":"2022-06-22T15:39:57.503+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.9Mi, Sys=14.0Mi, NumGC=41"}
-{"@timestamp":"2022-06-22T15:40:57.491+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.9Mi, Sys=14.0Mi, NumGC=41"}
-{"@timestamp":"2022-06-22T15:41:57.489+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.9Mi, Sys=14.0Mi, NumGC=42"}
-{"@timestamp":"2022-06-22T15:42:57.499+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.9Mi, Sys=14.0Mi, NumGC=42"}
-{"@timestamp":"2022-06-22T15:43:57.489+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.9Mi, Sys=14.0Mi, NumGC=43"}
-{"@timestamp":"2022-06-22T15:44:57.503+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.9Mi, Sys=14.0Mi, NumGC=43"}
-{"@timestamp":"2022-06-22T15:45:57.499+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.9Mi, Sys=14.0Mi, NumGC=44"}
-{"@timestamp":"2022-06-22T15:46:57.490+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.9Mi, Sys=14.0Mi, NumGC=44"}
-{"@timestamp":"2022-06-22T15:47:57.490+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.9Mi, Sys=14.0Mi, NumGC=45"}
-{"@timestamp":"2022-06-22T15:48:57.490+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.9Mi, Sys=14.0Mi, NumGC=45"}
-{"@timestamp":"2022-06-22T15:49:57.493+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.9Mi, Sys=14.0Mi, NumGC=46"}
-{"@timestamp":"2022-06-22T15:50:57.492+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=5.9Mi, Sys=14.0Mi, NumGC=46"}
-{"@timestamp":"2022-06-22T15:51:57.489+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.0Mi, Sys=14.0Mi, NumGC=47"}
-{"@timestamp":"2022-06-22T15:52:57.496+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.0Mi, Sys=14.0Mi, NumGC=47"}
-{"@timestamp":"2022-06-22T15:53:57.494+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.0Mi, Sys=14.0Mi, NumGC=48"}
-{"@timestamp":"2022-06-22T15:54:57.496+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.0Mi, Sys=14.0Mi, NumGC=48"}
-{"@timestamp":"2022-06-22T15:55:57.497+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.0Mi, Sys=14.0Mi, NumGC=49"}
-{"@timestamp":"2022-06-22T15:56:57.490+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.0Mi, Sys=14.0Mi, NumGC=49"}
-{"@timestamp":"2022-06-22T15:57:57.500+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.0Mi, Sys=14.0Mi, NumGC=50"}
-{"@timestamp":"2022-06-22T15:58:57.489+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.0Mi, Sys=14.0Mi, NumGC=50"}
-{"@timestamp":"2022-06-22T15:59:57.502+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.0Mi, Sys=14.0Mi, NumGC=51"}
-{"@timestamp":"2022-06-22T16:00:57.489+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.0Mi, Sys=14.0Mi, NumGC=51"}
-{"@timestamp":"2022-06-22T16:01:57.498+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.0Mi, Sys=14.0Mi, NumGC=52"}
-{"@timestamp":"2022-06-22T16:02:57.489+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.0Mi, Sys=14.0Mi, NumGC=52"}
-{"@timestamp":"2022-06-22T16:03:57.495+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.0Mi, Sys=14.0Mi, NumGC=53"}
-{"@timestamp":"2022-06-22T16:04:57.503+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.0Mi, Sys=14.0Mi, NumGC=53"}
-{"@timestamp":"2022-06-22T16:05:57.503+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.0Mi, Sys=14.0Mi, NumGC=54"}
-{"@timestamp":"2022-06-22T16:06:57.497+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.0Mi, Sys=14.0Mi, NumGC=54"}
-{"@timestamp":"2022-06-22T16:07:57.500+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.0Mi, Sys=14.0Mi, NumGC=55"}
-{"@timestamp":"2022-06-22T16:08:57.492+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.0Mi, Sys=14.0Mi, NumGC=55"}
-{"@timestamp":"2022-06-22T16:09:57.502+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.1Mi, Sys=14.0Mi, NumGC=56"}
-{"@timestamp":"2022-06-22T16:10:57.495+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.1Mi, Sys=14.0Mi, NumGC=56"}
-{"@timestamp":"2022-06-22T16:11:57.494+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.1Mi, Sys=14.0Mi, NumGC=57"}
-{"@timestamp":"2022-06-22T16:12:57.499+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.1Mi, Sys=14.0Mi, NumGC=57"}
-{"@timestamp":"2022-06-22T16:13:57.504+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.1Mi, Sys=14.0Mi, NumGC=58"}
-{"@timestamp":"2022-06-22T16:14:57.502+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.1Mi, Sys=14.0Mi, NumGC=58"}
-{"@timestamp":"2022-06-22T16:15:57.489+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.1Mi, Sys=14.0Mi, NumGC=59"}
-{"@timestamp":"2022-06-22T16:16:57.498+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.1Mi, Sys=14.0Mi, NumGC=59"}
-{"@timestamp":"2022-06-22T16:17:57.492+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.1Mi, Sys=14.0Mi, NumGC=60"}
-{"@timestamp":"2022-06-22T16:18:57.491+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.1Mi, Sys=14.0Mi, NumGC=60"}
-{"@timestamp":"2022-06-22T16:19:57.504+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.1Mi, Sys=14.0Mi, NumGC=61"}
-{"@timestamp":"2022-06-22T16:20:57.499+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.1Mi, Sys=14.0Mi, NumGC=61"}
-{"@timestamp":"2022-06-22T16:21:57.490+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.1Mi, Sys=14.0Mi, NumGC=62"}
-{"@timestamp":"2022-06-22T16:22:57.504+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.1Mi, Sys=14.0Mi, NumGC=62"}
-{"@timestamp":"2022-06-22T16:23:57.492+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.1Mi, Sys=14.0Mi, NumGC=63"}
-{"@timestamp":"2022-06-22T16:24:57.500+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.1Mi, Sys=14.0Mi, NumGC=63"}
-{"@timestamp":"2022-06-22T16:25:57.501+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.1Mi, Sys=14.0Mi, NumGC=64"}
-{"@timestamp":"2022-06-22T16:26:57.492+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.1Mi, Sys=14.0Mi, NumGC=64"}
-{"@timestamp":"2022-06-22T16:27:57.498+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.2Mi, Sys=14.0Mi, NumGC=65"}
-{"@timestamp":"2022-06-22T16:28:57.491+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.2Mi, Sys=14.0Mi, NumGC=65"}
-{"@timestamp":"2022-06-22T16:29:57.498+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.2Mi, Sys=14.0Mi, NumGC=66"}
-{"@timestamp":"2022-06-22T16:30:57.494+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.2Mi, Sys=14.0Mi, NumGC=66"}
-{"@timestamp":"2022-06-22T16:31:57.493+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.2Mi, Sys=14.0Mi, NumGC=67"}
-{"@timestamp":"2022-06-22T16:32:57.493+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.2Mi, Sys=14.0Mi, NumGC=67"}
-{"@timestamp":"2022-06-22T16:33:57.498+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.2Mi, Sys=14.0Mi, NumGC=68"}
-{"@timestamp":"2022-06-22T16:34:57.498+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.2Mi, Sys=14.0Mi, NumGC=68"}
-{"@timestamp":"2022-06-22T16:35:57.500+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.2Mi, Sys=14.0Mi, NumGC=69"}
-{"@timestamp":"2022-06-22T16:36:57.491+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.2Mi, Sys=14.0Mi, NumGC=69"}
-{"@timestamp":"2022-06-22T16:37:57.503+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.2Mi, Sys=14.0Mi, NumGC=70"}
-{"@timestamp":"2022-06-22T16:38:57.490+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.2Mi, Sys=14.0Mi, NumGC=70"}
-{"@timestamp":"2022-06-22T16:39:57.493+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.2Mi, Sys=14.0Mi, NumGC=71"}
-{"@timestamp":"2022-06-22T16:40:57.492+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.2Mi, Sys=14.0Mi, NumGC=71"}
-{"@timestamp":"2022-06-22T16:41:57.501+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.2Mi, Sys=14.0Mi, NumGC=72"}
-{"@timestamp":"2022-06-22T16:42:57.501+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.2Mi, Sys=14.0Mi, NumGC=72"}
-{"@timestamp":"2022-06-22T16:43:57.492+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.2Mi, Sys=14.0Mi, NumGC=73"}
-{"@timestamp":"2022-06-22T16:44:57.490+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.2Mi, Sys=14.0Mi, NumGC=73"}
-{"@timestamp":"2022-06-22T16:45:57.495+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.3Mi, Sys=14.0Mi, NumGC=74"}
-{"@timestamp":"2022-06-22T16:46:57.498+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.3Mi, Sys=14.0Mi, NumGC=74"}
-{"@timestamp":"2022-06-22T16:47:57.491+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.3Mi, Sys=14.0Mi, NumGC=75"}
-{"@timestamp":"2022-06-22T16:48:57.493+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.3Mi, Sys=14.0Mi, NumGC=75"}
-{"@timestamp":"2022-06-22T16:49:57.498+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.3Mi, Sys=14.0Mi, NumGC=76"}
-{"@timestamp":"2022-06-22T16:50:57.492+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.3Mi, Sys=14.0Mi, NumGC=76"}
-{"@timestamp":"2022-06-22T16:51:57.503+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.3Mi, Sys=14.0Mi, NumGC=77"}
-{"@timestamp":"2022-06-22T16:52:57.502+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.3Mi, Sys=14.0Mi, NumGC=77"}
-{"@timestamp":"2022-06-22T16:53:57.502+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.3Mi, Sys=14.0Mi, NumGC=78"}
-{"@timestamp":"2022-06-22T16:54:57.496+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.3Mi, Sys=14.0Mi, NumGC=78"}
-{"@timestamp":"2022-06-22T16:55:57.499+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.3Mi, Sys=14.0Mi, NumGC=79"}
-{"@timestamp":"2022-06-22T16:56:57.504+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.3Mi, Sys=14.0Mi, NumGC=79"}
-{"@timestamp":"2022-06-22T16:57:57.498+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.3Mi, Sys=14.0Mi, NumGC=80"}
-{"@timestamp":"2022-06-22T16:58:57.493+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.3Mi, Sys=14.0Mi, NumGC=80"}
-{"@timestamp":"2022-06-22T16:59:57.491+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.3Mi, Sys=14.0Mi, NumGC=81"}
-{"@timestamp":"2022-06-22T17:00:57.490+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.3Mi, Sys=14.0Mi, NumGC=81"}
-{"@timestamp":"2022-06-22T17:01:57.500+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.3Mi, Sys=14.0Mi, NumGC=82"}
-{"@timestamp":"2022-06-22T17:02:57.493+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.3Mi, Sys=14.0Mi, NumGC=82"}
-{"@timestamp":"2022-06-22T17:03:57.492+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.3Mi, Sys=14.0Mi, NumGC=83"}
-{"@timestamp":"2022-06-22T17:04:57.499+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.3Mi, Sys=14.0Mi, NumGC=83"}
-{"@timestamp":"2022-06-22T17:05:57.501+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.4Mi, Sys=14.0Mi, NumGC=84"}
-{"@timestamp":"2022-06-22T17:06:57.499+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.4Mi, Sys=14.0Mi, NumGC=84"}
-{"@timestamp":"2022-06-22T17:07:57.489+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.4Mi, Sys=14.0Mi, NumGC=85"}
-{"@timestamp":"2022-06-22T17:08:57.493+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.4Mi, Sys=14.0Mi, NumGC=85"}
-{"@timestamp":"2022-06-22T17:09:57.497+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.4Mi, Sys=14.0Mi, NumGC=86"}
-{"@timestamp":"2022-06-22T17:10:57.499+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.4Mi, Sys=14.0Mi, NumGC=86"}
-{"@timestamp":"2022-06-22T17:11:57.502+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.4Mi, Sys=14.0Mi, NumGC=87"}
-{"@timestamp":"2022-06-22T17:12:57.501+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.4Mi, Sys=14.0Mi, NumGC=87"}
-{"@timestamp":"2022-06-22T17:13:57.502+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.4Mi, Sys=14.0Mi, NumGC=88"}
-{"@timestamp":"2022-06-22T17:14:57.491+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.4Mi, Sys=14.0Mi, NumGC=88"}
-{"@timestamp":"2022-06-22T17:15:57.489+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.4Mi, Sys=14.0Mi, NumGC=89"}
-{"@timestamp":"2022-06-22T17:16:57.489+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.4Mi, Sys=14.0Mi, NumGC=89"}
-{"@timestamp":"2022-06-22T17:17:57.497+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.4Mi, Sys=14.0Mi, NumGC=90"}
-{"@timestamp":"2022-06-22T17:18:57.498+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.4Mi, Sys=14.0Mi, NumGC=90"}
-{"@timestamp":"2022-06-22T17:19:57.492+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.4Mi, Sys=14.0Mi, NumGC=91"}
-{"@timestamp":"2022-06-22T17:20:57.489+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.4Mi, Sys=14.0Mi, NumGC=91"}
-{"@timestamp":"2022-06-22T17:21:57.490+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.4Mi, Sys=14.0Mi, NumGC=92"}
-{"@timestamp":"2022-06-22T17:22:57.501+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.4Mi, Sys=14.0Mi, NumGC=92"}
-{"@timestamp":"2022-06-22T17:23:57.499+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.4Mi, Sys=14.0Mi, NumGC=93"}
-{"@timestamp":"2022-06-22T17:24:57.500+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.5Mi, Sys=14.0Mi, NumGC=93"}
-{"@timestamp":"2022-06-22T17:25:57.503+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.5Mi, Sys=14.0Mi, NumGC=94"}
-{"@timestamp":"2022-06-22T17:26:57.496+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.5Mi, Sys=14.0Mi, NumGC=94"}
-{"@timestamp":"2022-06-22T17:27:57.496+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.5Mi, Sys=14.0Mi, NumGC=95"}
-{"@timestamp":"2022-06-22T17:28:57.497+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.5Mi, Sys=14.0Mi, NumGC=95"}
-{"@timestamp":"2022-06-22T17:29:57.494+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.5Mi, Sys=14.0Mi, NumGC=96"}
-{"@timestamp":"2022-06-22T17:30:57.497+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.5Mi, Sys=14.0Mi, NumGC=96"}
-{"@timestamp":"2022-06-22T17:31:57.500+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.5Mi, Sys=14.0Mi, NumGC=97"}
-{"@timestamp":"2022-06-22T17:32:57.495+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.5Mi, Sys=14.0Mi, NumGC=97"}
-{"@timestamp":"2022-06-22T17:33:57.499+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.5Mi, Sys=14.0Mi, NumGC=98"}
-{"@timestamp":"2022-06-22T17:34:57.489+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.5Mi, Sys=14.0Mi, NumGC=98"}
-{"@timestamp":"2022-06-22T17:35:57.501+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.5Mi, Sys=14.0Mi, NumGC=99"}
-{"@timestamp":"2022-06-22T17:36:57.492+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.5Mi, Sys=14.0Mi, NumGC=99"}
-{"@timestamp":"2022-06-22T17:37:57.500+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.5Mi, Sys=14.0Mi, NumGC=100"}
-{"@timestamp":"2022-06-22T17:38:57.504+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.5Mi, Sys=14.0Mi, NumGC=100"}
-{"@timestamp":"2022-06-22T17:39:57.493+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.5Mi, Sys=14.0Mi, NumGC=101"}
-{"@timestamp":"2022-06-22T17:40:57.495+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.5Mi, Sys=14.0Mi, NumGC=101"}
-{"@timestamp":"2022-06-22T17:41:57.496+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.6Mi, TotalAlloc=6.5Mi, Sys=14.0Mi, NumGC=102"}
+{"@timestamp":"2022-06-24T15:14:22.628+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.0Mi, Sys=14.0Mi, NumGC=2"}
+{"@timestamp":"2022-06-24T15:14:22.643+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:15:22.616+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.2Mi, TotalAlloc=5.0Mi, Sys=14.0Mi, NumGC=2"}
+{"@timestamp":"2022-06-24T15:15:22.632+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:16:22.624+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.1Mi, TotalAlloc=5.0Mi, Sys=14.3Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T15:16:22.639+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:17:22.627+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.1Mi, TotalAlloc=5.0Mi, Sys=14.3Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T15:17:22.642+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:18:22.629+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.1Mi, TotalAlloc=5.0Mi, Sys=14.3Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T15:18:22.643+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:19:22.621+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.1Mi, TotalAlloc=5.0Mi, Sys=14.3Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T15:19:22.637+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:20:22.625+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.1Mi, TotalAlloc=5.0Mi, Sys=14.3Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T15:20:22.640+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:21:22.627+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.1Mi, TotalAlloc=5.0Mi, Sys=14.3Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T15:21:22.642+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:22:22.629+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.1Mi, TotalAlloc=5.0Mi, Sys=14.3Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T15:22:22.645+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:23:22.622+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.1Mi, TotalAlloc=5.0Mi, Sys=14.3Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T15:23:22.638+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:24:22.631+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:24:22.631+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.1Mi, TotalAlloc=5.0Mi, Sys=14.3Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T15:25:22.631+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:25:22.631+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.1Mi, TotalAlloc=5.0Mi, Sys=14.3Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T15:26:22.618+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.1Mi, TotalAlloc=5.0Mi, Sys=14.3Mi, NumGC=8"}
+{"@timestamp":"2022-06-24T15:26:22.634+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:27:22.630+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=2.1Mi, TotalAlloc=5.0Mi, Sys=14.3Mi, NumGC=8"}
+{"@timestamp":"2022-06-24T15:27:22.645+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:36:05.566+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8080, load: 25715, reqs: 1"}
+{"@timestamp":"2022-06-24T15:36:53.397+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=6.4Mi, Sys=18.7Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T15:36:53.413+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-24T15:37:05.581+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 661.0ms, med: 661.8ms, 90th: 661.8ms, 99th: 661.8ms, 99.9th: 661.8ms"}
+{"@timestamp":"2022-06-24T15:37:53.397+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=6.5Mi, Sys=18.7Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T15:37:53.409+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:38:05.575+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:38:53.396+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.5Mi, Sys=18.7Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T15:38:53.411+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:39:05.579+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:39:53.387+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.5Mi, Sys=18.7Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T15:39:53.418+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:40:05.579+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:40:53.389+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.7Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T15:40:53.419+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:41:05.569+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:41:53.394+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.7Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T15:41:53.410+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:42:05.573+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:42:53.388+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.7Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T15:42:53.418+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:43:05.578+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:43:53.389+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.7Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T15:43:53.420+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:44:05.581+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:44:53.392+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.7Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T15:44:53.408+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:45:05.581+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:45:53.395+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.7Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T15:45:53.410+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:46:05.577+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:46:53.391+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.7Mi, NumGC=8"}
+{"@timestamp":"2022-06-24T15:46:53.406+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:47:05.567+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:47:53.389+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.7Mi, NumGC=8"}
+{"@timestamp":"2022-06-24T15:47:53.421+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:48:05.570+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:48:53.385+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.7Mi, Sys=18.7Mi, NumGC=9"}
+{"@timestamp":"2022-06-24T15:48:53.417+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:49:05.570+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:49:53.387+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.7Mi, Sys=18.7Mi, NumGC=9"}
+{"@timestamp":"2022-06-24T15:49:53.417+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:50:05.568+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:50:53.400+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.7Mi, Sys=18.7Mi, NumGC=10"}
+{"@timestamp":"2022-06-24T15:50:53.415+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:51:05.569+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:51:53.392+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.7Mi, Sys=18.7Mi, NumGC=10"}
+{"@timestamp":"2022-06-24T15:51:53.407+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:52:05.574+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:52:53.388+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.7Mi, Sys=18.7Mi, NumGC=11"}
+{"@timestamp":"2022-06-24T15:52:53.419+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:53:05.573+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:53:53.395+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.7Mi, Sys=18.7Mi, NumGC=11"}
+{"@timestamp":"2022-06-24T15:53:53.411+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:54:05.576+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:54:53.392+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.7Mi, Sys=18.7Mi, NumGC=12"}
+{"@timestamp":"2022-06-24T15:54:53.408+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:55:05.571+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:55:53.392+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.7Mi, Sys=18.7Mi, NumGC=12"}
+{"@timestamp":"2022-06-24T15:55:53.407+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:56:05.574+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:56:53.393+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.8Mi, Sys=18.7Mi, NumGC=13"}
+{"@timestamp":"2022-06-24T15:56:53.408+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:57:05.581+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:57:53.388+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.8Mi, Sys=18.7Mi, NumGC=13"}
+{"@timestamp":"2022-06-24T15:57:53.420+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:58:05.575+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:58:53.397+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.8Mi, Sys=18.7Mi, NumGC=14"}
+{"@timestamp":"2022-06-24T15:58:53.412+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:59:05.578+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T15:59:53.385+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.8Mi, Sys=18.7Mi, NumGC=14"}
+{"@timestamp":"2022-06-24T15:59:53.416+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:00:05.567+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:00:53.390+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.8Mi, Sys=18.7Mi, NumGC=15"}
+{"@timestamp":"2022-06-24T16:00:53.405+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:01:05.578+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:01:53.398+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.8Mi, Sys=18.7Mi, NumGC=15"}
+{"@timestamp":"2022-06-24T16:01:53.413+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:02:05.569+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:02:53.399+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.8Mi, Sys=18.7Mi, NumGC=16"}
+{"@timestamp":"2022-06-24T16:02:53.415+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:03:05.570+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:03:53.396+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.8Mi, Sys=18.7Mi, NumGC=16"}
+{"@timestamp":"2022-06-24T16:03:53.412+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:04:05.573+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:04:53.387+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.9Mi, Sys=18.7Mi, NumGC=17"}
+{"@timestamp":"2022-06-24T16:04:53.417+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:05:05.577+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:05:53.397+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.9Mi, Sys=18.7Mi, NumGC=17"}
+{"@timestamp":"2022-06-24T16:05:53.413+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:06:05.581+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:06:53.386+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.9Mi, Sys=18.7Mi, NumGC=18"}
+{"@timestamp":"2022-06-24T16:06:53.416+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:07:05.581+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:07:53.384+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.9Mi, Sys=18.7Mi, NumGC=18"}
+{"@timestamp":"2022-06-24T16:07:53.415+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:08:05.567+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:08:53.391+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.9Mi, Sys=18.7Mi, NumGC=19"}
+{"@timestamp":"2022-06-24T16:08:53.407+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:09:05.577+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:09:53.387+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.9Mi, Sys=18.7Mi, NumGC=19"}
+{"@timestamp":"2022-06-24T16:09:53.417+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:10:05.577+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:10:53.396+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.9Mi, Sys=18.7Mi, NumGC=20"}
+{"@timestamp":"2022-06-24T16:10:53.412+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:11:05.571+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:11:53.399+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.9Mi, Sys=18.7Mi, NumGC=20"}
+{"@timestamp":"2022-06-24T16:11:53.414+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:12:05.573+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:12:53.398+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.0Mi, Sys=18.7Mi, NumGC=21"}
+{"@timestamp":"2022-06-24T16:12:53.413+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:13:05.570+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:13:53.386+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.0Mi, Sys=18.7Mi, NumGC=21"}
+{"@timestamp":"2022-06-24T16:13:53.417+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:14:05.574+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:14:53.388+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.0Mi, Sys=18.7Mi, NumGC=22"}
+{"@timestamp":"2022-06-24T16:14:53.418+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:15:05.582+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:15:53.394+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.0Mi, Sys=18.7Mi, NumGC=22"}
+{"@timestamp":"2022-06-24T16:15:53.409+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:16:05.577+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:16:53.389+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.0Mi, Sys=18.7Mi, NumGC=23"}
+{"@timestamp":"2022-06-24T16:16:53.420+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:17:05.580+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:17:53.398+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.0Mi, Sys=18.7Mi, NumGC=23"}
+{"@timestamp":"2022-06-24T16:17:53.414+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:18:05.581+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:18:53.392+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.0Mi, Sys=18.7Mi, NumGC=24"}
+{"@timestamp":"2022-06-24T16:18:53.408+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:19:05.573+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:19:53.397+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.0Mi, Sys=18.7Mi, NumGC=24"}
+{"@timestamp":"2022-06-24T16:19:53.412+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:20:05.575+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:20:53.399+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.1Mi, Sys=18.7Mi, NumGC=25"}
+{"@timestamp":"2022-06-24T16:20:53.414+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:21:05.568+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:21:53.395+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.1Mi, Sys=18.7Mi, NumGC=25"}
+{"@timestamp":"2022-06-24T16:21:53.410+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:22:05.579+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:22:53.385+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.1Mi, Sys=18.7Mi, NumGC=26"}
+{"@timestamp":"2022-06-24T16:22:53.415+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:23:05.577+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:23:53.390+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.1Mi, Sys=18.7Mi, NumGC=26"}
+{"@timestamp":"2022-06-24T16:23:53.405+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:24:05.568+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:24:53.386+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.1Mi, Sys=18.7Mi, NumGC=27"}
+{"@timestamp":"2022-06-24T16:24:53.418+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:25:05.581+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:25:53.386+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.1Mi, Sys=18.7Mi, NumGC=27"}
+{"@timestamp":"2022-06-24T16:25:53.418+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:26:05.575+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:26:53.387+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.1Mi, Sys=18.7Mi, NumGC=28"}
+{"@timestamp":"2022-06-24T16:26:53.419+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:27:05.571+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:27:53.389+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.1Mi, Sys=18.7Mi, NumGC=28"}
+{"@timestamp":"2022-06-24T16:27:53.420+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:28:05.574+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:28:53.390+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.2Mi, Sys=18.7Mi, NumGC=29"}
+{"@timestamp":"2022-06-24T16:28:53.405+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:29:05.574+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:29:53.388+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.2Mi, Sys=18.7Mi, NumGC=29"}
+{"@timestamp":"2022-06-24T16:29:53.418+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:30:05.568+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:30:53.388+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.2Mi, Sys=18.7Mi, NumGC=30"}
+{"@timestamp":"2022-06-24T16:30:53.419+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:31:05.575+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:31:53.396+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.2Mi, Sys=18.7Mi, NumGC=30"}
+{"@timestamp":"2022-06-24T16:31:53.412+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:32:05.576+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:32:53.389+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.2Mi, Sys=18.7Mi, NumGC=31"}
+{"@timestamp":"2022-06-24T16:32:53.419+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:33:05.577+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:33:53.398+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.2Mi, Sys=18.7Mi, NumGC=31"}
+{"@timestamp":"2022-06-24T16:33:53.412+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:34:05.571+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:34:53.386+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.2Mi, Sys=18.7Mi, NumGC=32"}
+{"@timestamp":"2022-06-24T16:34:53.416+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:35:05.576+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:35:53.388+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.2Mi, Sys=18.7Mi, NumGC=32"}
+{"@timestamp":"2022-06-24T16:35:53.418+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:36:05.577+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:36:53.390+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.3Mi, Sys=18.7Mi, NumGC=33"}
+{"@timestamp":"2022-06-24T16:36:53.406+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:37:05.581+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:37:53.399+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.3Mi, Sys=18.7Mi, NumGC=33"}
+{"@timestamp":"2022-06-24T16:37:53.414+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:38:05.576+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:38:53.391+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.3Mi, Sys=18.7Mi, NumGC=34"}
+{"@timestamp":"2022-06-24T16:38:53.407+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:39:05.571+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:39:53.388+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.3Mi, Sys=18.7Mi, NumGC=34"}
+{"@timestamp":"2022-06-24T16:39:53.419+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:40:05.571+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:40:53.387+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.3Mi, Sys=18.7Mi, NumGC=35"}
+{"@timestamp":"2022-06-24T16:40:53.419+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:41:05.580+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:41:53.389+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.3Mi, Sys=18.7Mi, NumGC=35"}
+{"@timestamp":"2022-06-24T16:41:53.405+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:42:05.573+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:42:53.385+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.3Mi, Sys=18.7Mi, NumGC=36"}
+{"@timestamp":"2022-06-24T16:42:53.416+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:43:05.570+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:43:53.394+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.3Mi, Sys=18.7Mi, NumGC=36"}
+{"@timestamp":"2022-06-24T16:43:53.410+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:44:05.571+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:44:53.394+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.4Mi, Sys=18.7Mi, NumGC=37"}
+{"@timestamp":"2022-06-24T16:44:53.410+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:45:05.571+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:46:55.933+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=6.2Mi, Sys=18.4Mi, NumGC=2"}
+{"@timestamp":"2022-06-24T16:46:55.949+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:47:55.945+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=6.4Mi, Sys=18.4Mi, NumGC=2"}
+{"@timestamp":"2022-06-24T16:47:55.954+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:48:55.940+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.2Mi, TotalAlloc=6.4Mi, Sys=18.4Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T16:48:55.955+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:49:26.984+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8080, load: 7423, reqs: 1"}
+{"@timestamp":"2022-06-24T16:49:55.936+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=6.5Mi, Sys=18.4Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T16:49:55.952+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-24T16:50:26.989+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 55.0ms, med: 55.8ms, 90th: 55.8ms, 99th: 55.8ms, 99.9th: 55.8ms"}
+{"@timestamp":"2022-06-24T16:50:55.935+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.5Mi, Sys=18.4Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T16:50:55.951+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:51:26.998+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:51:55.937+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.4Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T16:51:55.952+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:52:26.995+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:52:55.936+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.4Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T16:52:55.951+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:53:26.995+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:53:55.936+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.4Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T16:53:55.952+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:54:26.990+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:54:55.935+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.4Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T16:54:55.950+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:55:26.992+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:55:55.945+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.4Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T16:55:55.960+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:56:26.999+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:56:55.948+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.4Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T16:56:55.948+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:57:26.997+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:57:55.940+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.4Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T16:57:55.956+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:58:26.992+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T16:59:54.220+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=6.3Mi, Sys=18.4Mi, NumGC=2"}
+{"@timestamp":"2022-06-24T16:59:54.235+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:00:54.218+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=6.4Mi, Sys=18.4Mi, NumGC=2"}
+{"@timestamp":"2022-06-24T17:00:54.228+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:01:54.215+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.4Mi, Sys=18.7Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T17:01:54.230+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:02:54.212+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.4Mi, Sys=18.7Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T17:02:54.232+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:03:54.222+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.4Mi, Sys=18.7Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T17:03:54.238+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:04:15.514+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8080, load: 2644, reqs: 1"}
+{"@timestamp":"2022-06-24T17:04:54.222+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=6.7Mi, Sys=18.7Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T17:04:54.237+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-24T17:05:15.527+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 7.0ms, med: 7.5ms, 90th: 7.5ms, 99th: 7.5ms, 99.9th: 7.5ms"}
+{"@timestamp":"2022-06-24T17:05:54.222+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.7Mi, Sys=18.7Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T17:05:54.237+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:06:15.523+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:06:54.223+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=6.7Mi, Sys=18.7Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T17:06:54.238+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:07:15.516+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:07:49.256+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8080, load: 4136, reqs: 1"}
+{"@timestamp":"2022-06-24T17:07:54.215+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=6.8Mi, Sys=18.7Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T17:07:54.230+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-24T17:08:15.519+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 17.0ms, med: 17.3ms, 90th: 17.3ms, 99th: 17.3ms, 99.9th: 17.3ms"}
+{"@timestamp":"2022-06-24T17:08:54.220+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=6.8Mi, Sys=18.7Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T17:08:54.235+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:09:15.526+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:09:54.223+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=6.8Mi, Sys=18.7Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T17:09:54.239+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:10:15.524+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:10:54.221+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=6.9Mi, Sys=18.7Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T17:10:54.235+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:11:15.529+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:11:54.218+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.9Mi, Sys=18.7Mi, NumGC=8"}
+{"@timestamp":"2022-06-24T17:11:54.233+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:12:15.524+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:12:54.219+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.9Mi, Sys=18.7Mi, NumGC=8"}
+{"@timestamp":"2022-06-24T17:12:54.235+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:13:15.518+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:13:54.213+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.9Mi, Sys=18.7Mi, NumGC=9"}
+{"@timestamp":"2022-06-24T17:13:54.228+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:14:15.514+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:14:54.219+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.9Mi, Sys=18.7Mi, NumGC=9"}
+{"@timestamp":"2022-06-24T17:14:54.234+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:15:15.525+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:15:54.212+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.9Mi, Sys=18.7Mi, NumGC=10"}
+{"@timestamp":"2022-06-24T17:15:54.243+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:16:15.521+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:16:54.222+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.9Mi, Sys=18.7Mi, NumGC=10"}
+{"@timestamp":"2022-06-24T17:16:54.238+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:17:15.515+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:17:54.218+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.9Mi, Sys=18.7Mi, NumGC=11"}
+{"@timestamp":"2022-06-24T17:17:54.233+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:18:15.518+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:18:54.221+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.0Mi, Sys=18.7Mi, NumGC=11"}
+{"@timestamp":"2022-06-24T17:18:54.236+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:19:15.527+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:19:54.219+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.0Mi, Sys=18.7Mi, NumGC=12"}
+{"@timestamp":"2022-06-24T17:19:54.235+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:20:15.523+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:20:54.213+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.0Mi, Sys=18.7Mi, NumGC=12"}
+{"@timestamp":"2022-06-24T17:20:54.228+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:20:58.837+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8080, load: 3717, reqs: 1"}
+{"@timestamp":"2022-06-24T17:21:15.516+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 13.0ms, med: 13.8ms, 90th: 13.8ms, 99th: 13.8ms, 99.9th: 13.8ms"}
+{"@timestamp":"2022-06-24T17:21:54.216+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.0Mi, Sys=18.7Mi, NumGC=13"}
+{"@timestamp":"2022-06-24T17:21:54.231+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-24T17:22:15.524+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:22:54.214+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.1Mi, Sys=18.7Mi, NumGC=13"}
+{"@timestamp":"2022-06-24T17:22:54.230+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:23:15.519+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:23:54.217+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.1Mi, Sys=18.7Mi, NumGC=14"}
+{"@timestamp":"2022-06-24T17:23:54.232+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:24:15.528+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:24:54.211+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.1Mi, Sys=18.7Mi, NumGC=14"}
+{"@timestamp":"2022-06-24T17:24:54.242+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:25:15.529+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:25:54.214+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.1Mi, Sys=18.7Mi, NumGC=15"}
+{"@timestamp":"2022-06-24T17:25:54.230+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:26:15.519+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:26:36.387+08:00","level":"stat","content":"p2c - conn: 127.0.0.1:8080, load: 13001, reqs: 1"}
+{"@timestamp":"2022-06-24T17:27:29.074+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.4Mi, Sys=18.4Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T17:27:29.090+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0"}
+{"@timestamp":"2022-06-24T17:27:36.393+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 193.5ms, med: 218.6ms, 90th: 218.6ms, 99th: 218.6ms, 99.9th: 218.6ms"}
+{"@timestamp":"2022-06-24T17:28:29.068+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=6.6Mi, Sys=18.4Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T17:28:29.083+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:28:36.394+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:29:29.070+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.4Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T17:29:29.086+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:29:36.401+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:30:29.066+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.4Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T17:30:29.081+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:30:36.401+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:31:29.072+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.4Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T17:31:29.087+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:31:36.389+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:32:29.071+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.4Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T17:32:29.086+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:32:36.397+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:33:29.063+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.4Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T17:33:29.079+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:33:36.392+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:34:29.070+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.6Mi, Sys=18.4Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T17:34:29.085+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:34:36.396+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:35:29.064+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.7Mi, Sys=18.4Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T17:35:29.080+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:35:36.388+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:36:29.072+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.7Mi, Sys=18.4Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T17:36:29.087+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:36:36.399+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:37:29.075+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.7Mi, Sys=18.4Mi, NumGC=8"}
+{"@timestamp":"2022-06-24T17:37:29.091+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:37:36.398+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:38:29.075+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.7Mi, Sys=18.4Mi, NumGC=8"}
+{"@timestamp":"2022-06-24T17:38:29.091+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:38:36.399+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:39:29.071+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.7Mi, Sys=18.4Mi, NumGC=9"}
+{"@timestamp":"2022-06-24T17:39:29.086+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:39:36.396+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}
+{"@timestamp":"2022-06-24T17:40:29.063+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.7Mi, Sys=18.4Mi, NumGC=9"}
+{"@timestamp":"2022-06-24T17:40:29.079+08:00","level":"stat","content":"(api) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:40:36.399+08:00","level":"stat","content":"(knowledge-api) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms"}

+ 4 - 4
rpc/knowledge/etc/knowledge.yaml

@@ -2,7 +2,7 @@ Name: knowledge.rpc
 ListenOn: 127.0.0.1:8080
 Etcd:
   Hosts:
-    - 192.168.3.206:2379
+    - 127.0.0.1:2379
   Key: knowledge.rpc
 WebRpcPort: 8015
 MysqlMain:
@@ -15,14 +15,14 @@ MysqlMain:
 Es:
   addr: http://192.168.3.204:1500
   size: 5
-  index: smart_v6
-  type: smart_v
+  index: smart_new
+  type: smart
 Segment: http://192.168.3.204:9070/api/segment
 
 TestConf:
   Etcd:
     Hosts:
-      - 192.168.3.206:2379
+      - 127.0.0.1:2379
     Key: knowledge.rpc
 CalleeId: knowledge.rpc
 Node: 1

+ 2 - 2
rpc/knowledge/internal/logic/knowledgeaddlogic.go

@@ -50,6 +50,7 @@ func (l *KnowledgeAddLogic) KnowledgeAdd(in *knowledgeclient.AddRequest) (*knowl
 		var answerId int64
 		fool := Mysql.ExecTx("添加知识", func(tx *sql.Tx) bool {
 			//插入答案
+			log.Println(in.Answer, "------------------")
 			answerData := map[string]interface{}{
 				"knowledge_id":  (*datalist)[0]["id"],
 				"status":        1,
@@ -81,14 +82,13 @@ func (l *KnowledgeAddLogic) KnowledgeAdd(in *knowledgeclient.AddRequest) (*knowl
 			knowledge := map[string]interface{}{
 				"knowledgeId":  (*datalist)[0]["id"],
 				"status":       1,
-				"createTime":   nowTime,
+				"createTime":   time.Now().Unix(),
 				"createPerson": in.Person,
 				"answer":       in.Answer,
 				"question":     in.Question,
 				"keywords":     keywords,
 				"answerId":     answerId,
 				"tenantId":     in.TenantId,
-				"_id":          "5af8ece0d62ad619adbcd614",
 			}
 			b := elastic.Save(C.Es.Index, C.Es.Type, knowledge)
 			log.Println("存es", b)

+ 2 - 7
rpc/knowledge/internal/logic/knowledgedellogic.go

@@ -7,7 +7,7 @@ import (
 	. "knowledgeBase/rpc/knowledge/init"
 	"knowledgeBase/rpc/knowledge/knowledgeclient"
 	"knowledgeBase/rpc/knowledge/util"
-	"log"
+	"strconv"
 	"time"
 
 	"knowledgeBase/rpc/knowledge/internal/svc"
@@ -40,13 +40,8 @@ func (l *KnowledgeDelLogic) KnowledgeDel(in *knowledgeclient.KnowledgeDelReq) (*
 
 	if fool {
 		//删除es数据
-		query := map[string]interface{}{
-			"answerId": in.AnswerId,
-		}
-		//query := elastic.NewTermQuery()
-		log.Println(C.Es.Index, C.Es.Type)
+		query := `{"query":{"bool":{"must":[{"term":{"smart_v.answerId":"` + strconv.Itoa(int(in.AnswerId)) + `"}}],"must_not":[],"should":[]}},"from":0,"size":10,"sort":[],"facets":{}}`
 		ok := elastic.Del(C.Es.Index, C.Es.Type, query)
-		log.Println("删除es数据:", ok)
 		if ok {
 			result.ErrorCode = 0
 			result.ErrorMsg = "删除问题成功"

+ 2 - 1
rpc/knowledge/internal/logic/knowledgelistlogic.go

@@ -30,7 +30,7 @@ func (l *KnowledgeListLogic) KnowledgeList(in *knowledgeclient.ListRequest) (*kn
 	result := &knowledgeclient.ListResponse{}
 	var knowledgeList []*knowledgeclient.KnowledgeEntity
 	//列表数据
-	sql := "SELECT b.content as answer,c.content as question,b.id  FROM " + util.KNOWLEDGE +
+	sql := "SELECT b.content as answer,c.content as question,b.id,b.knowledge_id  FROM " + util.KNOWLEDGE +
 		" a LEFT JOIN " + util.ANSWER + " b ON a.id = b.knowledge_id LEFT JOIN " + util.QUESTION +
 		" c ON b.id = c.answer_id WHERE b.`status` =1 and a.tenant_id=? limit ?,?"
 	datalist := Mysql.SelectBySql(sql, in.TenantId, in.PageIndex, in.PageSize)
@@ -40,6 +40,7 @@ func (l *KnowledgeListLogic) KnowledgeList(in *knowledgeclient.ListRequest) (*kn
 			knowledge.Answer = quitl.ObjToString(value["answer"])
 			knowledge.Question = quitl.ObjToString(value["question"])
 			knowledge.AnswerId = quitl.Int64All(value["id"])
+			knowledge.KnowledgeId = quitl.Int64All(value["knowledge_id"])
 			knowledgeList = append(knowledgeList, &knowledge)
 		}
 	}

+ 1 - 1
rpc/knowledge/knowledge.proto

@@ -13,7 +13,7 @@ message Question {
 message AddRequest {
   string question = 1;
   string answer = 2;
-  string tenantId = 3;
+  int64 tenantId = 3;
   string appId = 4;
   string person = 5;//人员姓名
 }

+ 56 - 66
rpc/knowledge/knowledge/knowledge.pb.go

@@ -94,7 +94,7 @@ type AddRequest struct {
 
 	Question string `protobuf:"bytes,1,opt,name=question,proto3" json:"question,omitempty"`
 	Answer   string `protobuf:"bytes,2,opt,name=answer,proto3" json:"answer,omitempty"`
-	TenantId string `protobuf:"bytes,3,opt,name=tenantId,proto3" json:"tenantId,omitempty"`
+	TenantId int64  `protobuf:"varint,3,opt,name=tenantId,proto3" json:"tenantId,omitempty"`
 	AppId    string `protobuf:"bytes,4,opt,name=appId,proto3" json:"appId,omitempty"`
 	Person   string `protobuf:"bytes,5,opt,name=person,proto3" json:"person,omitempty"` //人员姓名
 }
@@ -145,11 +145,11 @@ func (x *AddRequest) GetAnswer() string {
 	return ""
 }
 
-func (x *AddRequest) GetTenantId() string {
+func (x *AddRequest) GetTenantId() int64 {
 	if x != nil {
 		return x.TenantId
 	}
-	return ""
+	return 0
 }
 
 func (x *AddRequest) GetAppId() string {
@@ -647,10 +647,9 @@ type KnowledgeEditReq struct {
 	Question    string `protobuf:"bytes,1,opt,name=question,proto3" json:"question,omitempty"`        //问题
 	Answer      string `protobuf:"bytes,2,opt,name=answer,proto3" json:"answer,omitempty"`            //答案
 	AnswerId    int64  `protobuf:"varint,3,opt,name=answerId,proto3" json:"answerId,omitempty"`       //答案标识
-	State       int64  `protobuf:"varint,4,opt,name=state,proto3" json:"state,omitempty"`             //知识状态0无效1有效
 	Person      string `protobuf:"bytes,5,opt,name=person,proto3" json:"person,omitempty"`            //人员姓名
-	KnowledgeId int64  `protobuf:"varint,6,opt,name=knowledgeId,proto3" json:"knowledgeId,omitempty"` //知识库id
 	TenantId    int64  `protobuf:"varint,7,opt,name=tenantId,proto3" json:"tenantId,omitempty"`       //租户id
+	KnowledgeId int64  `protobuf:"varint,8,opt,name=knowledgeId,proto3" json:"knowledgeId,omitempty"` //知识库id
 }
 
 func (x *KnowledgeEditReq) Reset() {
@@ -706,13 +705,6 @@ func (x *KnowledgeEditReq) GetAnswerId() int64 {
 	return 0
 }
 
-func (x *KnowledgeEditReq) GetState() int64 {
-	if x != nil {
-		return x.State
-	}
-	return 0
-}
-
 func (x *KnowledgeEditReq) GetPerson() string {
 	if x != nil {
 		return x.Person
@@ -720,16 +712,16 @@ func (x *KnowledgeEditReq) GetPerson() string {
 	return ""
 }
 
-func (x *KnowledgeEditReq) GetKnowledgeId() int64 {
+func (x *KnowledgeEditReq) GetTenantId() int64 {
 	if x != nil {
-		return x.KnowledgeId
+		return x.TenantId
 	}
 	return 0
 }
 
-func (x *KnowledgeEditReq) GetTenantId() int64 {
+func (x *KnowledgeEditReq) GetKnowledgeId() int64 {
 	if x != nil {
-		return x.TenantId
+		return x.KnowledgeId
 	}
 	return 0
 }
@@ -859,7 +851,7 @@ var file_knowledge_proto_rawDesc = []byte{
 	0x75, 0x65, 0x73, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x6e, 0x73, 0x77, 0x65,
 	0x72, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x12,
 	0x1a, 0x0a, 0x08, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
-	0x09, 0x52, 0x08, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61,
+	0x03, 0x52, 0x08, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61,
 	0x70, 0x70, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49,
 	0x64, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28,
 	0x09, 0x52, 0x06, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x22, 0x5d, 0x0a, 0x0b, 0x41, 0x64, 0x64,
@@ -916,62 +908,60 @@ var file_knowledge_proto_rawDesc = []byte{
 	0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x20,
 	0x0a, 0x0b, 0x6b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x49, 0x64, 0x18, 0x06, 0x20,
 	0x01, 0x28, 0x03, 0x52, 0x0b, 0x6b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x49, 0x64,
-	0x22, 0xce, 0x01, 0x0a, 0x10, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x45, 0x64,
+	0x22, 0xb8, 0x01, 0x0a, 0x10, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x45, 0x64,
 	0x69, 0x74, 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x71, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f,
 	0x6e, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x71, 0x75, 0x65, 0x73, 0x74, 0x69, 0x6f,
 	0x6e, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x18, 0x02, 0x20, 0x01, 0x28,
 	0x09, 0x52, 0x06, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x6e, 0x73,
 	0x77, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x61, 0x6e, 0x73,
-	0x77, 0x65, 0x72, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x18, 0x04,
-	0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x73, 0x74, 0x61, 0x74, 0x65, 0x12, 0x16, 0x0a, 0x06, 0x70,
-	0x65, 0x72, 0x73, 0x6f, 0x6e, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x65, 0x72,
-	0x73, 0x6f, 0x6e, 0x12, 0x20, 0x0a, 0x0b, 0x6b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65,
-	0x49, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x6b, 0x6e, 0x6f, 0x77, 0x6c, 0x65,
-	0x64, 0x67, 0x65, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x49,
-	0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x49,
-	0x64, 0x22, 0x79, 0x0a, 0x0c, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73,
-	0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18,
-	0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65,
-	0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20,
-	0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x2d, 0x0a,
-	0x04, 0x64, 0x61, 0x74, 0x61, 0x18, 0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x74, 0x65,
-	0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2e, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65,
-	0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x2d, 0x0a, 0x0f,
-	0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x44, 0x65, 0x6c, 0x52, 0x65, 0x71, 0x12,
-	0x1a, 0x0a, 0x08, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
-	0x03, 0x52, 0x08, 0x61, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x49, 0x64, 0x32, 0xde, 0x03, 0x0a, 0x09,
-	0x6b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x12, 0x3b, 0x0a, 0x0c, 0x4b, 0x6e, 0x6f,
-	0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x41, 0x64, 0x64, 0x12, 0x14, 0x2e, 0x74, 0x65, 0x6d, 0x70,
-	0x6c, 0x61, 0x74, 0x65, 0x2e, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
-	0x15, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2e, 0x41, 0x64, 0x64, 0x52, 0x65,
-	0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3e, 0x0a, 0x0d, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65,
-	0x64, 0x67, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x15, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61,
-	0x74, 0x65, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16,
-	0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65,
-	0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x42, 0x0a, 0x0d, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65,
-	0x64, 0x67, 0x65, 0x45, 0x64, 0x69, 0x74, 0x12, 0x1a, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61,
-	0x74, 0x65, 0x2e, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x45, 0x64, 0x69, 0x74,
-	0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2e, 0x41,
-	0x64, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x42, 0x0a, 0x0d, 0x4b, 0x6e,
-	0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x19, 0x2e, 0x74, 0x65,
-	0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2e, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65,
-	0x45, 0x6e, 0x74, 0x69, 0x74, 0x79, 0x1a, 0x16, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74,
-	0x65, 0x2e, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40,
-	0x0a, 0x0c, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x44, 0x65, 0x6c, 0x12, 0x19,
-	0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2e, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65,
-	0x64, 0x67, 0x65, 0x44, 0x65, 0x6c, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x74, 0x65, 0x6d, 0x70,
+	0x77, 0x65, 0x72, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x18,
+	0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x1a, 0x0a,
+	0x08, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52,
+	0x08, 0x74, 0x65, 0x6e, 0x61, 0x6e, 0x74, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0b, 0x6b, 0x6e, 0x6f,
+	0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x49, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b,
+	0x6b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x49, 0x64, 0x22, 0x79, 0x0a, 0x0c, 0x49,
+	0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x65,
+	0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
+	0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72,
+	0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73, 0x67, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65,
+	0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73, 0x67, 0x12, 0x2d, 0x0a, 0x04, 0x64, 0x61, 0x74, 0x61, 0x18,
+	0x03, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65,
+	0x2e, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79,
+	0x52, 0x04, 0x64, 0x61, 0x74, 0x61, 0x22, 0x2d, 0x0a, 0x0f, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65,
+	0x64, 0x67, 0x65, 0x44, 0x65, 0x6c, 0x52, 0x65, 0x71, 0x12, 0x1a, 0x0a, 0x08, 0x61, 0x6e, 0x73,
+	0x77, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x61, 0x6e, 0x73,
+	0x77, 0x65, 0x72, 0x49, 0x64, 0x32, 0xde, 0x03, 0x0a, 0x09, 0x6b, 0x6e, 0x6f, 0x77, 0x6c, 0x65,
+	0x64, 0x67, 0x65, 0x12, 0x3b, 0x0a, 0x0c, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65,
+	0x41, 0x64, 0x64, 0x12, 0x14, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2e, 0x41,
+	0x64, 0x64, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x15, 0x2e, 0x74, 0x65, 0x6d, 0x70,
 	0x6c, 0x61, 0x74, 0x65, 0x2e, 0x41, 0x64, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
-	0x12, 0x3f, 0x0a, 0x0a, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x12, 0x17,
+	0x12, 0x3e, 0x0a, 0x0d, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x4c, 0x69, 0x73,
+	0x74, 0x12, 0x15, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2e, 0x4c, 0x69, 0x73,
+	0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c,
+	0x61, 0x74, 0x65, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65,
+	0x12, 0x42, 0x0a, 0x0d, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x45, 0x64, 0x69,
+	0x74, 0x12, 0x1a, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2e, 0x4b, 0x6e, 0x6f,
+	0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x45, 0x64, 0x69, 0x74, 0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e,
+	0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2e, 0x41, 0x64, 0x64, 0x52, 0x65, 0x73, 0x70,
+	0x6f, 0x6e, 0x73, 0x65, 0x12, 0x42, 0x0a, 0x0d, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67,
+	0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x19, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65,
+	0x2e, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x45, 0x6e, 0x74, 0x69, 0x74, 0x79,
+	0x1a, 0x16, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2e, 0x49, 0x6e, 0x66, 0x6f,
+	0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x40, 0x0a, 0x0c, 0x4b, 0x6e, 0x6f, 0x77,
+	0x6c, 0x65, 0x64, 0x67, 0x65, 0x44, 0x65, 0x6c, 0x12, 0x19, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c,
+	0x61, 0x74, 0x65, 0x2e, 0x4b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x44, 0x65, 0x6c,
+	0x52, 0x65, 0x71, 0x1a, 0x15, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2e, 0x41,
+	0x64, 0x64, 0x52, 0x65, 0x73, 0x70, 0x6f, 0x6e, 0x73, 0x65, 0x12, 0x3f, 0x0a, 0x0a, 0x46, 0x69,
+	0x6e, 0x64, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x12, 0x17, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c,
+	0x61, 0x74, 0x65, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x52, 0x65,
+	0x71, 0x1a, 0x18, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2e, 0x46, 0x69, 0x6e,
+	0x64, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x12, 0x49, 0x0a, 0x0f, 0x52,
+	0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x12, 0x17,
 	0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6e,
-	0x73, 0x77, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x18, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61,
-	0x74, 0x65, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x52, 0x65, 0x73,
-	0x70, 0x12, 0x49, 0x0a, 0x0f, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x41, 0x6e,
-	0x73, 0x77, 0x65, 0x72, 0x12, 0x17, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2e,
-	0x46, 0x69, 0x6e, 0x64, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e,
-	0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65,
-	0x6e, 0x64, 0x41, 0x6e, 0x73, 0x77, 0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x42, 0x0d, 0x5a, 0x0b,
-	0x2e, 0x2f, 0x6b, 0x6e, 0x6f, 0x77, 0x6c, 0x65, 0x64, 0x67, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f,
-	0x74, 0x6f, 0x33,
+	0x73, 0x77, 0x65, 0x72, 0x52, 0x65, 0x71, 0x1a, 0x1d, 0x2e, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61,
+	0x74, 0x65, 0x2e, 0x52, 0x65, 0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x64, 0x41, 0x6e, 0x73, 0x77,
+	0x65, 0x72, 0x52, 0x65, 0x73, 0x70, 0x42, 0x0d, 0x5a, 0x0b, 0x2e, 0x2f, 0x6b, 0x6e, 0x6f, 0x77,
+	0x6c, 0x65, 0x64, 0x67, 0x65, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
 }
 
 var (

+ 5 - 5
rpc/knowledge/knowledgeclient/knowledge.go

@@ -13,18 +13,18 @@ import (
 )
 
 type (
+	RecommendAnswerResp = knowledge.RecommendAnswerResp
 	ListResponse        = knowledge.ListResponse
-	KnowledgeEntity     = knowledge.KnowledgeEntity
-	KnowledgeEditReq    = knowledge.KnowledgeEditReq
+	InfoResponse        = knowledge.InfoResponse
+	KnowledgeDelReq     = knowledge.KnowledgeDelReq
 	Question            = knowledge.Question
 	AddRequest          = knowledge.AddRequest
 	AddResponse         = knowledge.AddResponse
 	FindAnswerReq       = knowledge.FindAnswerReq
-	RecommendAnswerResp = knowledge.RecommendAnswerResp
-	InfoResponse        = knowledge.InfoResponse
 	FindAnswerResp      = knowledge.FindAnswerResp
 	ListRequest         = knowledge.ListRequest
-	KnowledgeDelReq     = knowledge.KnowledgeDelReq
+	KnowledgeEntity     = knowledge.KnowledgeEntity
+	KnowledgeEditReq    = knowledge.KnowledgeEditReq
 
 	Knowledge interface {
 		// 知识新增

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

@@ -149,3 +149,77 @@
 {"@timestamp":"2022-06-23T09:43:57.322+08:00","level":"info","duration":"72.5ms","content":"127.0.0.1:57196 - /template.knowledge/KnowledgeDel - {\"answerId\":32}","trace":"49fe4f059f084c95751d758dfcb37b18","span":"a9b3c989b6d0450c"}
 {"@timestamp":"2022-06-23T09:45:34.910+08:00","level":"info","content":"info--日志记录"}
 {"@timestamp":"2022-06-23T09:45:34.910+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-23T09:57:24.050+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-23T09:57:24.050+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-23T09:57:38.028+08:00","level":"info","duration":"347.3ms","content":"127.0.0.1:57731 - /template.knowledge/KnowledgeAdd - {\"question\":\"超级订阅在哪设置订阅提醒,超级订阅用户有哪些权益?\",\"answer\":\"超级订阅用户权益有订阅设置。\",\"tenantId\":\"10000\",\"appId\":\"10000\",\"person\":\"王三\"}","trace":"ceeddbb55f28d77563920ff3ede3746b","span":"b901edaae9df83b2"}
+{"@timestamp":"2022-06-23T14:04:57.157+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-23T14:04:57.157+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-23T14:07:51.649+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-23T14:07:51.649+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-23T14:07:59.813+08:00","level":"info","duration":"164.6ms","content":"127.0.0.1:60883 - /template.knowledge/FindAnswer - {\"question\":\"大会员有哪些权益\",\"tenantId\":1,\"type\":1,\"appId\":\"10000\"}","trace":"babfa26ed16e417a5589bd3308bc6d5b","span":"4599e200854167c4"}
+{"@timestamp":"2022-06-23T14:09:43.218+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-23T14:09:43.218+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-23T14:09:51.782+08:00","level":"info","duration":"78.9ms","content":"127.0.0.1:60907 - /template.knowledge/FindAnswer - {\"question\":\"大会员有哪些权益\",\"tenantId\":1,\"type\":1,\"appId\":\"10000\"}","trace":"abbc9247bc5a53173e49b553c1524df6","span":"0604853bdd32771c"}
+{"@timestamp":"2022-06-23T14:48:45.446+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-23T14:48:45.446+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-23T14:49:00.188+08:00","level":"info","duration":"401.5ms","content":"127.0.0.1:61743 - /template.knowledge/KnowledgeAdd - {\"question\":\"超级订阅在哪设置订阅提醒,超级订阅用户有哪些权益?\",\"answer\":\"超级订阅用户权益有订阅设置。\",\"tenantId\":\"10000\",\"appId\":\"10000\",\"person\":\"王三\"}","trace":"74e92a0b7f075b22a624b1aae4df0548","span":"399d5dd7338eb834"}
+{"@timestamp":"2022-06-23T14:51:55.567+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-23T14:51:55.567+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-23T14:52:04.166+08:00","level":"info","duration":"125.1ms","content":"127.0.0.1:61785 - /template.knowledge/KnowledgeAdd - {\"question\":\"超级订阅在哪设置订阅提醒,超级订阅用户有哪些权益?\",\"answer\":\"超级订阅用户权益有订阅设置。\",\"tenantId\":\"10000\",\"appId\":\"10000\",\"person\":\"王三\"}","trace":"4ce4522b525bacc62bd372b2fd351b32","span":"9382a8f22b5fff41"}
+{"@timestamp":"2022-06-23T14:55:46.631+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-23T14:55:46.631+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-23T14:57:47.559+08:00","level":"info","duration":"41.9ms","content":"127.0.0.1:61932 - /template.knowledge/FindAnswer - {\"question\":\"超级订阅用户权益有订阅设置\",\"tenantId\":1,\"type\":1,\"appId\":\"10000\"}","trace":"8321203142194810d754a2a59528088e","span":"45b7b25bcdbb839f"}
+{"@timestamp":"2022-06-23T14:59:43.649+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-23T14:59:43.649+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-23T14:59:53.439+08:00","level":"info","duration":"8.9ms","content":"127.0.0.1:61954 - /template.knowledge/FindAnswer - {\"question\":\"超级订阅用户权益有订阅设置\",\"tenantId\":1,\"type\":1,\"appId\":\"10000\"}","trace":"8063af3a3f46db03e5d75fdb4459e22f","span":"db2b5b957a804597"}
+{"@timestamp":"2022-06-23T15:22:20.065+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-23T15:22:20.065+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-23T15:22:30.692+08:00","level":"info","duration":"11.0ms","content":"127.0.0.1:62725 - /template.knowledge/FindAnswer - {\"question\":\"超级订阅用户权益有订阅设置\",\"tenantId\":1,\"type\":1,\"appId\":\"10000\"}","trace":"0b689f919fc3317786e02fbb2a1a7cb6","span":"d362b90d45902204"}
+{"@timestamp":"2022-06-23T15:24:26.847+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-23T15:24:26.847+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-23T15:24:36.700+08:00","level":"info","duration":"11.5ms","content":"127.0.0.1:62791 - /template.knowledge/FindAnswer - {\"question\":\"超级订阅用户权益有订阅设置\",\"tenantId\":1,\"type\":1,\"appId\":\"10000\"}","trace":"00d17e46757e70791367fbeff5a22a34","span":"5b9d5ce93b2cbd1c"}
+{"@timestamp":"2022-06-23T15:25:26.564+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-23T15:25:26.564+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-23T15:25:36.320+08:00","level":"info","duration":"10.8ms","content":"127.0.0.1:62810 - /template.knowledge/FindAnswer - {\"question\":\"超级订阅用户权益有订阅设置\",\"tenantId\":1,\"type\":1,\"appId\":\"10000\"}","trace":"15693aadd509ed36984bb57fc6c79bcf","span":"f31bc16fa4389dea"}
+{"@timestamp":"2022-06-23T15:46:56.369+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-23T15:46:56.369+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-23T16:12:36.394+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-23T16:12:36.394+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-23T16:12:48.274+08:00","level":"info","duration":"11.5ms","content":"127.0.0.1:63572 - /template.knowledge/FindAnswer - {\"question\":\"超级订阅用户权益有订阅设置\",\"tenantId\":1,\"type\":1,\"appId\":\"10000\"}","trace":"5a8b91683a10e26435c41316d52ae23d","span":"7537f19257a1e2c8"}
+{"@timestamp":"2022-06-23T16:16:07.149+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-23T16:16:07.149+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-23T16:16:16.277+08:00","level":"info","duration":"146.2ms","content":"127.0.0.1:63643 - /template.knowledge/FindAnswer - {\"question\":\"超级订阅用户权益有订阅设置\",\"tenantId\":1,\"type\":1,\"appId\":\"10000\"}","trace":"633bad27c57ffa29ec5e21d7551f1a28","span":"763ed13ecacec0aa"}
+{"@timestamp":"2022-06-23T16:17:38.432+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-23T16:17:38.432+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-23T16:17:45.865+08:00","level":"info","duration":"10.6ms","content":"127.0.0.1:63669 - /template.knowledge/FindAnswer - {\"question\":\"超级订阅用户权益有订阅设置\",\"tenantId\":1,\"type\":1,\"appId\":\"10000\"}","trace":"837f8e1025fc18998e84a79ed78c7ddc","span":"cec5693ac6862ed3"}
+{"@timestamp":"2022-06-23T16:41:09.376+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-23T16:41:09.376+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-23T16:41:21.481+08:00","level":"info","duration":"130.6ms","content":"127.0.0.1:64069 - /template.knowledge/FindAnswer - {\"question\":\"超级订阅用户权益有订阅设置\",\"tenantId\":1,\"type\":1,\"appId\":\"10000\"}","trace":"495311eed5cb5a129c6f074d47f6fb65","span":"28df751cac3eb685"}
+{"@timestamp":"2022-06-24T09:18:42.951+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-24T09:18:42.951+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-24T09:24:12.257+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-24T09:24:12.257+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-24T09:24:22.509+08:00","level":"info","duration":"446.6ms","content":"127.0.0.1:50421 - /template.knowledge/FindAnswer - {\"question\":\"超级订阅用户权益有订阅设置\",\"tenantId\":1,\"type\":1,\"appId\":\"10000\"}","trace":"ae8ccfd8e8a96a0f3e699a1f66a1b6a1","span":"51d3a4a44928c08d"}
+{"@timestamp":"2022-06-24T11:31:30.716+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-24T11:31:30.716+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-24T11:31:41.331+08:00","level":"info","duration":"138.9ms","content":"127.0.0.1:51704 - /template.knowledge/FindAnswer - {\"question\":\"超级订阅用户权益有订阅设置\",\"tenantId\":1,\"type\":1,\"appId\":\"10000\"}","trace":"6158d6965f4ad7f2cae62982ba6b9bd7","span":"3610907ee4fc9915"}
+{"@timestamp":"2022-06-24T11:32:25.754+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-24T11:32:25.754+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-24T13:43:15.136+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-24T13:43:15.136+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-24T13:46:34.930+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-24T13:46:34.930+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-24T15:32:20.350+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-24T15:32:20.350+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-24T16:49:26.983+08:00","level":"info","duration":"54.2ms","content":"127.0.0.1:52721 - /template.knowledge/KnowledgeList - {\"pageSize\":10,\"pageIndex\":1,\"tenantId\":10000}","trace":"6c156ce036d712edadf6aef94a6b744c","span":"a645d73c972826a4"}
+{"@timestamp":"2022-06-24T16:58:47.004+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-24T16:58:47.004+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-24T17:04:11.961+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-24T17:04:11.961+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-24T17:04:15.513+08:00","level":"info","duration":"6.0ms","content":"127.0.0.1:52979 - /template.knowledge/KnowledgeList - {\"pageSize\":10,\"pageIndex\":1,\"tenantId\":10000}","trace":"477e81ae1d3c7b609039e4c2bf6952c2","span":"54baa3807ac45830"}
+{"@timestamp":"2022-06-24T17:07:49.255+08:00","level":"info","duration":"15.9ms","content":"127.0.0.1:52979 - /template.knowledge/KnowledgeInfo - {\"answerId\":37}","trace":"5064be0c5fffd7b162c633c1047cc5c8","span":"0b76daa92e048436"}
+{"@timestamp":"2022-06-24T17:20:58.837+08:00","level":"info","duration":"13.8ms","content":"127.0.0.1:52979 - /template.knowledge/KnowledgeInfo - {\"answerId\":37}","trace":"f49d5e6dcfb026f5efb0e59880e5cbf9","span":"352f8c859c3274f7"}
+{"@timestamp":"2022-06-24T17:26:21.512+08:00","level":"info","content":"info--日志记录"}
+{"@timestamp":"2022-06-24T17:26:21.512+08:00","level":"info","content":"error--日志记录"}
+{"@timestamp":"2022-06-24T17:26:36.387+08:00","level":"info","duration":"168.3ms","content":"127.0.0.1:53329 - /template.knowledge/KnowledgeAdd - {\"question\":\"剑鱼标讯有哪些收费项目,有哪些收费项目,是怎么收费得\",\"tenantId\":10000,\"appId\":\"10000\",\"person\":\"wode\"}","trace":"5ad0199cb634b75e2140401ffb99b4cd","span":"f01f6ecbcd220f86"}
+{"@timestamp":"2022-06-24T17:27:25.445+08:00","level":"info","duration":"216.4ms","content":"127.0.0.1:53329 - /template.knowledge/KnowledgeAdd - {\"question\":\"剑鱼标讯有哪些收费项目,有哪些收费项目,是怎么收费得\",\"answer\":\"我得答案是非常靠谱的呀\",\"tenantId\":10000,\"appId\":\"10000\",\"person\":\"wode\"}","trace":"6782e348d48dfe68e317dcdf056b8a69","span":"2cf66412d83af626"}

文件差异内容过多而无法显示
+ 1 - 0
rpc/knowledge/logs/error.log


+ 5 - 0
rpc/knowledge/logs/slow.log

@@ -10,3 +10,8 @@
 {"@timestamp":"2022-06-20T15:24:29.876+08:00","level":"slow","duration":"12195.9ms","content":"[RPC] slowcall - 127.0.0.1:56400 - /template.knowledge/KnowledgeAdd - {\"question\":\"超级订阅在哪设置订阅提醒,订阅关键词怎么设置?\",\"answer\":\"可以再app中”我的“,”订阅设置“中设置。\",\"tenantId\":\"10000\",\"appId\":\"10000\",\"person\":\"王三\"}","trace":"63f766a5acc825b2f44f78e87ec5ca9c","span":"6579de462795f831"}
 {"@timestamp":"2022-06-20T16:50:13.209+08:00","level":"slow","duration":"808.8ms","content":"[RPC] slowcall - 127.0.0.1:58579 - /template.knowledge/KnowledgeAdd - {\"question\":\"超级订阅在哪设置订阅提醒,订阅关键词怎么设置?\",\"answer\":\"可以再app中”我的“,”订阅设置“中设置。\",\"tenantId\":\"10000\",\"appId\":\"10000\",\"person\":\"王三\"}","trace":"61111d099d8fa8d7d7571720a557f9c1","span":"ffdeba2f594e50b1"}
 {"@timestamp":"2022-06-22T11:41:09.858+08:00","level":"slow","duration":"881.8ms","content":"[RPC] slowcall - 127.0.0.1:60365 - /template.knowledge/KnowledgeAdd - {\"question\":\"超级订阅在哪设置订阅提醒,超级订阅用户有哪些权益?\",\"answer\":\"超级订阅用户权益有订阅设置。\",\"tenantId\":\"10000\",\"appId\":\"10000\",\"person\":\"王三\"}","trace":"f7ff01d1f0bc13dcc7f4caa76e317fad","span":"94aa21d3bf71ae53"}
+{"@timestamp":"2022-06-23T14:05:10.961+08:00","level":"slow","duration":"2008.6ms","content":"[RPC] slowcall - 127.0.0.1:60856 - /template.knowledge/FindAnswer - {\"question\":\"大会员有哪些权益\",\"tenantId\":1,\"type\":1,\"appId\":\"10000\"}","trace":"dbfb8ef2f9428aa344a7c01cdf95a925","span":"884687cc7fbe6f2c"}
+{"@timestamp":"2022-06-23T14:55:55.182+08:00","level":"slow","duration":"514.9ms","content":"[RPC] slowcall - 127.0.0.1:61911 - /template.knowledge/KnowledgeAdd - {\"question\":\"超级订阅在哪设置订阅提醒,超级订阅用户有哪些权益?\",\"answer\":\"超级订阅用户权益有订阅设置。\",\"tenantId\":\"10000\",\"appId\":\"10000\",\"person\":\"王三\"}","trace":"9e07a48c1c66fa53c02cf07c3fc2c773","span":"62cce6dd61fc20fc"}
+{"@timestamp":"2022-06-23T15:48:58.420+08:00","level":"slow","duration":"41263.3ms","content":"[RPC] slowcall - 127.0.0.1:63165 - /template.knowledge/FindAnswer - {\"question\":\"超级订阅用户权益有订阅设置\",\"tenantId\":1,\"type\":1,\"appId\":\"10000\"}","trace":"6f309152e4f260fdf062c89e2fd41452","span":"d3f0807d5e1640f2"}
+{"@timestamp":"2022-06-24T09:22:15.771+08:00","level":"slow","duration":"947.6ms","content":"[RPC] slowcall - 127.0.0.1:50388 - /template.knowledge/FindAnswer - {\"question\":\"超级订阅用户权益有订阅设置\",\"tenantId\":1,\"type\":1,\"appId\":\"10000\"}","trace":"2659e5ecf56e755c33d9bc4289b93936","span":"c4751f7f236d4bdd"}
+{"@timestamp":"2022-06-24T15:36:05.565+08:00","level":"slow","duration":"660.2ms","content":"[RPC] slowcall - 127.0.0.1:51502 - /template.knowledge/KnowledgeAdd - {\"question\":\"剑鱼标讯有哪些收费项目,有哪些收费项目,是怎么收费得\",\"tenantId\":\"10000\",\"appId\":\"10000\",\"person\":\"wode\"}","trace":"04e2d36a8a258320c3dd9d98ce0d103c","span":"209e53daada61576"}

+ 2040 - 0
rpc/knowledge/logs/stat.log

@@ -2595,3 +2595,2043 @@
 {"@timestamp":"2022-06-23T09:55:34.922+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
 {"@timestamp":"2022-06-23T09:56:34.871+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.9Mi, Sys=14.5Mi, NumGC=7"}
 {"@timestamp":"2022-06-23T09:56:34.918+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T09:58:23.912+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=7.2Mi, Sys=14.3Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T09:58:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-23T09:58:38.034+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 347.0ms, med: 347.3ms, 90th: 347.3ms, 99th: 347.3ms, 99.9th: 347.3ms"}
+{"@timestamp":"2022-06-23T09:59:23.907+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.8Mi, TotalAlloc=7.3Mi, Sys=14.3Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T09:59:24.050+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T09:59:38.032+08:00","level":"stat","content":"(knowledge.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-06-23T10:00:23.912+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.4Mi, Sys=14.3Mi, NumGC=4"}
+{"@timestamp":"2022-06-23T10:00:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:00:38.036+08:00","level":"stat","content":"(knowledge.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-06-23T10:01:23.907+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.5Mi, Sys=14.3Mi, NumGC=4"}
+{"@timestamp":"2022-06-23T10:01:24.062+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:01:38.037+08:00","level":"stat","content":"(knowledge.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-06-23T10:02:23.916+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.6Mi, Sys=14.3Mi, NumGC=5"}
+{"@timestamp":"2022-06-23T10:02:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:02:38.033+08:00","level":"stat","content":"(knowledge.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-06-23T10:03:23.913+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.7Mi, Sys=14.3Mi, NumGC=5"}
+{"@timestamp":"2022-06-23T10:03:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:03:38.030+08:00","level":"stat","content":"(knowledge.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-06-23T10:04:23.918+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.7Mi, Sys=14.3Mi, NumGC=6"}
+{"@timestamp":"2022-06-23T10:04:24.058+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:04:38.038+08:00","level":"stat","content":"(knowledge.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-06-23T10:05:23.918+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.8Mi, Sys=14.3Mi, NumGC=6"}
+{"@timestamp":"2022-06-23T10:05:24.055+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:05:38.040+08:00","level":"stat","content":"(knowledge.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-06-23T10:06:23.913+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.9Mi, Sys=14.3Mi, NumGC=7"}
+{"@timestamp":"2022-06-23T10:06:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:06:38.041+08:00","level":"stat","content":"(knowledge.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-06-23T10:07:23.908+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.0Mi, Sys=14.3Mi, NumGC=7"}
+{"@timestamp":"2022-06-23T10:07:24.058+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:07:38.034+08:00","level":"stat","content":"(knowledge.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-06-23T10:08:23.912+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.0Mi, Sys=14.3Mi, NumGC=8"}
+{"@timestamp":"2022-06-23T10:08:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:08:38.038+08:00","level":"stat","content":"(knowledge.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-06-23T10:09:23.906+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.1Mi, Sys=14.3Mi, NumGC=8"}
+{"@timestamp":"2022-06-23T10:09:24.058+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:09:38.030+08:00","level":"stat","content":"(knowledge.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-06-23T10:10:23.911+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.2Mi, Sys=14.3Mi, NumGC=9"}
+{"@timestamp":"2022-06-23T10:10:24.050+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:10:38.040+08:00","level":"stat","content":"(knowledge.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-06-23T10:11:23.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.3Mi, Sys=14.3Mi, NumGC=9"}
+{"@timestamp":"2022-06-23T10:11:24.054+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:11:38.041+08:00","level":"stat","content":"(knowledge.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-06-23T10:12:23.911+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.4Mi, Sys=14.3Mi, NumGC=10"}
+{"@timestamp":"2022-06-23T10:12:24.064+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:12:38.041+08:00","level":"stat","content":"(knowledge.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-06-23T10:13:23.911+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.5Mi, Sys=14.3Mi, NumGC=10"}
+{"@timestamp":"2022-06-23T10:13:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:13:38.032+08:00","level":"stat","content":"(knowledge.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-06-23T10:14:23.904+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.6Mi, Sys=14.3Mi, NumGC=11"}
+{"@timestamp":"2022-06-23T10:14:24.059+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:14:38.029+08:00","level":"stat","content":"(knowledge.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-06-23T10:15:23.914+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.6Mi, Sys=14.3Mi, NumGC=11"}
+{"@timestamp":"2022-06-23T10:15:24.053+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:15:38.038+08:00","level":"stat","content":"(knowledge.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-06-23T10:16:23.920+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.7Mi, Sys=14.3Mi, NumGC=12"}
+{"@timestamp":"2022-06-23T10:16:24.060+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:16:38.030+08:00","level":"stat","content":"(knowledge.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-06-23T10:17:23.913+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.8Mi, Sys=14.3Mi, NumGC=12"}
+{"@timestamp":"2022-06-23T10:17:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:17:38.029+08:00","level":"stat","content":"(knowledge.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-06-23T10:18:23.912+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.9Mi, Sys=14.3Mi, NumGC=13"}
+{"@timestamp":"2022-06-23T10:18:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:18:38.033+08:00","level":"stat","content":"(knowledge.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-06-23T10:19:23.914+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.9Mi, Sys=14.3Mi, NumGC=13"}
+{"@timestamp":"2022-06-23T10:19:24.055+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:19:38.035+08:00","level":"stat","content":"(knowledge.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-06-23T10:20:23.912+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.0Mi, Sys=14.3Mi, NumGC=14"}
+{"@timestamp":"2022-06-23T10:20:24.053+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:20:38.035+08:00","level":"stat","content":"(knowledge.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-06-23T10:21:23.914+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.1Mi, Sys=14.3Mi, NumGC=14"}
+{"@timestamp":"2022-06-23T10:21:24.055+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:21:38.040+08:00","level":"stat","content":"(knowledge.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-06-23T10:22:23.905+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.2Mi, Sys=14.3Mi, NumGC=15"}
+{"@timestamp":"2022-06-23T10:22:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:22:38.031+08:00","level":"stat","content":"(knowledge.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-06-23T10:23:23.905+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.3Mi, Sys=14.3Mi, NumGC=15"}
+{"@timestamp":"2022-06-23T10:23:24.060+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:23:38.029+08:00","level":"stat","content":"(knowledge.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-06-23T10:24:23.907+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.4Mi, Sys=14.3Mi, NumGC=16"}
+{"@timestamp":"2022-06-23T10:24:24.061+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:24:38.039+08:00","level":"stat","content":"(knowledge.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-06-23T10:25:23.918+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.4Mi, Sys=14.3Mi, NumGC=16"}
+{"@timestamp":"2022-06-23T10:25:24.056+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:25:38.033+08:00","level":"stat","content":"(knowledge.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-06-23T10:26:23.912+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.5Mi, Sys=14.3Mi, NumGC=17"}
+{"@timestamp":"2022-06-23T10:26:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:26:38.033+08:00","level":"stat","content":"(knowledge.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-06-23T10:27:23.910+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.6Mi, Sys=14.3Mi, NumGC=17"}
+{"@timestamp":"2022-06-23T10:27:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:27:38.039+08:00","level":"stat","content":"(knowledge.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-06-23T10:28:23.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.7Mi, Sys=14.3Mi, NumGC=18"}
+{"@timestamp":"2022-06-23T10:28:24.057+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:28:38.040+08:00","level":"stat","content":"(knowledge.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-06-23T10:29:23.914+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.7Mi, Sys=14.3Mi, NumGC=18"}
+{"@timestamp":"2022-06-23T10:29:24.054+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:29:38.039+08:00","level":"stat","content":"(knowledge.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-06-23T10:30:23.906+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.9Mi, Sys=14.3Mi, NumGC=19"}
+{"@timestamp":"2022-06-23T10:30:24.061+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:30:38.041+08:00","level":"stat","content":"(knowledge.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-06-23T10:31:23.908+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.0Mi, Sys=14.3Mi, NumGC=19"}
+{"@timestamp":"2022-06-23T10:31:24.055+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:31:38.034+08:00","level":"stat","content":"(knowledge.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-06-23T10:32:23.916+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.0Mi, Sys=14.3Mi, NumGC=20"}
+{"@timestamp":"2022-06-23T10:32:24.055+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:32:38.031+08:00","level":"stat","content":"(knowledge.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-06-23T10:33:23.919+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.1Mi, Sys=14.3Mi, NumGC=20"}
+{"@timestamp":"2022-06-23T10:33:24.058+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:33:38.040+08:00","level":"stat","content":"(knowledge.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-06-23T10:34:23.918+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.2Mi, Sys=14.3Mi, NumGC=21"}
+{"@timestamp":"2022-06-23T10:34:24.057+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:34:38.037+08:00","level":"stat","content":"(knowledge.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-06-23T10:35:23.911+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.3Mi, Sys=14.3Mi, NumGC=21"}
+{"@timestamp":"2022-06-23T10:35:24.053+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:35:38.029+08:00","level":"stat","content":"(knowledge.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-06-23T10:36:23.913+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.4Mi, Sys=14.3Mi, NumGC=22"}
+{"@timestamp":"2022-06-23T10:36:24.053+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:36:38.034+08:00","level":"stat","content":"(knowledge.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-06-23T10:37:23.919+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.6Mi, Sys=14.3Mi, NumGC=22"}
+{"@timestamp":"2022-06-23T10:37:24.058+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:37:38.036+08:00","level":"stat","content":"(knowledge.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-06-23T10:38:23.918+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.6Mi, Sys=14.3Mi, NumGC=23"}
+{"@timestamp":"2022-06-23T10:38:24.059+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:38:38.032+08:00","level":"stat","content":"(knowledge.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-06-23T10:39:23.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.7Mi, Sys=14.3Mi, NumGC=23"}
+{"@timestamp":"2022-06-23T10:39:24.058+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:39:38.031+08:00","level":"stat","content":"(knowledge.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-06-23T10:40:23.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.8Mi, Sys=14.3Mi, NumGC=24"}
+{"@timestamp":"2022-06-23T10:40:24.056+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:40:38.031+08:00","level":"stat","content":"(knowledge.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-06-23T10:41:23.907+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.9Mi, Sys=14.3Mi, NumGC=24"}
+{"@timestamp":"2022-06-23T10:41:24.062+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:41:38.040+08:00","level":"stat","content":"(knowledge.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-06-23T10:42:23.909+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=11.0Mi, Sys=14.3Mi, NumGC=25"}
+{"@timestamp":"2022-06-23T10:42:24.063+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:42:38.034+08:00","level":"stat","content":"(knowledge.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-06-23T10:43:23.906+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.0Mi, Sys=14.3Mi, NumGC=25"}
+{"@timestamp":"2022-06-23T10:43:24.055+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:43:38.037+08:00","level":"stat","content":"(knowledge.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-06-23T10:44:23.919+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=11.1Mi, Sys=14.3Mi, NumGC=26"}
+{"@timestamp":"2022-06-23T10:44:24.060+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:44:38.031+08:00","level":"stat","content":"(knowledge.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-06-23T10:45:23.919+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.3Mi, Sys=14.3Mi, NumGC=26"}
+{"@timestamp":"2022-06-23T10:45:24.057+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:45:38.033+08:00","level":"stat","content":"(knowledge.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-06-23T10:46:23.914+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=11.3Mi, Sys=14.3Mi, NumGC=27"}
+{"@timestamp":"2022-06-23T10:46:24.054+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:46:38.032+08:00","level":"stat","content":"(knowledge.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-06-23T10:47:23.916+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.4Mi, Sys=14.3Mi, NumGC=27"}
+{"@timestamp":"2022-06-23T10:47:24.055+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:47:38.042+08:00","level":"stat","content":"(knowledge.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-06-23T10:48:23.905+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=11.5Mi, Sys=14.3Mi, NumGC=28"}
+{"@timestamp":"2022-06-23T10:48:24.061+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:48:38.035+08:00","level":"stat","content":"(knowledge.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-06-23T10:49:23.911+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.5Mi, Sys=14.3Mi, NumGC=28"}
+{"@timestamp":"2022-06-23T10:49:24.053+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:49:38.029+08:00","level":"stat","content":"(knowledge.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-06-23T10:50:23.908+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=11.6Mi, Sys=14.3Mi, NumGC=29"}
+{"@timestamp":"2022-06-23T10:50:24.062+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:50:38.031+08:00","level":"stat","content":"(knowledge.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-06-23T10:51:23.907+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.7Mi, Sys=14.3Mi, NumGC=29"}
+{"@timestamp":"2022-06-23T10:51:24.061+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:51:38.034+08:00","level":"stat","content":"(knowledge.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-06-23T10:52:23.914+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=11.8Mi, Sys=14.3Mi, NumGC=30"}
+{"@timestamp":"2022-06-23T10:52:24.055+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:52:38.031+08:00","level":"stat","content":"(knowledge.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-06-23T10:53:23.912+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.9Mi, Sys=14.3Mi, NumGC=30"}
+{"@timestamp":"2022-06-23T10:53:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:53:38.037+08:00","level":"stat","content":"(knowledge.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-06-23T10:54:23.905+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.0Mi, Sys=14.3Mi, NumGC=31"}
+{"@timestamp":"2022-06-23T10:54:24.059+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:54:38.037+08:00","level":"stat","content":"(knowledge.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-06-23T10:55:23.910+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.0Mi, Sys=14.3Mi, NumGC=31"}
+{"@timestamp":"2022-06-23T10:55:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:55:38.032+08:00","level":"stat","content":"(knowledge.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-06-23T10:56:23.915+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.1Mi, Sys=14.3Mi, NumGC=32"}
+{"@timestamp":"2022-06-23T10:56:24.054+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:56:38.036+08:00","level":"stat","content":"(knowledge.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-06-23T10:57:23.918+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.2Mi, Sys=14.3Mi, NumGC=32"}
+{"@timestamp":"2022-06-23T10:57:24.058+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:57:38.038+08:00","level":"stat","content":"(knowledge.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-06-23T10:58:23.913+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.2Mi, Sys=14.3Mi, NumGC=33"}
+{"@timestamp":"2022-06-23T10:58:24.055+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:58:38.035+08:00","level":"stat","content":"(knowledge.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-06-23T10:59:23.906+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.3Mi, Sys=14.3Mi, NumGC=33"}
+{"@timestamp":"2022-06-23T10:59:24.062+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T10:59:38.031+08:00","level":"stat","content":"(knowledge.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-06-23T11:00:23.904+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.4Mi, Sys=14.3Mi, NumGC=34"}
+{"@timestamp":"2022-06-23T11:00:24.060+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:00:38.043+08:00","level":"stat","content":"(knowledge.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-06-23T11:01:23.908+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.5Mi, Sys=14.3Mi, NumGC=34"}
+{"@timestamp":"2022-06-23T11:01:24.062+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:01:38.040+08:00","level":"stat","content":"(knowledge.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-06-23T11:02:23.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.6Mi, Sys=14.3Mi, NumGC=35"}
+{"@timestamp":"2022-06-23T11:02:24.056+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:02:38.032+08:00","level":"stat","content":"(knowledge.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-06-23T11:03:23.905+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.7Mi, Sys=14.3Mi, NumGC=35"}
+{"@timestamp":"2022-06-23T11:03:24.061+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:03:38.030+08:00","level":"stat","content":"(knowledge.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-06-23T11:04:23.918+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.7Mi, Sys=14.3Mi, NumGC=36"}
+{"@timestamp":"2022-06-23T11:04:24.056+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:04:38.041+08:00","level":"stat","content":"(knowledge.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-06-23T11:05:23.911+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.8Mi, Sys=14.3Mi, NumGC=36"}
+{"@timestamp":"2022-06-23T11:05:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:05:38.037+08:00","level":"stat","content":"(knowledge.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-06-23T11:06:23.919+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.9Mi, Sys=14.3Mi, NumGC=37"}
+{"@timestamp":"2022-06-23T11:06:24.058+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:06:38.036+08:00","level":"stat","content":"(knowledge.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-06-23T11:07:23.906+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=13.0Mi, Sys=14.3Mi, NumGC=37"}
+{"@timestamp":"2022-06-23T11:07:24.060+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:07:38.036+08:00","level":"stat","content":"(knowledge.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-06-23T11:08:23.913+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=13.0Mi, Sys=14.3Mi, NumGC=38"}
+{"@timestamp":"2022-06-23T11:08:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:08:38.042+08:00","level":"stat","content":"(knowledge.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-06-23T11:09:23.911+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=13.1Mi, Sys=14.3Mi, NumGC=38"}
+{"@timestamp":"2022-06-23T11:09:24.053+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:09:38.038+08:00","level":"stat","content":"(knowledge.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-06-23T11:10:23.910+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=13.2Mi, Sys=14.3Mi, NumGC=39"}
+{"@timestamp":"2022-06-23T11:10:24.062+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:10:38.031+08:00","level":"stat","content":"(knowledge.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-06-23T11:11:23.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=13.2Mi, Sys=14.3Mi, NumGC=39"}
+{"@timestamp":"2022-06-23T11:11:24.057+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:11:38.033+08:00","level":"stat","content":"(knowledge.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-06-23T11:12:23.918+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=13.3Mi, Sys=14.3Mi, NumGC=40"}
+{"@timestamp":"2022-06-23T11:12:24.057+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:12:38.034+08:00","level":"stat","content":"(knowledge.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-06-23T11:13:23.919+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=13.4Mi, Sys=14.3Mi, NumGC=40"}
+{"@timestamp":"2022-06-23T11:13:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:13:38.040+08:00","level":"stat","content":"(knowledge.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-06-23T11:14:23.913+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=13.5Mi, Sys=14.3Mi, NumGC=41"}
+{"@timestamp":"2022-06-23T11:14:24.053+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:14:38.036+08:00","level":"stat","content":"(knowledge.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-06-23T11:15:23.909+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=13.5Mi, Sys=14.3Mi, NumGC=41"}
+{"@timestamp":"2022-06-23T11:15:24.064+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:15:38.040+08:00","level":"stat","content":"(knowledge.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-06-23T11:16:23.919+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=13.6Mi, Sys=14.3Mi, NumGC=42"}
+{"@timestamp":"2022-06-23T11:16:24.057+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:16:38.030+08:00","level":"stat","content":"(knowledge.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-06-23T11:17:23.914+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=13.7Mi, Sys=14.3Mi, NumGC=42"}
+{"@timestamp":"2022-06-23T11:17:24.054+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:17:38.030+08:00","level":"stat","content":"(knowledge.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-06-23T11:18:23.915+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=13.8Mi, Sys=14.3Mi, NumGC=43"}
+{"@timestamp":"2022-06-23T11:18:24.053+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:18:38.038+08:00","level":"stat","content":"(knowledge.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-06-23T11:19:23.919+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=13.8Mi, Sys=14.3Mi, NumGC=43"}
+{"@timestamp":"2022-06-23T11:19:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:19:38.030+08:00","level":"stat","content":"(knowledge.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-06-23T11:20:23.915+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=13.9Mi, Sys=14.3Mi, NumGC=44"}
+{"@timestamp":"2022-06-23T11:20:24.056+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:20:38.042+08:00","level":"stat","content":"(knowledge.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-06-23T11:21:23.908+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=14.0Mi, Sys=14.3Mi, NumGC=44"}
+{"@timestamp":"2022-06-23T11:21:24.063+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:21:38.029+08:00","level":"stat","content":"(knowledge.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-06-23T11:22:23.915+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=14.1Mi, Sys=14.3Mi, NumGC=45"}
+{"@timestamp":"2022-06-23T11:22:24.055+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:22:38.040+08:00","level":"stat","content":"(knowledge.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-06-23T11:23:23.919+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=14.2Mi, Sys=14.3Mi, NumGC=45"}
+{"@timestamp":"2022-06-23T11:23:24.059+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:23:38.037+08:00","level":"stat","content":"(knowledge.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-06-23T11:24:23.907+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=14.2Mi, Sys=14.3Mi, NumGC=46"}
+{"@timestamp":"2022-06-23T11:24:24.054+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:24:38.041+08:00","level":"stat","content":"(knowledge.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-06-23T11:25:23.907+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=14.3Mi, Sys=14.3Mi, NumGC=46"}
+{"@timestamp":"2022-06-23T11:25:24.060+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:25:38.034+08:00","level":"stat","content":"(knowledge.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-06-23T11:26:23.912+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=14.4Mi, Sys=14.3Mi, NumGC=47"}
+{"@timestamp":"2022-06-23T11:26:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:26:38.038+08:00","level":"stat","content":"(knowledge.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-06-23T11:27:23.914+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=14.5Mi, Sys=14.3Mi, NumGC=47"}
+{"@timestamp":"2022-06-23T11:27:24.055+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:27:38.043+08:00","level":"stat","content":"(knowledge.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-06-23T11:28:23.905+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=14.5Mi, Sys=14.3Mi, NumGC=48"}
+{"@timestamp":"2022-06-23T11:28:24.057+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:28:38.044+08:00","level":"stat","content":"(knowledge.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-06-23T11:29:23.918+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=14.6Mi, Sys=14.3Mi, NumGC=48"}
+{"@timestamp":"2022-06-23T11:29:24.056+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:29:38.032+08:00","level":"stat","content":"(knowledge.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-06-23T11:30:23.904+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=14.7Mi, Sys=14.3Mi, NumGC=49"}
+{"@timestamp":"2022-06-23T11:30:24.059+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:30:38.037+08:00","level":"stat","content":"(knowledge.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-06-23T11:31:23.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=14.8Mi, Sys=14.3Mi, NumGC=49"}
+{"@timestamp":"2022-06-23T11:31:24.056+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:31:38.038+08:00","level":"stat","content":"(knowledge.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-06-23T11:32:23.913+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=14.8Mi, Sys=14.3Mi, NumGC=50"}
+{"@timestamp":"2022-06-23T11:32:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:32:38.036+08:00","level":"stat","content":"(knowledge.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-06-23T11:33:23.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=14.9Mi, Sys=14.3Mi, NumGC=50"}
+{"@timestamp":"2022-06-23T11:33:24.057+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:33:38.029+08:00","level":"stat","content":"(knowledge.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-06-23T11:34:23.909+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=15.0Mi, Sys=14.3Mi, NumGC=51"}
+{"@timestamp":"2022-06-23T11:34:24.063+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:34:38.044+08:00","level":"stat","content":"(knowledge.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-06-23T11:35:23.907+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=15.0Mi, Sys=14.3Mi, NumGC=51"}
+{"@timestamp":"2022-06-23T11:35:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:35:38.031+08:00","level":"stat","content":"(knowledge.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-06-23T11:36:23.918+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=15.1Mi, Sys=14.3Mi, NumGC=52"}
+{"@timestamp":"2022-06-23T11:36:24.056+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:36:38.034+08:00","level":"stat","content":"(knowledge.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-06-23T11:37:23.912+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=15.2Mi, Sys=14.3Mi, NumGC=52"}
+{"@timestamp":"2022-06-23T11:37:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:37:38.033+08:00","level":"stat","content":"(knowledge.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-06-23T11:38:23.914+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=15.3Mi, Sys=14.3Mi, NumGC=53"}
+{"@timestamp":"2022-06-23T11:38:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:38:38.043+08:00","level":"stat","content":"(knowledge.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-06-23T11:39:23.905+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=15.3Mi, Sys=14.3Mi, NumGC=53"}
+{"@timestamp":"2022-06-23T11:39:24.056+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:39:38.034+08:00","level":"stat","content":"(knowledge.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-06-23T11:40:23.908+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=15.4Mi, Sys=14.3Mi, NumGC=54"}
+{"@timestamp":"2022-06-23T11:40:24.055+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:40:38.035+08:00","level":"stat","content":"(knowledge.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-06-23T11:41:23.906+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=15.5Mi, Sys=14.3Mi, NumGC=54"}
+{"@timestamp":"2022-06-23T11:41:24.061+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:41:38.031+08:00","level":"stat","content":"(knowledge.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-06-23T11:42:23.914+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=15.6Mi, Sys=14.3Mi, NumGC=55"}
+{"@timestamp":"2022-06-23T11:42:24.054+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:42:38.044+08:00","level":"stat","content":"(knowledge.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-06-23T11:43:23.909+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=15.7Mi, Sys=14.3Mi, NumGC=55"}
+{"@timestamp":"2022-06-23T11:43:24.064+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:43:38.035+08:00","level":"stat","content":"(knowledge.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-06-23T11:44:23.907+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=15.9Mi, Sys=14.3Mi, NumGC=56"}
+{"@timestamp":"2022-06-23T11:44:24.062+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:44:38.031+08:00","level":"stat","content":"(knowledge.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-06-23T11:45:23.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=16.0Mi, Sys=14.3Mi, NumGC=56"}
+{"@timestamp":"2022-06-23T11:45:24.056+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:45:38.034+08:00","level":"stat","content":"(knowledge.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-06-23T11:46:23.912+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=16.0Mi, Sys=14.3Mi, NumGC=57"}
+{"@timestamp":"2022-06-23T11:46:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:46:38.043+08:00","level":"stat","content":"(knowledge.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-06-23T11:47:23.919+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=16.1Mi, Sys=14.3Mi, NumGC=57"}
+{"@timestamp":"2022-06-23T11:47:24.058+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:47:38.037+08:00","level":"stat","content":"(knowledge.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-06-23T11:48:23.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=16.3Mi, Sys=14.3Mi, NumGC=58"}
+{"@timestamp":"2022-06-23T11:48:24.057+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:48:38.040+08:00","level":"stat","content":"(knowledge.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-06-23T11:49:23.909+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=16.4Mi, Sys=14.3Mi, NumGC=58"}
+{"@timestamp":"2022-06-23T11:49:24.054+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:49:38.043+08:00","level":"stat","content":"(knowledge.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-06-23T11:50:23.907+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=16.4Mi, Sys=14.3Mi, NumGC=59"}
+{"@timestamp":"2022-06-23T11:50:24.063+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:50:38.042+08:00","level":"stat","content":"(knowledge.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-06-23T11:51:23.920+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=16.5Mi, Sys=14.3Mi, NumGC=59"}
+{"@timestamp":"2022-06-23T11:51:24.060+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:51:38.030+08:00","level":"stat","content":"(knowledge.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-06-23T11:52:25.262+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:52:25.262+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=16.6Mi, Sys=14.3Mi, NumGC=60"}
+{"@timestamp":"2022-06-23T11:52:38.035+08:00","level":"stat","content":"(knowledge.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-06-23T11:53:23.919+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=16.7Mi, Sys=14.3Mi, NumGC=60"}
+{"@timestamp":"2022-06-23T11:53:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:53:38.034+08:00","level":"stat","content":"(knowledge.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-06-23T11:54:23.916+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=16.8Mi, Sys=14.3Mi, NumGC=61"}
+{"@timestamp":"2022-06-23T11:54:24.054+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:54:38.033+08:00","level":"stat","content":"(knowledge.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-06-23T11:55:23.910+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=16.9Mi, Sys=14.3Mi, NumGC=61"}
+{"@timestamp":"2022-06-23T11:55:24.064+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:55:38.042+08:00","level":"stat","content":"(knowledge.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-06-23T11:56:23.919+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=17.0Mi, Sys=14.3Mi, NumGC=62"}
+{"@timestamp":"2022-06-23T11:56:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:56:38.035+08:00","level":"stat","content":"(knowledge.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-06-23T11:57:23.906+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=17.1Mi, Sys=14.3Mi, NumGC=62"}
+{"@timestamp":"2022-06-23T11:57:24.060+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:57:38.029+08:00","level":"stat","content":"(knowledge.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-06-23T11:58:23.910+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=17.2Mi, Sys=14.3Mi, NumGC=63"}
+{"@timestamp":"2022-06-23T11:58:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:58:38.031+08:00","level":"stat","content":"(knowledge.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-06-23T11:59:23.913+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=17.2Mi, Sys=14.3Mi, NumGC=63"}
+{"@timestamp":"2022-06-23T11:59:24.053+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T11:59:38.039+08:00","level":"stat","content":"(knowledge.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-06-23T12:00:23.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=17.3Mi, Sys=14.3Mi, NumGC=64"}
+{"@timestamp":"2022-06-23T12:00:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:00:38.029+08:00","level":"stat","content":"(knowledge.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-06-23T12:01:23.905+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=17.4Mi, Sys=14.3Mi, NumGC=64"}
+{"@timestamp":"2022-06-23T12:01:24.059+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:01:38.039+08:00","level":"stat","content":"(knowledge.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-06-23T12:02:23.910+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=17.5Mi, Sys=14.3Mi, NumGC=65"}
+{"@timestamp":"2022-06-23T12:02:24.065+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:02:38.043+08:00","level":"stat","content":"(knowledge.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-06-23T12:03:23.910+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=17.6Mi, Sys=14.3Mi, NumGC=65"}
+{"@timestamp":"2022-06-23T12:03:24.057+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:03:38.032+08:00","level":"stat","content":"(knowledge.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-06-23T12:04:23.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=17.7Mi, Sys=14.3Mi, NumGC=66"}
+{"@timestamp":"2022-06-23T12:04:24.057+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:04:38.040+08:00","level":"stat","content":"(knowledge.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-06-23T12:05:23.908+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=17.7Mi, Sys=14.3Mi, NumGC=66"}
+{"@timestamp":"2022-06-23T12:05:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:05:38.038+08:00","level":"stat","content":"(knowledge.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-06-23T12:06:23.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=17.8Mi, Sys=14.3Mi, NumGC=67"}
+{"@timestamp":"2022-06-23T12:06:24.057+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:06:38.039+08:00","level":"stat","content":"(knowledge.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-06-23T12:07:23.913+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=17.9Mi, Sys=14.3Mi, NumGC=67"}
+{"@timestamp":"2022-06-23T12:07:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:07:38.037+08:00","level":"stat","content":"(knowledge.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-06-23T12:08:23.906+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=18.0Mi, Sys=14.3Mi, NumGC=68"}
+{"@timestamp":"2022-06-23T12:08:24.060+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:08:38.039+08:00","level":"stat","content":"(knowledge.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-06-23T12:09:23.906+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=18.1Mi, Sys=14.3Mi, NumGC=68"}
+{"@timestamp":"2022-06-23T12:09:24.061+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:09:38.034+08:00","level":"stat","content":"(knowledge.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-06-23T12:10:23.909+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=18.2Mi, Sys=14.3Mi, NumGC=69"}
+{"@timestamp":"2022-06-23T12:10:24.064+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:10:38.037+08:00","level":"stat","content":"(knowledge.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-06-23T12:11:23.915+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=18.3Mi, Sys=14.3Mi, NumGC=69"}
+{"@timestamp":"2022-06-23T12:11:24.054+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:11:38.037+08:00","level":"stat","content":"(knowledge.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-06-23T12:12:23.912+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=18.4Mi, Sys=14.3Mi, NumGC=70"}
+{"@timestamp":"2022-06-23T12:12:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:12:38.040+08:00","level":"stat","content":"(knowledge.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-06-23T12:13:23.910+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=18.5Mi, Sys=14.3Mi, NumGC=70"}
+{"@timestamp":"2022-06-23T12:13:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:13:38.042+08:00","level":"stat","content":"(knowledge.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-06-23T12:14:23.918+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=18.5Mi, Sys=14.3Mi, NumGC=71"}
+{"@timestamp":"2022-06-23T12:14:24.057+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:14:38.043+08:00","level":"stat","content":"(knowledge.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-06-23T12:15:23.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=18.6Mi, Sys=14.3Mi, NumGC=71"}
+{"@timestamp":"2022-06-23T12:15:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:15:38.037+08:00","level":"stat","content":"(knowledge.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-06-23T12:16:23.916+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=18.7Mi, Sys=14.3Mi, NumGC=72"}
+{"@timestamp":"2022-06-23T12:16:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:16:38.042+08:00","level":"stat","content":"(knowledge.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-06-23T12:17:23.918+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=18.8Mi, Sys=14.3Mi, NumGC=72"}
+{"@timestamp":"2022-06-23T12:17:24.058+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:17:38.042+08:00","level":"stat","content":"(knowledge.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-06-23T12:18:23.909+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=18.9Mi, Sys=14.3Mi, NumGC=73"}
+{"@timestamp":"2022-06-23T12:18:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:18:38.034+08:00","level":"stat","content":"(knowledge.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-06-23T12:19:23.906+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=19.0Mi, Sys=14.3Mi, NumGC=73"}
+{"@timestamp":"2022-06-23T12:19:24.062+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:19:38.032+08:00","level":"stat","content":"(knowledge.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-06-23T12:20:23.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=19.0Mi, Sys=14.3Mi, NumGC=74"}
+{"@timestamp":"2022-06-23T12:20:24.057+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:20:38.031+08:00","level":"stat","content":"(knowledge.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-06-23T12:21:23.913+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=19.1Mi, Sys=14.3Mi, NumGC=74"}
+{"@timestamp":"2022-06-23T12:21:24.053+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:21:38.041+08:00","level":"stat","content":"(knowledge.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-06-23T12:22:23.905+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=19.2Mi, Sys=14.3Mi, NumGC=75"}
+{"@timestamp":"2022-06-23T12:22:24.060+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T12:22:38.041+08:00","level":"stat","content":"(knowledge.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-06-23T13:08:29.402+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:08:29.509+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=19.3Mi, Sys=14.3Mi, NumGC=75"}
+{"@timestamp":"2022-06-23T13:08:29.515+08:00","level":"stat","content":"(knowledge.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-06-23T13:12:57.713+08:00","level":"stat","content":"(knowledge.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-06-23T13:12:57.714+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:12:57.723+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=19.5Mi, Sys=14.3Mi, NumGC=76"}
+{"@timestamp":"2022-06-23T13:13:23.911+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=19.7Mi, Sys=14.3Mi, NumGC=77"}
+{"@timestamp":"2022-06-23T13:13:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:13:38.035+08:00","level":"stat","content":"(knowledge.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-06-23T13:14:23.914+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=19.8Mi, Sys=14.3Mi, NumGC=77"}
+{"@timestamp":"2022-06-23T13:14:24.055+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:14:38.044+08:00","level":"stat","content":"(knowledge.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-06-23T13:15:23.914+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=19.8Mi, Sys=14.3Mi, NumGC=78"}
+{"@timestamp":"2022-06-23T13:15:24.055+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:15:38.038+08:00","level":"stat","content":"(knowledge.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-06-23T13:16:23.906+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=19.9Mi, Sys=14.3Mi, NumGC=78"}
+{"@timestamp":"2022-06-23T13:16:24.061+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:16:38.033+08:00","level":"stat","content":"(knowledge.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-06-23T13:17:23.915+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=20.0Mi, Sys=14.3Mi, NumGC=79"}
+{"@timestamp":"2022-06-23T13:17:24.056+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:17:38.042+08:00","level":"stat","content":"(knowledge.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-06-23T13:18:23.907+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=20.0Mi, Sys=14.3Mi, NumGC=79"}
+{"@timestamp":"2022-06-23T13:18:24.063+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:18:38.043+08:00","level":"stat","content":"(knowledge.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-06-23T13:19:23.908+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=20.1Mi, Sys=14.3Mi, NumGC=80"}
+{"@timestamp":"2022-06-23T13:19:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:19:38.033+08:00","level":"stat","content":"(knowledge.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-06-23T13:20:23.907+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=20.2Mi, Sys=14.3Mi, NumGC=80"}
+{"@timestamp":"2022-06-23T13:20:24.062+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:20:38.029+08:00","level":"stat","content":"(knowledge.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-06-23T13:21:23.913+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=20.3Mi, Sys=14.3Mi, NumGC=81"}
+{"@timestamp":"2022-06-23T13:21:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:21:38.040+08:00","level":"stat","content":"(knowledge.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-06-23T13:22:23.905+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=20.3Mi, Sys=14.3Mi, NumGC=81"}
+{"@timestamp":"2022-06-23T13:22:24.060+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:22:38.043+08:00","level":"stat","content":"(knowledge.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-06-23T13:23:23.914+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=20.4Mi, Sys=14.3Mi, NumGC=82"}
+{"@timestamp":"2022-06-23T13:23:24.053+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:23:38.033+08:00","level":"stat","content":"(knowledge.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-06-23T13:24:23.908+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=20.5Mi, Sys=14.3Mi, NumGC=82"}
+{"@timestamp":"2022-06-23T13:24:24.063+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:24:38.033+08:00","level":"stat","content":"(knowledge.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-06-23T13:25:23.916+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=20.6Mi, Sys=14.3Mi, NumGC=83"}
+{"@timestamp":"2022-06-23T13:25:24.056+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:25:38.034+08:00","level":"stat","content":"(knowledge.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-06-23T13:26:23.914+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=20.6Mi, Sys=14.3Mi, NumGC=83"}
+{"@timestamp":"2022-06-23T13:26:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:26:38.041+08:00","level":"stat","content":"(knowledge.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-06-23T13:27:23.912+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=20.7Mi, Sys=14.3Mi, NumGC=84"}
+{"@timestamp":"2022-06-23T13:27:24.053+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:27:38.043+08:00","level":"stat","content":"(knowledge.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-06-23T13:28:23.914+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=20.8Mi, Sys=14.3Mi, NumGC=84"}
+{"@timestamp":"2022-06-23T13:28:24.054+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:28:38.032+08:00","level":"stat","content":"(knowledge.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-06-23T13:29:23.920+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=20.9Mi, Sys=14.3Mi, NumGC=85"}
+{"@timestamp":"2022-06-23T13:29:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:29:38.031+08:00","level":"stat","content":"(knowledge.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-06-23T13:30:23.905+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=21.0Mi, Sys=14.3Mi, NumGC=85"}
+{"@timestamp":"2022-06-23T13:30:24.060+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:30:38.030+08:00","level":"stat","content":"(knowledge.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-06-23T13:31:23.905+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=21.1Mi, Sys=14.3Mi, NumGC=86"}
+{"@timestamp":"2022-06-23T13:31:24.060+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:31:38.043+08:00","level":"stat","content":"(knowledge.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-06-23T13:32:23.910+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=21.1Mi, Sys=14.3Mi, NumGC=86"}
+{"@timestamp":"2022-06-23T13:32:24.050+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:32:38.034+08:00","level":"stat","content":"(knowledge.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-06-23T13:33:23.915+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=21.2Mi, Sys=14.3Mi, NumGC=87"}
+{"@timestamp":"2022-06-23T13:33:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:33:38.039+08:00","level":"stat","content":"(knowledge.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-06-23T13:34:23.908+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=21.3Mi, Sys=14.3Mi, NumGC=87"}
+{"@timestamp":"2022-06-23T13:34:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:34:38.038+08:00","level":"stat","content":"(knowledge.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-06-23T13:35:23.909+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=21.4Mi, Sys=14.3Mi, NumGC=88"}
+{"@timestamp":"2022-06-23T13:35:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:35:38.039+08:00","level":"stat","content":"(knowledge.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-06-23T13:36:23.905+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=21.4Mi, Sys=14.3Mi, NumGC=88"}
+{"@timestamp":"2022-06-23T13:36:24.060+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:36:38.033+08:00","level":"stat","content":"(knowledge.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-06-23T13:37:23.918+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=21.5Mi, Sys=14.3Mi, NumGC=89"}
+{"@timestamp":"2022-06-23T13:37:24.056+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:37:38.031+08:00","level":"stat","content":"(knowledge.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-06-23T13:38:23.915+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=21.6Mi, Sys=14.3Mi, NumGC=89"}
+{"@timestamp":"2022-06-23T13:38:24.055+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:38:38.034+08:00","level":"stat","content":"(knowledge.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-06-23T13:39:23.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=21.7Mi, Sys=14.3Mi, NumGC=90"}
+{"@timestamp":"2022-06-23T13:39:24.057+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:39:38.031+08:00","level":"stat","content":"(knowledge.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-06-23T13:40:23.906+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=21.7Mi, Sys=14.3Mi, NumGC=90"}
+{"@timestamp":"2022-06-23T13:40:24.061+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:40:38.035+08:00","level":"stat","content":"(knowledge.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-06-23T13:41:23.905+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=21.8Mi, Sys=14.3Mi, NumGC=91"}
+{"@timestamp":"2022-06-23T13:41:24.058+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:41:38.039+08:00","level":"stat","content":"(knowledge.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-06-23T13:42:23.919+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=21.9Mi, Sys=14.3Mi, NumGC=91"}
+{"@timestamp":"2022-06-23T13:42:24.060+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:42:38.034+08:00","level":"stat","content":"(knowledge.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-06-23T13:43:23.910+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=22.0Mi, Sys=14.3Mi, NumGC=92"}
+{"@timestamp":"2022-06-23T13:43:24.054+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:43:38.041+08:00","level":"stat","content":"(knowledge.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-06-23T13:44:23.909+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=22.1Mi, Sys=14.3Mi, NumGC=92"}
+{"@timestamp":"2022-06-23T13:44:24.063+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:44:38.040+08:00","level":"stat","content":"(knowledge.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-06-23T13:45:23.916+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=22.1Mi, Sys=14.3Mi, NumGC=93"}
+{"@timestamp":"2022-06-23T13:45:24.057+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:45:38.038+08:00","level":"stat","content":"(knowledge.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-06-23T13:46:23.919+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=22.2Mi, Sys=14.3Mi, NumGC=93"}
+{"@timestamp":"2022-06-23T13:46:24.058+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:46:38.042+08:00","level":"stat","content":"(knowledge.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-06-23T13:47:23.919+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=22.3Mi, Sys=14.3Mi, NumGC=94"}
+{"@timestamp":"2022-06-23T13:47:24.059+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:47:38.044+08:00","level":"stat","content":"(knowledge.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-06-23T13:48:23.906+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=22.4Mi, Sys=14.3Mi, NumGC=94"}
+{"@timestamp":"2022-06-23T13:48:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:48:38.037+08:00","level":"stat","content":"(knowledge.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-06-23T13:49:23.910+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=22.4Mi, Sys=14.3Mi, NumGC=95"}
+{"@timestamp":"2022-06-23T13:49:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:49:38.040+08:00","level":"stat","content":"(knowledge.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-06-23T13:50:23.920+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=22.5Mi, Sys=14.3Mi, NumGC=95"}
+{"@timestamp":"2022-06-23T13:50:24.060+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:50:38.043+08:00","level":"stat","content":"(knowledge.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-06-23T13:51:23.910+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=22.6Mi, Sys=14.3Mi, NumGC=96"}
+{"@timestamp":"2022-06-23T13:51:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:51:38.029+08:00","level":"stat","content":"(knowledge.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-06-23T13:52:23.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=22.7Mi, Sys=14.3Mi, NumGC=96"}
+{"@timestamp":"2022-06-23T13:52:24.056+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:52:38.043+08:00","level":"stat","content":"(knowledge.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-06-23T13:53:23.912+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=22.8Mi, Sys=14.3Mi, NumGC=97"}
+{"@timestamp":"2022-06-23T13:53:24.050+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:53:38.031+08:00","level":"stat","content":"(knowledge.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-06-23T13:54:23.912+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=22.8Mi, Sys=14.3Mi, NumGC=97"}
+{"@timestamp":"2022-06-23T13:54:24.053+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:54:38.040+08:00","level":"stat","content":"(knowledge.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-06-23T13:55:23.910+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=22.9Mi, Sys=14.3Mi, NumGC=98"}
+{"@timestamp":"2022-06-23T13:55:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:55:38.039+08:00","level":"stat","content":"(knowledge.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-06-23T13:56:23.909+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=23.0Mi, Sys=14.3Mi, NumGC=98"}
+{"@timestamp":"2022-06-23T13:56:24.063+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:56:38.032+08:00","level":"stat","content":"(knowledge.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-06-23T13:57:23.919+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=23.1Mi, Sys=14.3Mi, NumGC=99"}
+{"@timestamp":"2022-06-23T13:57:24.059+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:57:38.029+08:00","level":"stat","content":"(knowledge.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-06-23T13:58:23.919+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=23.1Mi, Sys=14.3Mi, NumGC=99"}
+{"@timestamp":"2022-06-23T13:58:24.058+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:58:38.038+08:00","level":"stat","content":"(knowledge.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-06-23T13:59:23.905+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=23.2Mi, Sys=14.3Mi, NumGC=100"}
+{"@timestamp":"2022-06-23T13:59:24.061+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T13:59:38.040+08:00","level":"stat","content":"(knowledge.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-06-23T14:00:23.906+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=23.3Mi, Sys=14.3Mi, NumGC=100"}
+{"@timestamp":"2022-06-23T14:00:24.062+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:00:38.034+08:00","level":"stat","content":"(knowledge.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-06-23T14:01:23.915+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=23.4Mi, Sys=14.3Mi, NumGC=101"}
+{"@timestamp":"2022-06-23T14:01:24.053+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:01:38.029+08:00","level":"stat","content":"(knowledge.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-06-23T14:02:23.912+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=23.4Mi, Sys=14.3Mi, NumGC=101"}
+{"@timestamp":"2022-06-23T14:02:24.051+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:02:38.034+08:00","level":"stat","content":"(knowledge.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-06-23T14:03:23.919+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=23.5Mi, Sys=14.3Mi, NumGC=102"}
+{"@timestamp":"2022-06-23T14:03:24.058+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:03:38.039+08:00","level":"stat","content":"(knowledge.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-06-23T14:04:23.913+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=23.6Mi, Sys=14.3Mi, NumGC=102"}
+{"@timestamp":"2022-06-23T14:04:24.052+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:04:38.036+08:00","level":"stat","content":"(knowledge.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-06-23T14:05:57.137+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.9Mi, TotalAlloc=7.2Mi, Sys=18.2Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T14:05:57.158+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-23T14:06:10.974+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 2008.0ms, med: 2008.6ms, 90th: 2008.6ms, 99th: 2008.6ms, 99.9th: 2008.6ms"}
+{"@timestamp":"2022-06-23T14:06:57.136+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.0Mi, TotalAlloc=7.3Mi, Sys=18.2Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T14:06:57.159+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:07:10.975+08:00","level":"stat","content":"(knowledge.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-06-23T14:08:51.625+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=7.3Mi, Sys=18.9Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T14:08:51.655+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-23T14:08:59.821+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 164.0ms, med: 164.6ms, 90th: 164.6ms, 99th: 164.6ms, 99.9th: 164.6ms"}
+{"@timestamp":"2022-06-23T14:10:43.184+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.0Mi, TotalAlloc=7.2Mi, Sys=18.7Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T14:10:43.218+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-23T14:10:51.797+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 78.0ms, med: 78.9ms, 90th: 78.9ms, 99th: 78.9ms, 99.9th: 78.9ms"}
+{"@timestamp":"2022-06-23T14:11:43.180+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.1Mi, TotalAlloc=7.3Mi, Sys=18.7Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T14:11:43.227+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:11:51.794+08:00","level":"stat","content":"(knowledge.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-06-23T14:12:43.183+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.4Mi, Sys=18.9Mi, NumGC=4"}
+{"@timestamp":"2022-06-23T14:12:43.219+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:12:51.795+08:00","level":"stat","content":"(knowledge.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-06-23T14:13:43.181+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.5Mi, Sys=18.9Mi, NumGC=4"}
+{"@timestamp":"2022-06-23T14:13:43.226+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:13:51.796+08:00","level":"stat","content":"(knowledge.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-06-23T14:14:43.179+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.6Mi, Sys=18.9Mi, NumGC=5"}
+{"@timestamp":"2022-06-23T14:14:43.225+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:14:51.791+08:00","level":"stat","content":"(knowledge.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-06-23T14:15:43.178+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.7Mi, Sys=18.9Mi, NumGC=5"}
+{"@timestamp":"2022-06-23T14:15:43.224+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:15:51.785+08:00","level":"stat","content":"(knowledge.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-06-23T14:16:43.187+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.7Mi, Sys=18.9Mi, NumGC=6"}
+{"@timestamp":"2022-06-23T14:16:43.218+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:16:51.790+08:00","level":"stat","content":"(knowledge.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-06-23T14:17:43.175+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.8Mi, Sys=18.9Mi, NumGC=6"}
+{"@timestamp":"2022-06-23T14:17:43.221+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:17:51.790+08:00","level":"stat","content":"(knowledge.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-06-23T14:18:43.174+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.9Mi, Sys=18.9Mi, NumGC=7"}
+{"@timestamp":"2022-06-23T14:18:43.222+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:18:51.791+08:00","level":"stat","content":"(knowledge.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-06-23T14:19:43.177+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.1Mi, Sys=18.9Mi, NumGC=7"}
+{"@timestamp":"2022-06-23T14:19:43.223+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:19:51.792+08:00","level":"stat","content":"(knowledge.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-06-23T14:20:43.178+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.1Mi, Sys=18.9Mi, NumGC=8"}
+{"@timestamp":"2022-06-23T14:20:43.218+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:20:51.789+08:00","level":"stat","content":"(knowledge.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-06-23T14:21:43.177+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.2Mi, Sys=18.9Mi, NumGC=8"}
+{"@timestamp":"2022-06-23T14:21:43.223+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:21:51.782+08:00","level":"stat","content":"(knowledge.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-06-23T14:22:43.176+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.3Mi, Sys=18.9Mi, NumGC=9"}
+{"@timestamp":"2022-06-23T14:22:43.222+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:22:51.796+08:00","level":"stat","content":"(knowledge.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-06-23T14:23:43.175+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.4Mi, Sys=18.9Mi, NumGC=9"}
+{"@timestamp":"2022-06-23T14:23:43.221+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:23:51.792+08:00","level":"stat","content":"(knowledge.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-06-23T14:24:43.187+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.5Mi, Sys=18.9Mi, NumGC=10"}
+{"@timestamp":"2022-06-23T14:24:43.218+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:24:51.785+08:00","level":"stat","content":"(knowledge.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-06-23T14:25:43.186+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.6Mi, Sys=18.9Mi, NumGC=10"}
+{"@timestamp":"2022-06-23T14:25:43.219+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:25:51.789+08:00","level":"stat","content":"(knowledge.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-06-23T14:26:43.185+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.7Mi, Sys=18.9Mi, NumGC=11"}
+{"@timestamp":"2022-06-23T14:26:43.218+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:26:51.791+08:00","level":"stat","content":"(knowledge.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-06-23T14:27:43.188+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.8Mi, Sys=18.9Mi, NumGC=11"}
+{"@timestamp":"2022-06-23T14:27:43.219+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:27:51.791+08:00","level":"stat","content":"(knowledge.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-06-23T14:28:43.187+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.9Mi, Sys=18.9Mi, NumGC=12"}
+{"@timestamp":"2022-06-23T14:28:43.218+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:28:51.792+08:00","level":"stat","content":"(knowledge.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-06-23T14:29:43.181+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.0Mi, Sys=18.9Mi, NumGC=12"}
+{"@timestamp":"2022-06-23T14:29:43.227+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:29:51.788+08:00","level":"stat","content":"(knowledge.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-06-23T14:30:43.188+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.1Mi, Sys=18.9Mi, NumGC=13"}
+{"@timestamp":"2022-06-23T14:30:43.220+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:30:51.784+08:00","level":"stat","content":"(knowledge.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-06-23T14:31:43.176+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.2Mi, Sys=18.9Mi, NumGC=13"}
+{"@timestamp":"2022-06-23T14:31:43.222+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:31:51.783+08:00","level":"stat","content":"(knowledge.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-06-23T14:32:43.175+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.3Mi, Sys=18.9Mi, NumGC=14"}
+{"@timestamp":"2022-06-23T14:32:43.222+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:32:51.791+08:00","level":"stat","content":"(knowledge.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-06-23T14:33:43.181+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.4Mi, Sys=18.9Mi, NumGC=14"}
+{"@timestamp":"2022-06-23T14:33:43.218+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:33:51.783+08:00","level":"stat","content":"(knowledge.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-06-23T14:34:43.187+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.5Mi, Sys=18.9Mi, NumGC=15"}
+{"@timestamp":"2022-06-23T14:34:43.218+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:34:51.795+08:00","level":"stat","content":"(knowledge.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-06-23T14:35:43.186+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.6Mi, Sys=18.9Mi, NumGC=15"}
+{"@timestamp":"2022-06-23T14:35:43.227+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:35:51.782+08:00","level":"stat","content":"(knowledge.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-06-23T14:36:43.182+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.7Mi, Sys=18.9Mi, NumGC=16"}
+{"@timestamp":"2022-06-23T14:36:43.218+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:36:51.796+08:00","level":"stat","content":"(knowledge.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-06-23T14:37:43.182+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.8Mi, Sys=18.9Mi, NumGC=16"}
+{"@timestamp":"2022-06-23T14:37:43.219+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:37:51.788+08:00","level":"stat","content":"(knowledge.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-06-23T14:38:43.181+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.9Mi, Sys=18.9Mi, NumGC=17"}
+{"@timestamp":"2022-06-23T14:38:43.227+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:38:51.792+08:00","level":"stat","content":"(knowledge.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-06-23T14:39:43.174+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.0Mi, Sys=18.9Mi, NumGC=17"}
+{"@timestamp":"2022-06-23T14:39:43.221+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:39:51.785+08:00","level":"stat","content":"(knowledge.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-06-23T14:40:43.180+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.1Mi, Sys=18.9Mi, NumGC=18"}
+{"@timestamp":"2022-06-23T14:40:43.226+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:40:51.784+08:00","level":"stat","content":"(knowledge.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-06-23T14:41:43.180+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.1Mi, Sys=18.9Mi, NumGC=18"}
+{"@timestamp":"2022-06-23T14:41:43.226+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:41:51.789+08:00","level":"stat","content":"(knowledge.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-06-23T14:42:43.181+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.2Mi, Sys=18.9Mi, NumGC=19"}
+{"@timestamp":"2022-06-23T14:42:43.219+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:42:51.787+08:00","level":"stat","content":"(knowledge.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-06-23T14:43:43.176+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.3Mi, Sys=18.9Mi, NumGC=19"}
+{"@timestamp":"2022-06-23T14:43:43.223+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:43:51.787+08:00","level":"stat","content":"(knowledge.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-06-23T14:44:43.175+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.4Mi, Sys=18.9Mi, NumGC=20"}
+{"@timestamp":"2022-06-23T14:44:43.222+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:44:51.787+08:00","level":"stat","content":"(knowledge.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-06-23T14:45:43.183+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.5Mi, Sys=18.9Mi, NumGC=20"}
+{"@timestamp":"2022-06-23T14:45:43.218+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:45:51.787+08:00","level":"stat","content":"(knowledge.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-06-23T14:46:43.177+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.6Mi, Sys=18.9Mi, NumGC=21"}
+{"@timestamp":"2022-06-23T14:46:43.224+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:46:51.792+08:00","level":"stat","content":"(knowledge.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-06-23T14:47:43.179+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.7Mi, Sys=18.9Mi, NumGC=21"}
+{"@timestamp":"2022-06-23T14:47:43.225+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:47:51.796+08:00","level":"stat","content":"(knowledge.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-06-23T14:49:45.430+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.9Mi, TotalAlloc=7.2Mi, Sys=18.2Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T14:49:45.446+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-23T14:50:00.192+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 401.0ms, med: 401.5ms, 90th: 401.5ms, 99th: 401.5ms, 99.9th: 401.5ms"}
+{"@timestamp":"2022-06-23T14:50:45.425+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.1Mi, TotalAlloc=7.3Mi, Sys=18.2Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T14:50:45.447+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:51:00.196+08:00","level":"stat","content":"(knowledge.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-06-23T14:51:45.424+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.4Mi, Sys=18.2Mi, NumGC=4"}
+{"@timestamp":"2022-06-23T14:51:45.455+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:52:55.545+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=7.1Mi, Sys=18.2Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T14:52:55.575+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-23T14:53:04.180+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 125.0ms, med: 125.1ms, 90th: 125.1ms, 99th: 125.1ms, 99.9th: 125.1ms"}
+{"@timestamp":"2022-06-23T14:53:55.546+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.8Mi, TotalAlloc=7.3Mi, Sys=18.2Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T14:53:55.578+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:54:04.177+08:00","level":"stat","content":"(knowledge.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-06-23T14:54:55.548+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.4Mi, Sys=18.2Mi, NumGC=4"}
+{"@timestamp":"2022-06-23T14:54:55.571+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:55:04.171+08:00","level":"stat","content":"(knowledge.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-06-23T14:56:46.508+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=7.2Mi, Sys=14.0Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T14:56:46.632+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-23T14:56:55.189+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 514.0ms, med: 514.9ms, 90th: 514.9ms, 99th: 514.9ms, 99.9th: 514.9ms"}
+{"@timestamp":"2022-06-23T14:57:46.507+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=7.3Mi, Sys=14.0Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T14:57:46.632+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T14:57:55.186+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 41.0ms, med: 41.9ms, 90th: 41.9ms, 99th: 41.9ms, 99.9th: 41.9ms"}
+{"@timestamp":"2022-06-23T14:58:46.515+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.7Mi, Sys=14.0Mi, NumGC=4"}
+{"@timestamp":"2022-06-23T14:58:46.639+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-23T14:58:55.185+08:00","level":"stat","content":"(knowledge.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-06-23T15:00:43.622+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=7.2Mi, Sys=18.4Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T15:00:43.652+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-23T15:00:53.442+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 8.0ms, med: 8.9ms, 90th: 8.9ms, 99th: 8.9ms, 99.9th: 8.9ms"}
+{"@timestamp":"2022-06-23T15:01:43.625+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.8Mi, TotalAlloc=7.3Mi, Sys=18.4Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T15:01:43.656+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:01:53.444+08:00","level":"stat","content":"(knowledge.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-06-23T15:02:43.615+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.4Mi, Sys=18.4Mi, NumGC=4"}
+{"@timestamp":"2022-06-23T15:02:43.657+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:02:53.444+08:00","level":"stat","content":"(knowledge.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-06-23T15:03:43.614+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.5Mi, Sys=18.4Mi, NumGC=4"}
+{"@timestamp":"2022-06-23T15:03:43.661+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:03:53.448+08:00","level":"stat","content":"(knowledge.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-06-23T15:04:43.621+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.6Mi, Sys=18.4Mi, NumGC=5"}
+{"@timestamp":"2022-06-23T15:04:43.650+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:04:53.452+08:00","level":"stat","content":"(knowledge.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-06-23T15:05:43.617+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.7Mi, Sys=18.4Mi, NumGC=5"}
+{"@timestamp":"2022-06-23T15:05:43.655+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:05:53.455+08:00","level":"stat","content":"(knowledge.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-06-23T15:06:43.613+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.8Mi, Sys=18.4Mi, NumGC=6"}
+{"@timestamp":"2022-06-23T15:06:43.650+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:06:53.449+08:00","level":"stat","content":"(knowledge.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-06-23T15:07:43.612+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.9Mi, Sys=18.4Mi, NumGC=6"}
+{"@timestamp":"2022-06-23T15:07:43.650+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:07:53.453+08:00","level":"stat","content":"(knowledge.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-06-23T15:08:43.618+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.0Mi, Sys=18.4Mi, NumGC=7"}
+{"@timestamp":"2022-06-23T15:08:43.653+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:08:53.450+08:00","level":"stat","content":"(knowledge.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-06-23T15:09:43.620+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.1Mi, Sys=18.4Mi, NumGC=7"}
+{"@timestamp":"2022-06-23T15:09:43.651+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:09:53.451+08:00","level":"stat","content":"(knowledge.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-06-23T15:10:43.619+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.2Mi, Sys=18.4Mi, NumGC=8"}
+{"@timestamp":"2022-06-23T15:10:43.650+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:10:53.440+08:00","level":"stat","content":"(knowledge.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-06-23T15:11:43.613+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.3Mi, Sys=18.4Mi, NumGC=8"}
+{"@timestamp":"2022-06-23T15:11:43.651+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:11:53.450+08:00","level":"stat","content":"(knowledge.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-06-23T15:12:43.623+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.4Mi, Sys=18.4Mi, NumGC=9"}
+{"@timestamp":"2022-06-23T15:12:43.651+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:12:53.441+08:00","level":"stat","content":"(knowledge.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-06-23T15:13:43.616+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.5Mi, Sys=18.4Mi, NumGC=9"}
+{"@timestamp":"2022-06-23T15:13:43.662+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:13:53.445+08:00","level":"stat","content":"(knowledge.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-06-23T15:14:43.624+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.6Mi, Sys=18.4Mi, NumGC=10"}
+{"@timestamp":"2022-06-23T15:14:43.655+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:14:53.446+08:00","level":"stat","content":"(knowledge.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-06-23T15:15:43.617+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.7Mi, Sys=18.4Mi, NumGC=10"}
+{"@timestamp":"2022-06-23T15:15:43.649+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:15:53.439+08:00","level":"stat","content":"(knowledge.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-06-23T15:16:43.623+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.8Mi, Sys=18.4Mi, NumGC=11"}
+{"@timestamp":"2022-06-23T15:16:43.654+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:16:53.441+08:00","level":"stat","content":"(knowledge.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-06-23T15:17:43.624+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.9Mi, Sys=18.4Mi, NumGC=11"}
+{"@timestamp":"2022-06-23T15:17:43.654+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:17:53.454+08:00","level":"stat","content":"(knowledge.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-06-23T15:18:43.615+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.0Mi, Sys=18.4Mi, NumGC=12"}
+{"@timestamp":"2022-06-23T15:18:43.650+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:18:53.454+08:00","level":"stat","content":"(knowledge.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-06-23T15:19:43.618+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.1Mi, Sys=18.4Mi, NumGC=12"}
+{"@timestamp":"2022-06-23T15:19:43.649+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:19:53.448+08:00","level":"stat","content":"(knowledge.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-06-23T15:20:43.611+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.2Mi, Sys=18.4Mi, NumGC=13"}
+{"@timestamp":"2022-06-23T15:20:43.658+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:20:53.450+08:00","level":"stat","content":"(knowledge.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-06-23T15:21:43.615+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.3Mi, Sys=18.4Mi, NumGC=13"}
+{"@timestamp":"2022-06-23T15:21:43.650+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:21:53.439+08:00","level":"stat","content":"(knowledge.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-06-23T15:23:20.035+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=7.2Mi, Sys=18.7Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T15:23:20.066+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-23T15:23:30.695+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 10.0ms, med: 11.0ms, 90th: 11.0ms, 99th: 11.0ms, 99.9th: 11.0ms"}
+{"@timestamp":"2022-06-23T15:24:20.042+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.8Mi, TotalAlloc=7.3Mi, Sys=18.7Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T15:24:20.074+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:26:26.492+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.0Mi, TotalAlloc=7.2Mi, Sys=14.0Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T15:26:26.568+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-23T15:26:36.327+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 10.0ms, med: 10.8ms, 90th: 10.8ms, 99th: 10.8ms, 99.9th: 10.8ms"}
+{"@timestamp":"2022-06-23T15:27:26.502+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.1Mi, TotalAlloc=7.4Mi, Sys=14.0Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T15:27:26.565+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:27:36.331+08:00","level":"stat","content":"(knowledge.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-06-23T15:28:26.497+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.5Mi, Sys=14.0Mi, NumGC=4"}
+{"@timestamp":"2022-06-23T15:28:26.570+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:28:36.325+08:00","level":"stat","content":"(knowledge.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-06-23T15:29:26.491+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.6Mi, Sys=14.0Mi, NumGC=4"}
+{"@timestamp":"2022-06-23T15:29:26.567+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:29:36.325+08:00","level":"stat","content":"(knowledge.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-06-23T15:30:26.497+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.7Mi, Sys=14.0Mi, NumGC=5"}
+{"@timestamp":"2022-06-23T15:30:26.575+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:30:36.326+08:00","level":"stat","content":"(knowledge.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-06-23T15:31:26.497+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.8Mi, Sys=14.0Mi, NumGC=5"}
+{"@timestamp":"2022-06-23T15:31:26.573+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:31:36.334+08:00","level":"stat","content":"(knowledge.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-06-23T15:32:26.496+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.9Mi, Sys=14.0Mi, NumGC=6"}
+{"@timestamp":"2022-06-23T15:32:26.572+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:32:36.333+08:00","level":"stat","content":"(knowledge.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-06-23T15:33:26.503+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.0Mi, Sys=14.0Mi, NumGC=6"}
+{"@timestamp":"2022-06-23T15:33:26.566+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:33:36.323+08:00","level":"stat","content":"(knowledge.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-06-23T15:34:26.498+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.1Mi, Sys=14.0Mi, NumGC=7"}
+{"@timestamp":"2022-06-23T15:34:26.568+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:34:36.322+08:00","level":"stat","content":"(knowledge.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-06-23T15:35:26.503+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.2Mi, Sys=14.0Mi, NumGC=7"}
+{"@timestamp":"2022-06-23T15:35:26.565+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:35:36.326+08:00","level":"stat","content":"(knowledge.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-06-23T15:36:26.501+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.3Mi, Sys=14.0Mi, NumGC=8"}
+{"@timestamp":"2022-06-23T15:36:26.566+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:36:36.329+08:00","level":"stat","content":"(knowledge.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-06-23T15:37:26.494+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.4Mi, Sys=14.0Mi, NumGC=8"}
+{"@timestamp":"2022-06-23T15:37:26.572+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:37:36.328+08:00","level":"stat","content":"(knowledge.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-06-23T15:38:26.492+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.5Mi, Sys=14.0Mi, NumGC=9"}
+{"@timestamp":"2022-06-23T15:38:26.569+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:38:36.326+08:00","level":"stat","content":"(knowledge.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-06-23T15:39:26.491+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.6Mi, Sys=14.0Mi, NumGC=9"}
+{"@timestamp":"2022-06-23T15:39:26.569+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:39:36.324+08:00","level":"stat","content":"(knowledge.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-06-23T15:40:26.495+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.7Mi, Sys=14.0Mi, NumGC=10"}
+{"@timestamp":"2022-06-23T15:40:26.572+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:40:36.326+08:00","level":"stat","content":"(knowledge.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-06-23T15:41:26.504+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.8Mi, Sys=14.0Mi, NumGC=10"}
+{"@timestamp":"2022-06-23T15:41:26.568+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:41:36.327+08:00","level":"stat","content":"(knowledge.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-06-23T15:42:26.493+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.9Mi, Sys=14.0Mi, NumGC=11"}
+{"@timestamp":"2022-06-23T15:42:26.570+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:42:36.329+08:00","level":"stat","content":"(knowledge.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-06-23T15:43:26.494+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.0Mi, Sys=14.0Mi, NumGC=11"}
+{"@timestamp":"2022-06-23T15:43:26.571+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:43:36.325+08:00","level":"stat","content":"(knowledge.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-06-23T15:44:26.497+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.1Mi, Sys=14.0Mi, NumGC=12"}
+{"@timestamp":"2022-06-23T15:44:26.566+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:44:36.329+08:00","level":"stat","content":"(knowledge.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-06-23T15:45:26.492+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.2Mi, Sys=14.0Mi, NumGC=12"}
+{"@timestamp":"2022-06-23T15:45:26.569+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:45:36.331+08:00","level":"stat","content":"(knowledge.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-06-23T15:46:26.490+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.3Mi, Sys=14.0Mi, NumGC=13"}
+{"@timestamp":"2022-06-23T15:46:26.568+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:46:36.335+08:00","level":"stat","content":"(knowledge.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-06-23T15:47:56.339+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.2Mi, TotalAlloc=6.8Mi, Sys=18.2Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T15:47:56.370+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T15:48:58.392+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.1Mi, Sys=18.4Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T15:48:58.389+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-23T16:13:36.376+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.8Mi, TotalAlloc=7.2Mi, Sys=18.7Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T16:13:36.397+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-23T16:13:48.278+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 11.0ms, med: 11.5ms, 90th: 11.5ms, 99th: 11.5ms, 99.9th: 11.5ms"}
+{"@timestamp":"2022-06-23T16:14:36.369+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.9Mi, TotalAlloc=7.3Mi, Sys=18.7Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T16:14:36.401+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:14:48.289+08:00","level":"stat","content":"(knowledge.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-06-23T16:15:36.365+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.4Mi, Sys=18.7Mi, NumGC=4"}
+{"@timestamp":"2022-06-23T16:15:36.395+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:15:48.279+08:00","level":"stat","content":"(knowledge.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-06-23T16:17:07.059+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.9Mi, TotalAlloc=7.1Mi, Sys=18.9Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T16:17:07.153+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-23T16:17:16.283+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 146.0ms, med: 146.2ms, 90th: 146.2ms, 99th: 146.2ms, 99.9th: 146.2ms"}
+{"@timestamp":"2022-06-23T16:18:38.403+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=7.2Mi, Sys=13.8Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T16:18:38.434+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-23T16:18:45.874+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 10.0ms, med: 10.6ms, 90th: 10.6ms, 99th: 10.6ms, 99.9th: 10.6ms"}
+{"@timestamp":"2022-06-23T16:19:38.401+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.8Mi, TotalAlloc=7.3Mi, Sys=14.0Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T16:19:38.435+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:19:45.868+08:00","level":"stat","content":"(knowledge.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-06-23T16:20:38.406+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.4Mi, Sys=14.0Mi, NumGC=4"}
+{"@timestamp":"2022-06-23T16:20:38.437+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:20:45.869+08:00","level":"stat","content":"(knowledge.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-06-23T16:21:38.405+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.5Mi, Sys=14.0Mi, NumGC=4"}
+{"@timestamp":"2022-06-23T16:21:38.436+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:21:45.871+08:00","level":"stat","content":"(knowledge.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-06-23T16:22:38.411+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.7Mi, Sys=14.0Mi, NumGC=5"}
+{"@timestamp":"2022-06-23T16:22:38.442+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:22:45.873+08:00","level":"stat","content":"(knowledge.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-06-23T16:23:38.413+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.7Mi, Sys=14.0Mi, NumGC=5"}
+{"@timestamp":"2022-06-23T16:23:38.433+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:23:45.876+08:00","level":"stat","content":"(knowledge.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-06-23T16:24:38.400+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.8Mi, Sys=14.0Mi, NumGC=6"}
+{"@timestamp":"2022-06-23T16:24:38.440+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:24:45.873+08:00","level":"stat","content":"(knowledge.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-06-23T16:25:38.401+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.9Mi, Sys=14.0Mi, NumGC=6"}
+{"@timestamp":"2022-06-23T16:25:38.433+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:25:45.876+08:00","level":"stat","content":"(knowledge.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-06-23T16:26:38.401+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.0Mi, Sys=14.0Mi, NumGC=7"}
+{"@timestamp":"2022-06-23T16:26:38.434+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:26:45.877+08:00","level":"stat","content":"(knowledge.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-06-23T16:27:38.411+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.1Mi, Sys=14.0Mi, NumGC=7"}
+{"@timestamp":"2022-06-23T16:27:38.442+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:27:45.879+08:00","level":"stat","content":"(knowledge.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-06-23T16:28:38.402+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.2Mi, Sys=14.0Mi, NumGC=8"}
+{"@timestamp":"2022-06-23T16:28:38.433+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:28:45.878+08:00","level":"stat","content":"(knowledge.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-06-23T16:29:38.401+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.3Mi, Sys=14.0Mi, NumGC=8"}
+{"@timestamp":"2022-06-23T16:29:38.434+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:29:45.871+08:00","level":"stat","content":"(knowledge.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-06-23T16:30:38.409+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.4Mi, Sys=14.0Mi, NumGC=9"}
+{"@timestamp":"2022-06-23T16:30:38.441+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:30:45.880+08:00","level":"stat","content":"(knowledge.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-06-23T16:31:38.398+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.5Mi, Sys=14.0Mi, NumGC=9"}
+{"@timestamp":"2022-06-23T16:31:38.433+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:31:45.867+08:00","level":"stat","content":"(knowledge.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-06-23T16:32:38.409+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.6Mi, Sys=14.0Mi, NumGC=10"}
+{"@timestamp":"2022-06-23T16:32:38.439+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:32:45.874+08:00","level":"stat","content":"(knowledge.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-06-23T16:33:38.399+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.7Mi, Sys=14.0Mi, NumGC=10"}
+{"@timestamp":"2022-06-23T16:33:38.435+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:33:45.870+08:00","level":"stat","content":"(knowledge.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-06-23T16:34:38.413+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.8Mi, Sys=14.0Mi, NumGC=11"}
+{"@timestamp":"2022-06-23T16:34:38.433+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:34:45.878+08:00","level":"stat","content":"(knowledge.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-06-23T16:35:38.409+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.9Mi, Sys=14.0Mi, NumGC=11"}
+{"@timestamp":"2022-06-23T16:35:38.441+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:35:45.871+08:00","level":"stat","content":"(knowledge.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-06-23T16:36:38.408+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.0Mi, Sys=14.0Mi, NumGC=12"}
+{"@timestamp":"2022-06-23T16:36:38.439+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:36:45.879+08:00","level":"stat","content":"(knowledge.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-06-23T16:37:38.406+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.1Mi, Sys=14.0Mi, NumGC=12"}
+{"@timestamp":"2022-06-23T16:37:38.436+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:37:45.873+08:00","level":"stat","content":"(knowledge.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-06-23T16:38:38.410+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.2Mi, Sys=14.0Mi, NumGC=13"}
+{"@timestamp":"2022-06-23T16:38:38.440+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:38:45.875+08:00","level":"stat","content":"(knowledge.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-06-23T16:39:38.397+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.3Mi, Sys=14.0Mi, NumGC=13"}
+{"@timestamp":"2022-06-23T16:39:38.444+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:39:45.876+08:00","level":"stat","content":"(knowledge.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-06-23T16:40:38.400+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.4Mi, Sys=14.0Mi, NumGC=14"}
+{"@timestamp":"2022-06-23T16:40:38.445+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:40:45.866+08:00","level":"stat","content":"(knowledge.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-06-23T16:42:09.356+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.2Mi, Sys=14.0Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T16:42:09.379+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-23T16:42:21.485+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 130.0ms, med: 130.6ms, 90th: 130.6ms, 99th: 130.6ms, 99.9th: 130.6ms"}
+{"@timestamp":"2022-06-23T16:43:09.350+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=7.3Mi, Sys=14.0Mi, NumGC=3"}
+{"@timestamp":"2022-06-23T16:43:09.381+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:43:21.486+08:00","level":"stat","content":"(knowledge.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-06-23T16:44:09.356+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.4Mi, Sys=14.0Mi, NumGC=4"}
+{"@timestamp":"2022-06-23T16:44:09.379+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:44:21.493+08:00","level":"stat","content":"(knowledge.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-06-23T16:45:09.361+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.5Mi, Sys=14.0Mi, NumGC=4"}
+{"@timestamp":"2022-06-23T16:45:09.378+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:45:21.487+08:00","level":"stat","content":"(knowledge.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-06-23T16:46:09.360+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.6Mi, Sys=14.0Mi, NumGC=5"}
+{"@timestamp":"2022-06-23T16:46:09.382+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:46:21.485+08:00","level":"stat","content":"(knowledge.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-06-23T16:47:09.352+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.7Mi, Sys=14.0Mi, NumGC=5"}
+{"@timestamp":"2022-06-23T16:47:09.383+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:47:21.487+08:00","level":"stat","content":"(knowledge.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-06-23T16:48:09.348+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.8Mi, Sys=14.0Mi, NumGC=6"}
+{"@timestamp":"2022-06-23T16:48:09.379+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:48:21.490+08:00","level":"stat","content":"(knowledge.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-06-23T16:49:09.352+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.9Mi, Sys=14.0Mi, NumGC=6"}
+{"@timestamp":"2022-06-23T16:49:09.383+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:49:21.491+08:00","level":"stat","content":"(knowledge.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-06-23T16:50:09.355+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.0Mi, Sys=14.0Mi, NumGC=7"}
+{"@timestamp":"2022-06-23T16:50:09.386+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:50:21.496+08:00","level":"stat","content":"(knowledge.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-06-23T16:51:09.350+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.1Mi, Sys=14.0Mi, NumGC=7"}
+{"@timestamp":"2022-06-23T16:51:09.381+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:51:21.489+08:00","level":"stat","content":"(knowledge.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-06-23T16:52:09.347+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.2Mi, Sys=14.0Mi, NumGC=8"}
+{"@timestamp":"2022-06-23T16:52:09.377+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:52:21.494+08:00","level":"stat","content":"(knowledge.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-06-23T16:53:09.354+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.3Mi, Sys=14.0Mi, NumGC=8"}
+{"@timestamp":"2022-06-23T16:53:09.385+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:53:21.489+08:00","level":"stat","content":"(knowledge.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-06-23T16:54:09.347+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.4Mi, Sys=14.0Mi, NumGC=9"}
+{"@timestamp":"2022-06-23T16:54:09.378+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:54:21.489+08:00","level":"stat","content":"(knowledge.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-06-23T16:55:09.353+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.6Mi, Sys=14.0Mi, NumGC=9"}
+{"@timestamp":"2022-06-23T16:55:09.383+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:55:21.483+08:00","level":"stat","content":"(knowledge.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-06-23T16:56:09.354+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.7Mi, Sys=14.0Mi, NumGC=10"}
+{"@timestamp":"2022-06-23T16:56:09.384+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:56:21.490+08:00","level":"stat","content":"(knowledge.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-06-23T16:57:09.357+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.8Mi, Sys=14.0Mi, NumGC=10"}
+{"@timestamp":"2022-06-23T16:57:09.377+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:57:21.483+08:00","level":"stat","content":"(knowledge.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-06-23T16:58:09.349+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.9Mi, Sys=14.0Mi, NumGC=11"}
+{"@timestamp":"2022-06-23T16:58:09.380+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:58:21.487+08:00","level":"stat","content":"(knowledge.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-06-23T16:59:09.349+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.0Mi, Sys=14.0Mi, NumGC=11"}
+{"@timestamp":"2022-06-23T16:59:09.380+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T16:59:21.495+08:00","level":"stat","content":"(knowledge.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-06-23T17:00:09.348+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.1Mi, Sys=14.0Mi, NumGC=12"}
+{"@timestamp":"2022-06-23T17:00:09.380+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:00:21.482+08:00","level":"stat","content":"(knowledge.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-06-23T17:01:09.351+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.2Mi, Sys=14.0Mi, NumGC=12"}
+{"@timestamp":"2022-06-23T17:01:09.382+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:01:21.484+08:00","level":"stat","content":"(knowledge.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-06-23T17:02:09.357+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.3Mi, Sys=14.0Mi, NumGC=13"}
+{"@timestamp":"2022-06-23T17:02:09.377+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:02:21.483+08:00","level":"stat","content":"(knowledge.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-06-23T17:03:09.361+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.4Mi, Sys=14.0Mi, NumGC=13"}
+{"@timestamp":"2022-06-23T17:03:09.379+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:03:21.494+08:00","level":"stat","content":"(knowledge.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-06-23T17:04:09.356+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.5Mi, Sys=14.0Mi, NumGC=14"}
+{"@timestamp":"2022-06-23T17:04:09.379+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:04:21.483+08:00","level":"stat","content":"(knowledge.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-06-23T17:05:09.354+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.5Mi, Sys=14.0Mi, NumGC=14"}
+{"@timestamp":"2022-06-23T17:05:09.385+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:05:21.491+08:00","level":"stat","content":"(knowledge.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-06-23T17:06:09.354+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.6Mi, Sys=14.0Mi, NumGC=15"}
+{"@timestamp":"2022-06-23T17:06:09.384+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:06:21.488+08:00","level":"stat","content":"(knowledge.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-06-23T17:07:09.357+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.7Mi, Sys=14.0Mi, NumGC=15"}
+{"@timestamp":"2022-06-23T17:07:09.377+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:07:21.484+08:00","level":"stat","content":"(knowledge.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-06-23T17:08:09.361+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.8Mi, Sys=14.0Mi, NumGC=16"}
+{"@timestamp":"2022-06-23T17:08:09.378+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:08:21.493+08:00","level":"stat","content":"(knowledge.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-06-23T17:09:09.358+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.9Mi, Sys=14.0Mi, NumGC=16"}
+{"@timestamp":"2022-06-23T17:09:09.377+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:09:21.487+08:00","level":"stat","content":"(knowledge.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-06-23T17:10:09.351+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.0Mi, Sys=14.0Mi, NumGC=17"}
+{"@timestamp":"2022-06-23T17:10:09.382+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:10:21.496+08:00","level":"stat","content":"(knowledge.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-06-23T17:11:09.362+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.1Mi, Sys=14.0Mi, NumGC=17"}
+{"@timestamp":"2022-06-23T17:11:09.377+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:11:21.483+08:00","level":"stat","content":"(knowledge.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-06-23T17:12:09.353+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.2Mi, Sys=14.0Mi, NumGC=18"}
+{"@timestamp":"2022-06-23T17:12:09.385+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:12:21.493+08:00","level":"stat","content":"(knowledge.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-06-23T17:13:09.355+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.3Mi, Sys=14.0Mi, NumGC=18"}
+{"@timestamp":"2022-06-23T17:13:09.386+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:13:21.492+08:00","level":"stat","content":"(knowledge.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-06-23T17:14:09.354+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.4Mi, Sys=14.0Mi, NumGC=19"}
+{"@timestamp":"2022-06-23T17:14:09.385+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:14:21.484+08:00","level":"stat","content":"(knowledge.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-06-23T17:15:09.355+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.5Mi, Sys=14.0Mi, NumGC=19"}
+{"@timestamp":"2022-06-23T17:15:09.386+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:15:21.489+08:00","level":"stat","content":"(knowledge.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-06-23T17:16:09.349+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.6Mi, Sys=14.0Mi, NumGC=20"}
+{"@timestamp":"2022-06-23T17:16:09.380+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:16:21.485+08:00","level":"stat","content":"(knowledge.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-06-23T17:17:09.352+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.8Mi, Sys=14.0Mi, NumGC=20"}
+{"@timestamp":"2022-06-23T17:17:09.383+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:17:21.488+08:00","level":"stat","content":"(knowledge.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-06-23T17:18:09.354+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.9Mi, Sys=14.0Mi, NumGC=21"}
+{"@timestamp":"2022-06-23T17:18:09.386+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:18:21.495+08:00","level":"stat","content":"(knowledge.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-06-23T17:19:09.349+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.0Mi, Sys=14.0Mi, NumGC=21"}
+{"@timestamp":"2022-06-23T17:19:09.380+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:19:21.491+08:00","level":"stat","content":"(knowledge.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-06-23T17:20:09.353+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=11.1Mi, Sys=14.0Mi, NumGC=22"}
+{"@timestamp":"2022-06-23T17:20:09.384+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:20:21.484+08:00","level":"stat","content":"(knowledge.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-06-23T17:21:09.361+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.2Mi, Sys=14.0Mi, NumGC=22"}
+{"@timestamp":"2022-06-23T17:21:09.378+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:21:21.490+08:00","level":"stat","content":"(knowledge.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-06-23T17:22:09.358+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=11.3Mi, Sys=14.0Mi, NumGC=23"}
+{"@timestamp":"2022-06-23T17:22:09.377+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:22:21.484+08:00","level":"stat","content":"(knowledge.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-06-23T17:23:09.357+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.4Mi, Sys=14.0Mi, NumGC=23"}
+{"@timestamp":"2022-06-23T17:23:09.377+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:23:21.482+08:00","level":"stat","content":"(knowledge.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-06-23T17:24:09.351+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=11.4Mi, Sys=14.0Mi, NumGC=24"}
+{"@timestamp":"2022-06-23T17:24:09.381+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:24:21.492+08:00","level":"stat","content":"(knowledge.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-06-23T17:25:09.359+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.5Mi, Sys=14.0Mi, NumGC=24"}
+{"@timestamp":"2022-06-23T17:25:09.378+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:25:21.491+08:00","level":"stat","content":"(knowledge.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-06-23T17:26:09.350+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=11.6Mi, Sys=14.0Mi, NumGC=25"}
+{"@timestamp":"2022-06-23T17:26:09.382+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:26:21.492+08:00","level":"stat","content":"(knowledge.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-06-23T17:27:09.354+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.8Mi, Sys=14.0Mi, NumGC=25"}
+{"@timestamp":"2022-06-23T17:27:09.385+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:27:21.494+08:00","level":"stat","content":"(knowledge.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-06-23T17:28:09.356+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=11.9Mi, Sys=14.0Mi, NumGC=26"}
+{"@timestamp":"2022-06-23T17:28:09.387+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:28:21.485+08:00","level":"stat","content":"(knowledge.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-06-23T17:29:09.357+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.0Mi, Sys=14.0Mi, NumGC=26"}
+{"@timestamp":"2022-06-23T17:29:09.378+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:29:21.495+08:00","level":"stat","content":"(knowledge.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-06-23T17:30:09.360+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.1Mi, Sys=14.0Mi, NumGC=27"}
+{"@timestamp":"2022-06-23T17:30:09.377+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:30:21.495+08:00","level":"stat","content":"(knowledge.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-06-23T17:31:09.362+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.1Mi, Sys=14.0Mi, NumGC=27"}
+{"@timestamp":"2022-06-23T17:31:09.377+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:31:21.485+08:00","level":"stat","content":"(knowledge.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-06-23T17:32:09.352+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.2Mi, Sys=14.0Mi, NumGC=28"}
+{"@timestamp":"2022-06-23T17:32:09.382+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:32:21.484+08:00","level":"stat","content":"(knowledge.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-06-23T17:33:09.354+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.4Mi, Sys=14.0Mi, NumGC=28"}
+{"@timestamp":"2022-06-23T17:33:09.384+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:33:21.489+08:00","level":"stat","content":"(knowledge.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-06-23T17:34:09.351+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.5Mi, Sys=14.0Mi, NumGC=29"}
+{"@timestamp":"2022-06-23T17:34:09.382+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:34:21.486+08:00","level":"stat","content":"(knowledge.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-06-23T17:35:09.347+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=12.6Mi, Sys=14.0Mi, NumGC=29"}
+{"@timestamp":"2022-06-23T17:35:09.377+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:35:21.491+08:00","level":"stat","content":"(knowledge.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-06-23T17:36:09.354+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.7Mi, Sys=14.0Mi, NumGC=30"}
+{"@timestamp":"2022-06-23T17:36:09.384+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:36:21.495+08:00","level":"stat","content":"(knowledge.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-06-23T17:37:09.347+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.8Mi, Sys=14.0Mi, NumGC=30"}
+{"@timestamp":"2022-06-23T17:37:09.377+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:37:21.483+08:00","level":"stat","content":"(knowledge.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-06-23T17:38:09.355+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.9Mi, Sys=14.0Mi, NumGC=31"}
+{"@timestamp":"2022-06-23T17:38:09.386+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:38:21.491+08:00","level":"stat","content":"(knowledge.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-06-23T17:39:09.360+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=13.0Mi, Sys=14.0Mi, NumGC=31"}
+{"@timestamp":"2022-06-23T17:39:09.389+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:39:21.495+08:00","level":"stat","content":"(knowledge.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-06-23T17:40:09.356+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=13.1Mi, Sys=14.0Mi, NumGC=32"}
+{"@timestamp":"2022-06-23T17:40:09.377+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:40:21.490+08:00","level":"stat","content":"(knowledge.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-06-23T17:41:09.352+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=13.2Mi, Sys=14.0Mi, NumGC=32"}
+{"@timestamp":"2022-06-23T17:41:09.382+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-23T17:41:21.489+08:00","level":"stat","content":"(knowledge.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-06-24T09:19:42.929+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=6.8Mi, Sys=14.5Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T09:19:42.951+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:20:42.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=6.9Mi, Sys=14.5Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T09:20:42.951+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:21:42.925+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.1Mi, Sys=14.8Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T09:21:42.955+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:22:42.920+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.8Mi, TotalAlloc=7.5Mi, Sys=14.8Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T09:22:42.951+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-24T09:23:15.782+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 947.0ms, med: 947.6ms, 90th: 947.6ms, 99th: 947.6ms, 99.9th: 947.6ms"}
+{"@timestamp":"2022-06-24T09:23:42.919+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.6Mi, Sys=14.8Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T09:23:42.951+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:25:12.179+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.1Mi, Sys=18.7Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T09:25:12.257+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-24T09:25:22.513+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 446.0ms, med: 446.6ms, 90th: 446.6ms, 99th: 446.6ms, 99.9th: 446.6ms"}
+{"@timestamp":"2022-06-24T09:26:12.183+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.8Mi, TotalAlloc=7.3Mi, Sys=18.7Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T09:26:12.261+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:26:22.510+08:00","level":"stat","content":"(knowledge.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-06-24T09:27:12.183+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.4Mi, Sys=18.7Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T09:27:12.261+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:27:22.514+08:00","level":"stat","content":"(knowledge.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-06-24T09:28:12.181+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.5Mi, Sys=18.9Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T09:28:12.259+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:28:22.510+08:00","level":"stat","content":"(knowledge.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-06-24T09:29:12.182+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.6Mi, Sys=18.9Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T09:29:12.259+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:29:22.514+08:00","level":"stat","content":"(knowledge.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-06-24T09:30:12.176+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.7Mi, Sys=18.9Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T09:30:12.257+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:30:22.521+08:00","level":"stat","content":"(knowledge.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-06-24T09:31:12.178+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.8Mi, Sys=18.9Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T09:31:12.257+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:31:22.515+08:00","level":"stat","content":"(knowledge.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-06-24T09:32:12.176+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.9Mi, Sys=18.9Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T09:32:12.258+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:32:22.509+08:00","level":"stat","content":"(knowledge.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-06-24T09:33:12.186+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.0Mi, Sys=18.9Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T09:33:12.260+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:33:22.518+08:00","level":"stat","content":"(knowledge.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-06-24T09:34:12.187+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.1Mi, Sys=18.9Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T09:34:12.264+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:34:22.516+08:00","level":"stat","content":"(knowledge.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-06-24T09:35:12.174+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.2Mi, Sys=18.9Mi, NumGC=8"}
+{"@timestamp":"2022-06-24T09:35:12.258+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:35:22.512+08:00","level":"stat","content":"(knowledge.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-06-24T09:36:12.187+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.3Mi, Sys=18.9Mi, NumGC=8"}
+{"@timestamp":"2022-06-24T09:36:12.257+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:36:22.523+08:00","level":"stat","content":"(knowledge.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-06-24T09:37:12.179+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.3Mi, Sys=18.9Mi, NumGC=9"}
+{"@timestamp":"2022-06-24T09:37:12.258+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:37:22.523+08:00","level":"stat","content":"(knowledge.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-06-24T09:38:12.181+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.4Mi, Sys=18.9Mi, NumGC=9"}
+{"@timestamp":"2022-06-24T09:38:12.258+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:38:22.514+08:00","level":"stat","content":"(knowledge.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-06-24T09:39:12.183+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.5Mi, Sys=18.9Mi, NumGC=10"}
+{"@timestamp":"2022-06-24T09:39:12.261+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:39:22.511+08:00","level":"stat","content":"(knowledge.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-06-24T09:40:12.181+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.6Mi, Sys=18.9Mi, NumGC=10"}
+{"@timestamp":"2022-06-24T09:40:12.260+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:40:22.518+08:00","level":"stat","content":"(knowledge.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-06-24T09:41:12.181+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.7Mi, Sys=18.9Mi, NumGC=11"}
+{"@timestamp":"2022-06-24T09:41:12.259+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:41:22.516+08:00","level":"stat","content":"(knowledge.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-06-24T09:42:12.178+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.9Mi, Sys=18.9Mi, NumGC=11"}
+{"@timestamp":"2022-06-24T09:42:12.270+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:42:22.509+08:00","level":"stat","content":"(knowledge.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-06-24T09:43:12.182+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.0Mi, Sys=18.9Mi, NumGC=12"}
+{"@timestamp":"2022-06-24T09:43:12.260+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:43:22.519+08:00","level":"stat","content":"(knowledge.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-06-24T09:44:12.186+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.1Mi, Sys=18.9Mi, NumGC=12"}
+{"@timestamp":"2022-06-24T09:44:12.263+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:44:22.522+08:00","level":"stat","content":"(knowledge.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-06-24T09:45:12.185+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.2Mi, Sys=18.9Mi, NumGC=13"}
+{"@timestamp":"2022-06-24T09:45:12.263+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:45:22.523+08:00","level":"stat","content":"(knowledge.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-06-24T09:46:12.179+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.3Mi, Sys=18.9Mi, NumGC=13"}
+{"@timestamp":"2022-06-24T09:46:12.258+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:46:22.514+08:00","level":"stat","content":"(knowledge.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-06-24T09:47:12.177+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.4Mi, Sys=18.9Mi, NumGC=14"}
+{"@timestamp":"2022-06-24T09:47:12.257+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:47:22.518+08:00","level":"stat","content":"(knowledge.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-06-24T09:48:12.178+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.5Mi, Sys=18.9Mi, NumGC=14"}
+{"@timestamp":"2022-06-24T09:48:12.257+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:48:22.518+08:00","level":"stat","content":"(knowledge.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-06-24T09:49:12.186+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.6Mi, Sys=18.9Mi, NumGC=15"}
+{"@timestamp":"2022-06-24T09:49:12.258+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:49:22.518+08:00","level":"stat","content":"(knowledge.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-06-24T09:50:12.176+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.7Mi, Sys=18.9Mi, NumGC=15"}
+{"@timestamp":"2022-06-24T09:50:12.257+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:50:22.518+08:00","level":"stat","content":"(knowledge.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-06-24T09:51:12.175+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.8Mi, Sys=18.9Mi, NumGC=16"}
+{"@timestamp":"2022-06-24T09:51:12.257+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:51:22.513+08:00","level":"stat","content":"(knowledge.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-06-24T09:52:12.179+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.8Mi, Sys=18.9Mi, NumGC=16"}
+{"@timestamp":"2022-06-24T09:52:12.259+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:52:22.514+08:00","level":"stat","content":"(knowledge.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-06-24T09:53:12.181+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.9Mi, Sys=18.9Mi, NumGC=17"}
+{"@timestamp":"2022-06-24T09:53:12.257+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:53:22.521+08:00","level":"stat","content":"(knowledge.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-06-24T09:54:12.186+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.0Mi, Sys=18.9Mi, NumGC=17"}
+{"@timestamp":"2022-06-24T09:54:12.259+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:54:22.514+08:00","level":"stat","content":"(knowledge.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-06-24T09:55:12.177+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.1Mi, Sys=18.9Mi, NumGC=18"}
+{"@timestamp":"2022-06-24T09:55:12.267+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:55:22.513+08:00","level":"stat","content":"(knowledge.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-06-24T09:56:12.182+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.2Mi, Sys=18.9Mi, NumGC=18"}
+{"@timestamp":"2022-06-24T09:56:12.261+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:56:22.512+08:00","level":"stat","content":"(knowledge.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-06-24T09:57:12.185+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.3Mi, Sys=18.9Mi, NumGC=19"}
+{"@timestamp":"2022-06-24T09:57:12.262+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:57:22.521+08:00","level":"stat","content":"(knowledge.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-06-24T09:58:12.186+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.4Mi, Sys=18.9Mi, NumGC=19"}
+{"@timestamp":"2022-06-24T09:58:12.263+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:58:22.521+08:00","level":"stat","content":"(knowledge.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-06-24T09:59:12.180+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.5Mi, Sys=18.9Mi, NumGC=20"}
+{"@timestamp":"2022-06-24T09:59:12.257+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T09:59:22.510+08:00","level":"stat","content":"(knowledge.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-06-24T10:00:12.177+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.6Mi, Sys=18.9Mi, NumGC=20"}
+{"@timestamp":"2022-06-24T10:00:12.257+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T10:10:08.849+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=10.7Mi, Sys=18.9Mi, NumGC=20"}
+{"@timestamp":"2022-06-24T10:10:08.850+08:00","level":"stat","content":"(knowledge.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-06-24T10:10:08.851+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:08:49.173+08:00","level":"stat","content":"(knowledge.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-06-24T11:08:49.208+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:08:49.370+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.0Mi, Sys=18.9Mi, NumGC=22"}
+{"@timestamp":"2022-06-24T11:09:12.178+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=11.2Mi, Sys=18.9Mi, NumGC=22"}
+{"@timestamp":"2022-06-24T11:09:12.257+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:09:22.510+08:00","level":"stat","content":"(knowledge.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-06-24T11:10:12.184+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.8Mi, TotalAlloc=11.3Mi, Sys=18.9Mi, NumGC=22"}
+{"@timestamp":"2022-06-24T11:10:12.261+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:10:22.516+08:00","level":"stat","content":"(knowledge.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-06-24T11:11:12.187+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=11.4Mi, Sys=18.9Mi, NumGC=23"}
+{"@timestamp":"2022-06-24T11:11:12.258+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:11:22.524+08:00","level":"stat","content":"(knowledge.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-06-24T11:12:12.176+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.5Mi, Sys=18.9Mi, NumGC=23"}
+{"@timestamp":"2022-06-24T11:12:12.257+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:12:22.510+08:00","level":"stat","content":"(knowledge.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-06-24T11:13:12.182+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=11.6Mi, Sys=18.9Mi, NumGC=24"}
+{"@timestamp":"2022-06-24T11:13:12.260+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:13:22.512+08:00","level":"stat","content":"(knowledge.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-06-24T11:14:12.188+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.7Mi, Sys=18.9Mi, NumGC=24"}
+{"@timestamp":"2022-06-24T11:14:12.265+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:14:22.519+08:00","level":"stat","content":"(knowledge.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-06-24T11:15:12.188+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=11.8Mi, Sys=18.9Mi, NumGC=25"}
+{"@timestamp":"2022-06-24T11:15:12.265+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:15:22.520+08:00","level":"stat","content":"(knowledge.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-06-24T11:16:12.179+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.9Mi, Sys=18.9Mi, NumGC=25"}
+{"@timestamp":"2022-06-24T11:16:12.257+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:16:22.513+08:00","level":"stat","content":"(knowledge.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-06-24T11:17:12.177+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.0Mi, Sys=18.9Mi, NumGC=26"}
+{"@timestamp":"2022-06-24T11:17:12.270+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:17:22.517+08:00","level":"stat","content":"(knowledge.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-06-24T11:18:12.181+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.1Mi, Sys=18.9Mi, NumGC=26"}
+{"@timestamp":"2022-06-24T11:18:12.257+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:18:22.515+08:00","level":"stat","content":"(knowledge.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-06-24T11:19:12.175+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.2Mi, Sys=18.9Mi, NumGC=27"}
+{"@timestamp":"2022-06-24T11:19:12.264+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:19:22.511+08:00","level":"stat","content":"(knowledge.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-06-24T11:20:12.186+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.3Mi, Sys=18.9Mi, NumGC=27"}
+{"@timestamp":"2022-06-24T11:20:12.258+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:20:22.516+08:00","level":"stat","content":"(knowledge.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-06-24T11:21:12.174+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.4Mi, Sys=18.9Mi, NumGC=28"}
+{"@timestamp":"2022-06-24T11:21:12.258+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:21:22.521+08:00","level":"stat","content":"(knowledge.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-06-24T11:22:12.177+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.4Mi, Sys=18.9Mi, NumGC=28"}
+{"@timestamp":"2022-06-24T11:22:12.258+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:22:22.509+08:00","level":"stat","content":"(knowledge.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-06-24T11:23:12.183+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.5Mi, Sys=18.9Mi, NumGC=29"}
+{"@timestamp":"2022-06-24T11:23:12.260+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:23:22.524+08:00","level":"stat","content":"(knowledge.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-06-24T11:24:12.177+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.6Mi, Sys=18.9Mi, NumGC=29"}
+{"@timestamp":"2022-06-24T11:24:12.265+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:24:22.518+08:00","level":"stat","content":"(knowledge.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-06-24T11:25:12.188+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.7Mi, Sys=18.9Mi, NumGC=30"}
+{"@timestamp":"2022-06-24T11:25:12.264+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:25:22.513+08:00","level":"stat","content":"(knowledge.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-06-24T11:26:12.181+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.8Mi, Sys=18.9Mi, NumGC=30"}
+{"@timestamp":"2022-06-24T11:26:12.259+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:26:22.523+08:00","level":"stat","content":"(knowledge.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-06-24T11:27:12.180+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.9Mi, Sys=18.9Mi, NumGC=31"}
+{"@timestamp":"2022-06-24T11:27:12.258+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:27:22.519+08:00","level":"stat","content":"(knowledge.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-06-24T11:28:12.180+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=13.0Mi, Sys=18.9Mi, NumGC=31"}
+{"@timestamp":"2022-06-24T11:28:12.257+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:28:22.522+08:00","level":"stat","content":"(knowledge.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-06-24T11:29:12.179+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=13.1Mi, Sys=18.9Mi, NumGC=32"}
+{"@timestamp":"2022-06-24T11:29:12.258+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:29:22.510+08:00","level":"stat","content":"(knowledge.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-06-24T11:30:12.174+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=13.2Mi, Sys=18.9Mi, NumGC=32"}
+{"@timestamp":"2022-06-24T11:30:12.258+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:30:22.513+08:00","level":"stat","content":"(knowledge.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-06-24T11:31:12.188+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=13.3Mi, Sys=18.9Mi, NumGC=33"}
+{"@timestamp":"2022-06-24T11:31:12.265+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:31:22.513+08:00","level":"stat","content":"(knowledge.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-06-24T11:33:25.714+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=6.8Mi, Sys=14.0Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T11:33:25.759+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:34:25.714+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=6.9Mi, Sys=14.0Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T11:34:25.760+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:35:25.713+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.0Mi, Sys=14.3Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T11:35:25.759+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:36:25.707+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.1Mi, Sys=14.3Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T11:36:25.756+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:37:25.711+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.2Mi, Sys=14.3Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T11:37:25.758+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:38:25.702+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.4Mi, Sys=14.3Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T11:38:25.754+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:39:25.715+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.4Mi, Sys=14.3Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T11:39:25.761+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:40:25.708+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.6Mi, Sys=14.3Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T11:40:25.755+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:41:25.711+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.7Mi, Sys=14.3Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T11:41:25.758+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:42:25.703+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.8Mi, Sys=14.3Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T11:42:25.754+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:43:25.709+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=7.8Mi, Sys=14.3Mi, NumGC=8"}
+{"@timestamp":"2022-06-24T11:43:25.756+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:44:25.713+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.9Mi, Sys=14.3Mi, NumGC=8"}
+{"@timestamp":"2022-06-24T11:44:25.760+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:45:25.703+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.0Mi, Sys=14.3Mi, NumGC=9"}
+{"@timestamp":"2022-06-24T11:45:25.756+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:46:25.708+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.1Mi, Sys=14.3Mi, NumGC=9"}
+{"@timestamp":"2022-06-24T11:46:25.756+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:47:25.701+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.2Mi, Sys=14.3Mi, NumGC=10"}
+{"@timestamp":"2022-06-24T11:47:25.763+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T11:48:25.704+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.3Mi, Sys=14.3Mi, NumGC=10"}
+{"@timestamp":"2022-06-24T11:48:25.760+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:28:32.113+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:28:32.136+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.4Mi, Sys=14.3Mi, NumGC=11"}
+{"@timestamp":"2022-06-24T12:29:25.700+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.7Mi, Sys=14.3Mi, NumGC=12"}
+{"@timestamp":"2022-06-24T12:29:25.762+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:30:25.702+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=8.8Mi, Sys=14.3Mi, NumGC=12"}
+{"@timestamp":"2022-06-24T12:30:25.765+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:31:25.713+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=8.9Mi, Sys=14.3Mi, NumGC=13"}
+{"@timestamp":"2022-06-24T12:31:25.760+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:32:25.701+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.0Mi, Sys=14.3Mi, NumGC=13"}
+{"@timestamp":"2022-06-24T12:32:25.764+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:33:25.710+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.1Mi, Sys=14.3Mi, NumGC=14"}
+{"@timestamp":"2022-06-24T12:33:25.757+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:34:25.712+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.2Mi, Sys=14.3Mi, NumGC=14"}
+{"@timestamp":"2022-06-24T12:34:25.760+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:35:25.699+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.3Mi, Sys=14.3Mi, NumGC=15"}
+{"@timestamp":"2022-06-24T12:35:25.761+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:36:25.702+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.4Mi, Sys=14.3Mi, NumGC=15"}
+{"@timestamp":"2022-06-24T12:36:25.763+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:37:25.704+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.5Mi, Sys=14.3Mi, NumGC=16"}
+{"@timestamp":"2022-06-24T12:37:25.766+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:38:25.710+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.6Mi, Sys=14.3Mi, NumGC=16"}
+{"@timestamp":"2022-06-24T12:38:25.756+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:39:25.700+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.7Mi, Sys=14.3Mi, NumGC=17"}
+{"@timestamp":"2022-06-24T12:39:25.761+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:40:25.702+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.8Mi, Sys=14.3Mi, NumGC=17"}
+{"@timestamp":"2022-06-24T12:40:25.763+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:41:25.707+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=9.9Mi, Sys=14.3Mi, NumGC=18"}
+{"@timestamp":"2022-06-24T12:41:25.768+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:42:25.701+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.0Mi, Sys=14.3Mi, NumGC=18"}
+{"@timestamp":"2022-06-24T12:42:25.763+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:43:25.703+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.2Mi, Sys=14.3Mi, NumGC=19"}
+{"@timestamp":"2022-06-24T12:43:25.754+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:44:25.709+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.2Mi, Sys=14.3Mi, NumGC=19"}
+{"@timestamp":"2022-06-24T12:44:25.756+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:45:25.712+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.3Mi, Sys=14.3Mi, NumGC=20"}
+{"@timestamp":"2022-06-24T12:45:25.759+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:46:25.702+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.4Mi, Sys=14.3Mi, NumGC=20"}
+{"@timestamp":"2022-06-24T12:46:25.758+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:47:25.711+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=10.5Mi, Sys=14.3Mi, NumGC=21"}
+{"@timestamp":"2022-06-24T12:47:25.757+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:48:25.700+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.6Mi, Sys=14.3Mi, NumGC=21"}
+{"@timestamp":"2022-06-24T12:48:25.763+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:49:25.704+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.7Mi, Sys=14.3Mi, NumGC=22"}
+{"@timestamp":"2022-06-24T12:49:25.754+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:50:25.703+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.8Mi, Sys=14.3Mi, NumGC=22"}
+{"@timestamp":"2022-06-24T12:50:25.754+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:51:25.707+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=10.9Mi, Sys=14.3Mi, NumGC=23"}
+{"@timestamp":"2022-06-24T12:51:25.755+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:52:25.702+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.0Mi, Sys=14.3Mi, NumGC=23"}
+{"@timestamp":"2022-06-24T12:52:25.754+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:53:25.714+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=11.1Mi, Sys=14.3Mi, NumGC=24"}
+{"@timestamp":"2022-06-24T12:53:25.760+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:54:25.700+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.2Mi, Sys=14.3Mi, NumGC=24"}
+{"@timestamp":"2022-06-24T12:54:25.762+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:55:25.702+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=11.3Mi, Sys=14.3Mi, NumGC=25"}
+{"@timestamp":"2022-06-24T12:55:25.763+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:56:25.705+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.4Mi, Sys=14.3Mi, NumGC=25"}
+{"@timestamp":"2022-06-24T12:56:25.761+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:57:25.711+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=11.5Mi, Sys=14.3Mi, NumGC=26"}
+{"@timestamp":"2022-06-24T12:57:25.757+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:58:25.708+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.6Mi, Sys=14.3Mi, NumGC=26"}
+{"@timestamp":"2022-06-24T12:58:25.754+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T12:59:25.711+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=11.7Mi, Sys=14.3Mi, NumGC=27"}
+{"@timestamp":"2022-06-24T12:59:25.757+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:00:25.700+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.8Mi, Sys=14.3Mi, NumGC=27"}
+{"@timestamp":"2022-06-24T13:00:25.762+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:01:25.704+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=11.9Mi, Sys=14.3Mi, NumGC=28"}
+{"@timestamp":"2022-06-24T13:01:25.755+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:02:25.704+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.0Mi, Sys=14.3Mi, NumGC=28"}
+{"@timestamp":"2022-06-24T13:02:25.757+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:03:25.704+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.1Mi, Sys=14.3Mi, NumGC=29"}
+{"@timestamp":"2022-06-24T13:03:25.766+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:04:25.702+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.2Mi, Sys=14.3Mi, NumGC=29"}
+{"@timestamp":"2022-06-24T13:04:25.763+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:05:25.710+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.3Mi, Sys=14.3Mi, NumGC=30"}
+{"@timestamp":"2022-06-24T13:05:25.756+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:06:25.701+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.4Mi, Sys=14.3Mi, NumGC=30"}
+{"@timestamp":"2022-06-24T13:06:25.763+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:07:25.707+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.5Mi, Sys=14.3Mi, NumGC=31"}
+{"@timestamp":"2022-06-24T13:07:25.754+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:08:25.713+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.6Mi, Sys=14.3Mi, NumGC=31"}
+{"@timestamp":"2022-06-24T13:08:25.759+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:09:25.705+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.7Mi, Sys=14.3Mi, NumGC=32"}
+{"@timestamp":"2022-06-24T13:09:25.758+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:10:25.710+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.8Mi, Sys=14.3Mi, NumGC=32"}
+{"@timestamp":"2022-06-24T13:10:25.756+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:11:25.705+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=12.9Mi, Sys=14.3Mi, NumGC=33"}
+{"@timestamp":"2022-06-24T13:11:25.754+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:12:25.707+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=13.0Mi, Sys=14.3Mi, NumGC=33"}
+{"@timestamp":"2022-06-24T13:12:25.754+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:13:25.702+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=13.1Mi, Sys=14.3Mi, NumGC=34"}
+{"@timestamp":"2022-06-24T13:13:25.754+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:14:25.709+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=13.2Mi, Sys=14.3Mi, NumGC=34"}
+{"@timestamp":"2022-06-24T13:14:25.754+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:15:25.714+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=13.3Mi, Sys=14.3Mi, NumGC=35"}
+{"@timestamp":"2022-06-24T13:15:25.761+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:16:25.703+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=13.4Mi, Sys=14.3Mi, NumGC=35"}
+{"@timestamp":"2022-06-24T13:16:25.764+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:17:25.709+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=13.5Mi, Sys=14.3Mi, NumGC=36"}
+{"@timestamp":"2022-06-24T13:17:25.756+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:18:25.713+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=13.6Mi, Sys=14.3Mi, NumGC=36"}
+{"@timestamp":"2022-06-24T13:18:25.759+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:19:25.711+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=13.7Mi, Sys=14.3Mi, NumGC=37"}
+{"@timestamp":"2022-06-24T13:19:25.758+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:20:25.704+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=13.8Mi, Sys=14.3Mi, NumGC=37"}
+{"@timestamp":"2022-06-24T13:20:25.755+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:21:25.714+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=13.9Mi, Sys=14.3Mi, NumGC=38"}
+{"@timestamp":"2022-06-24T13:21:25.759+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:22:25.707+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=14.0Mi, Sys=14.3Mi, NumGC=38"}
+{"@timestamp":"2022-06-24T13:22:25.761+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:23:25.705+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=14.1Mi, Sys=14.3Mi, NumGC=39"}
+{"@timestamp":"2022-06-24T13:23:25.754+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:24:25.714+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=14.2Mi, Sys=14.3Mi, NumGC=39"}
+{"@timestamp":"2022-06-24T13:24:25.760+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:25:25.709+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=14.3Mi, Sys=14.3Mi, NumGC=40"}
+{"@timestamp":"2022-06-24T13:25:25.755+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:26:25.711+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=14.4Mi, Sys=14.3Mi, NumGC=40"}
+{"@timestamp":"2022-06-24T13:26:25.758+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:27:25.706+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=14.5Mi, Sys=14.3Mi, NumGC=41"}
+{"@timestamp":"2022-06-24T13:27:25.754+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:28:25.708+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=14.6Mi, Sys=14.3Mi, NumGC=41"}
+{"@timestamp":"2022-06-24T13:28:25.754+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:29:25.704+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=14.7Mi, Sys=14.3Mi, NumGC=42"}
+{"@timestamp":"2022-06-24T13:29:25.757+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:30:25.710+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=14.8Mi, Sys=14.3Mi, NumGC=42"}
+{"@timestamp":"2022-06-24T13:30:25.756+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:31:25.714+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=14.9Mi, Sys=14.3Mi, NumGC=43"}
+{"@timestamp":"2022-06-24T13:31:25.760+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:32:25.700+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=15.0Mi, Sys=14.3Mi, NumGC=43"}
+{"@timestamp":"2022-06-24T13:32:25.762+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:33:25.705+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=15.1Mi, Sys=14.3Mi, NumGC=44"}
+{"@timestamp":"2022-06-24T13:33:25.760+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:34:25.704+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=15.2Mi, Sys=14.3Mi, NumGC=44"}
+{"@timestamp":"2022-06-24T13:34:25.758+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:35:25.705+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=15.3Mi, Sys=14.3Mi, NumGC=45"}
+{"@timestamp":"2022-06-24T13:35:25.754+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:36:25.712+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=15.3Mi, Sys=14.3Mi, NumGC=45"}
+{"@timestamp":"2022-06-24T13:36:25.759+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:37:25.711+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=15.4Mi, Sys=14.3Mi, NumGC=46"}
+{"@timestamp":"2022-06-24T13:37:25.758+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:38:25.715+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=15.5Mi, Sys=14.3Mi, NumGC=46"}
+{"@timestamp":"2022-06-24T13:38:25.762+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:39:25.701+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=15.8Mi, Sys=14.3Mi, NumGC=47"}
+{"@timestamp":"2022-06-24T13:39:25.762+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:40:25.710+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=15.9Mi, Sys=14.3Mi, NumGC=47"}
+{"@timestamp":"2022-06-24T13:40:25.756+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:41:25.704+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=16.0Mi, Sys=14.3Mi, NumGC=48"}
+{"@timestamp":"2022-06-24T13:41:25.757+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:42:25.706+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=16.1Mi, Sys=14.3Mi, NumGC=48"}
+{"@timestamp":"2022-06-24T13:42:25.756+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:47:34.906+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.3Mi, TotalAlloc=6.8Mi, Sys=14.3Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T13:47:34.937+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:48:34.902+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.1Mi, Sys=14.3Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T13:48:34.933+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:49:34.916+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.2Mi, Sys=14.3Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T13:49:34.932+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:50:34.905+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.3Mi, Sys=14.3Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T13:50:34.936+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:51:34.911+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.4Mi, Sys=14.3Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T13:51:34.932+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:52:34.910+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.5Mi, Sys=14.3Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T13:52:34.941+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:53:34.904+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.6Mi, Sys=14.3Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T13:53:34.935+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:54:34.913+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.7Mi, Sys=14.3Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T13:54:34.932+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:55:34.908+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.7Mi, Sys=14.3Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T13:55:34.939+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:56:34.912+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.9Mi, Sys=14.3Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T13:56:34.934+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:57:34.914+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=7.9Mi, Sys=14.3Mi, NumGC=8"}
+{"@timestamp":"2022-06-24T13:57:34.933+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:58:34.908+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.0Mi, Sys=14.3Mi, NumGC=8"}
+{"@timestamp":"2022-06-24T13:58:34.939+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T13:59:34.903+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.1Mi, Sys=14.3Mi, NumGC=9"}
+{"@timestamp":"2022-06-24T13:59:34.935+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:00:34.913+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.2Mi, Sys=14.3Mi, NumGC=9"}
+{"@timestamp":"2022-06-24T14:00:34.931+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:01:34.908+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.4Mi, Sys=14.3Mi, NumGC=10"}
+{"@timestamp":"2022-06-24T14:01:34.939+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:02:34.902+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=8.5Mi, Sys=14.3Mi, NumGC=10"}
+{"@timestamp":"2022-06-24T14:02:34.932+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:03:34.909+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.6Mi, Sys=14.3Mi, NumGC=11"}
+{"@timestamp":"2022-06-24T14:03:34.941+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:04:34.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=8.7Mi, Sys=14.3Mi, NumGC=11"}
+{"@timestamp":"2022-06-24T14:04:34.932+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:05:34.908+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=8.8Mi, Sys=14.3Mi, NumGC=12"}
+{"@timestamp":"2022-06-24T14:05:34.940+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:06:34.906+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=8.9Mi, Sys=14.3Mi, NumGC=12"}
+{"@timestamp":"2022-06-24T14:06:34.936+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:07:34.915+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.0Mi, Sys=14.3Mi, NumGC=13"}
+{"@timestamp":"2022-06-24T14:07:34.931+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:08:34.902+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=9.1Mi, Sys=14.3Mi, NumGC=13"}
+{"@timestamp":"2022-06-24T14:08:34.934+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:09:34.908+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.4Mi, TotalAlloc=9.2Mi, Sys=14.3Mi, NumGC=14"}
+{"@timestamp":"2022-06-24T14:09:34.939+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:10:34.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=9.3Mi, Sys=14.3Mi, NumGC=14"}
+{"@timestamp":"2022-06-24T14:10:34.932+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:11:34.916+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.4Mi, Sys=14.3Mi, NumGC=15"}
+{"@timestamp":"2022-06-24T14:11:34.931+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:12:34.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=9.5Mi, Sys=14.3Mi, NumGC=15"}
+{"@timestamp":"2022-06-24T14:12:34.932+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:13:34.911+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.6Mi, Sys=14.3Mi, NumGC=16"}
+{"@timestamp":"2022-06-24T14:13:34.933+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:14:34.902+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.7Mi, Sys=14.3Mi, NumGC=16"}
+{"@timestamp":"2022-06-24T14:14:34.934+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:15:34.904+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=9.8Mi, Sys=14.3Mi, NumGC=17"}
+{"@timestamp":"2022-06-24T14:15:34.935+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:16:34.908+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=9.9Mi, Sys=14.3Mi, NumGC=17"}
+{"@timestamp":"2022-06-24T14:16:34.938+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:17:34.908+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.0Mi, Sys=14.3Mi, NumGC=18"}
+{"@timestamp":"2022-06-24T14:17:34.940+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:18:34.909+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=10.1Mi, Sys=14.3Mi, NumGC=18"}
+{"@timestamp":"2022-06-24T14:18:34.931+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:19:34.911+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.2Mi, Sys=14.3Mi, NumGC=19"}
+{"@timestamp":"2022-06-24T14:19:34.934+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:20:34.903+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.3Mi, Sys=14.3Mi, NumGC=19"}
+{"@timestamp":"2022-06-24T14:20:34.934+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:21:34.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.4Mi, Sys=14.3Mi, NumGC=20"}
+{"@timestamp":"2022-06-24T14:21:34.933+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:22:34.910+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=10.5Mi, Sys=14.3Mi, NumGC=20"}
+{"@timestamp":"2022-06-24T14:22:34.931+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:23:34.902+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.6Mi, Sys=14.3Mi, NumGC=21"}
+{"@timestamp":"2022-06-24T14:23:34.933+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:24:34.907+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=10.7Mi, Sys=14.3Mi, NumGC=21"}
+{"@timestamp":"2022-06-24T14:24:34.938+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:25:34.916+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=10.8Mi, Sys=14.3Mi, NumGC=22"}
+{"@timestamp":"2022-06-24T14:25:34.931+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:26:34.916+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=10.9Mi, Sys=14.3Mi, NumGC=22"}
+{"@timestamp":"2022-06-24T14:26:34.931+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:27:34.902+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.0Mi, Sys=14.3Mi, NumGC=23"}
+{"@timestamp":"2022-06-24T14:27:34.934+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:28:34.915+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=11.1Mi, Sys=14.3Mi, NumGC=23"}
+{"@timestamp":"2022-06-24T14:28:34.931+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:29:34.904+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.2Mi, Sys=14.3Mi, NumGC=24"}
+{"@timestamp":"2022-06-24T14:29:34.934+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:30:34.908+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=11.3Mi, Sys=14.3Mi, NumGC=24"}
+{"@timestamp":"2022-06-24T14:30:34.939+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:31:34.910+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.4Mi, Sys=14.3Mi, NumGC=25"}
+{"@timestamp":"2022-06-24T14:31:34.941+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:32:34.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=11.5Mi, Sys=14.3Mi, NumGC=25"}
+{"@timestamp":"2022-06-24T14:32:34.932+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:33:34.903+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.6Mi, Sys=14.3Mi, NumGC=26"}
+{"@timestamp":"2022-06-24T14:33:34.935+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:34:34.903+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=11.7Mi, Sys=14.3Mi, NumGC=26"}
+{"@timestamp":"2022-06-24T14:34:34.934+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:35:34.902+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=11.8Mi, Sys=14.3Mi, NumGC=27"}
+{"@timestamp":"2022-06-24T14:35:34.933+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:36:34.915+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=11.9Mi, Sys=14.3Mi, NumGC=27"}
+{"@timestamp":"2022-06-24T14:36:34.931+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:37:34.913+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.0Mi, Sys=14.3Mi, NumGC=28"}
+{"@timestamp":"2022-06-24T14:37:34.937+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:38:34.912+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=12.2Mi, Sys=14.3Mi, NumGC=28"}
+{"@timestamp":"2022-06-24T14:38:34.931+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:39:34.906+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.2Mi, Sys=14.3Mi, NumGC=29"}
+{"@timestamp":"2022-06-24T14:39:34.937+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:40:34.904+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=12.3Mi, Sys=14.3Mi, NumGC=29"}
+{"@timestamp":"2022-06-24T14:40:34.935+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:41:34.906+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.4Mi, Sys=14.3Mi, NumGC=30"}
+{"@timestamp":"2022-06-24T14:41:34.936+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:42:34.913+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=12.5Mi, Sys=14.3Mi, NumGC=30"}
+{"@timestamp":"2022-06-24T14:42:34.931+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:43:34.912+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.6Mi, Sys=14.3Mi, NumGC=31"}
+{"@timestamp":"2022-06-24T14:43:34.933+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:44:34.911+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=12.7Mi, Sys=14.3Mi, NumGC=31"}
+{"@timestamp":"2022-06-24T14:44:34.931+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:45:34.904+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=12.8Mi, Sys=14.3Mi, NumGC=32"}
+{"@timestamp":"2022-06-24T14:45:34.936+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:46:34.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=12.9Mi, Sys=14.3Mi, NumGC=32"}
+{"@timestamp":"2022-06-24T14:46:34.931+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:47:34.908+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=13.0Mi, Sys=14.3Mi, NumGC=33"}
+{"@timestamp":"2022-06-24T14:47:34.939+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:48:34.907+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=13.1Mi, Sys=14.3Mi, NumGC=33"}
+{"@timestamp":"2022-06-24T14:48:34.937+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:49:34.904+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=13.2Mi, Sys=14.3Mi, NumGC=34"}
+{"@timestamp":"2022-06-24T14:49:34.935+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:50:34.908+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=13.3Mi, Sys=14.3Mi, NumGC=34"}
+{"@timestamp":"2022-06-24T14:50:34.939+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:51:34.916+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=13.4Mi, Sys=14.3Mi, NumGC=35"}
+{"@timestamp":"2022-06-24T14:51:34.932+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:52:34.913+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=13.5Mi, Sys=14.3Mi, NumGC=35"}
+{"@timestamp":"2022-06-24T14:52:34.933+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:53:34.912+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=13.6Mi, Sys=14.3Mi, NumGC=36"}
+{"@timestamp":"2022-06-24T14:53:34.943+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:54:34.914+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=13.8Mi, Sys=14.3Mi, NumGC=36"}
+{"@timestamp":"2022-06-24T14:54:34.933+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:55:34.915+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=13.9Mi, Sys=14.3Mi, NumGC=37"}
+{"@timestamp":"2022-06-24T14:55:34.933+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:56:34.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=14.0Mi, Sys=14.3Mi, NumGC=37"}
+{"@timestamp":"2022-06-24T14:56:34.932+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:57:34.906+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=14.1Mi, Sys=14.3Mi, NumGC=38"}
+{"@timestamp":"2022-06-24T14:57:34.938+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:58:34.906+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=14.2Mi, Sys=14.3Mi, NumGC=38"}
+{"@timestamp":"2022-06-24T14:58:34.936+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T14:59:34.917+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=14.3Mi, Sys=14.3Mi, NumGC=39"}
+{"@timestamp":"2022-06-24T14:59:34.932+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:33:20.324+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=6.8Mi, Sys=18.4Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T15:33:20.356+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:34:20.311+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.9Mi, TotalAlloc=7.0Mi, Sys=18.4Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T15:34:20.357+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:35:20.313+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.2Mi, Sys=18.4Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T15:35:20.357+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:36:20.321+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.9Mi, TotalAlloc=7.6Mi, Sys=18.7Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T15:36:20.352+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-24T15:37:05.566+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 660.0ms, med: 660.2ms, 90th: 660.2ms, 99th: 660.2ms, 99.9th: 660.2ms"}
+{"@timestamp":"2022-06-24T15:37:20.318+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.7Mi, Sys=18.7Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T15:37:20.351+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:38:05.575+08:00","level":"stat","content":"(knowledge.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-06-24T15:38:20.325+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.8Mi, TotalAlloc=7.8Mi, Sys=18.7Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T15:38:20.356+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:39:05.579+08:00","level":"stat","content":"(knowledge.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-06-24T15:39:20.315+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.9Mi, Sys=18.7Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T15:39:20.352+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:40:05.579+08:00","level":"stat","content":"(knowledge.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-06-24T15:40:20.313+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=8.0Mi, Sys=18.7Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T15:40:20.352+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:41:05.569+08:00","level":"stat","content":"(knowledge.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-06-24T15:41:20.310+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=8.0Mi, Sys=18.7Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T15:41:20.356+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:42:05.573+08:00","level":"stat","content":"(knowledge.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-06-24T15:42:20.322+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=8.2Mi, Sys=18.7Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T15:42:20.353+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:43:05.578+08:00","level":"stat","content":"(knowledge.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-06-24T15:43:20.316+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=8.3Mi, Sys=18.7Mi, NumGC=8"}
+{"@timestamp":"2022-06-24T15:43:20.352+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:44:05.581+08:00","level":"stat","content":"(knowledge.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-06-24T15:44:20.323+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=8.3Mi, Sys=18.7Mi, NumGC=8"}
+{"@timestamp":"2022-06-24T15:44:20.354+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:45:05.566+08:00","level":"stat","content":"(knowledge.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-06-24T15:45:20.318+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=8.4Mi, Sys=18.7Mi, NumGC=9"}
+{"@timestamp":"2022-06-24T15:45:20.355+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:46:05.577+08:00","level":"stat","content":"(knowledge.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-06-24T15:46:20.317+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=8.6Mi, Sys=18.7Mi, NumGC=9"}
+{"@timestamp":"2022-06-24T15:46:20.351+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:47:05.567+08:00","level":"stat","content":"(knowledge.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-06-24T15:47:20.321+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=8.7Mi, Sys=18.7Mi, NumGC=10"}
+{"@timestamp":"2022-06-24T15:47:20.353+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:48:05.570+08:00","level":"stat","content":"(knowledge.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-06-24T15:48:20.317+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=8.8Mi, Sys=18.7Mi, NumGC=10"}
+{"@timestamp":"2022-06-24T15:48:20.352+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:49:05.570+08:00","level":"stat","content":"(knowledge.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-06-24T15:49:20.321+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=8.9Mi, Sys=18.7Mi, NumGC=11"}
+{"@timestamp":"2022-06-24T15:49:20.353+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:50:05.568+08:00","level":"stat","content":"(knowledge.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-06-24T15:50:20.317+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=9.0Mi, Sys=18.7Mi, NumGC=11"}
+{"@timestamp":"2022-06-24T15:50:20.351+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:51:05.569+08:00","level":"stat","content":"(knowledge.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-06-24T15:51:20.321+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=9.1Mi, Sys=18.7Mi, NumGC=12"}
+{"@timestamp":"2022-06-24T15:51:20.351+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:52:05.574+08:00","level":"stat","content":"(knowledge.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-06-24T15:52:20.316+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=9.2Mi, Sys=18.7Mi, NumGC=12"}
+{"@timestamp":"2022-06-24T15:52:20.362+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:53:05.573+08:00","level":"stat","content":"(knowledge.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-06-24T15:53:20.311+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=9.2Mi, Sys=18.7Mi, NumGC=13"}
+{"@timestamp":"2022-06-24T15:53:20.357+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:54:05.576+08:00","level":"stat","content":"(knowledge.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-06-24T15:54:20.317+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=9.3Mi, Sys=18.7Mi, NumGC=13"}
+{"@timestamp":"2022-06-24T15:54:20.355+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:55:05.571+08:00","level":"stat","content":"(knowledge.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-06-24T15:55:20.318+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=9.4Mi, Sys=18.7Mi, NumGC=14"}
+{"@timestamp":"2022-06-24T15:55:20.352+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:56:05.574+08:00","level":"stat","content":"(knowledge.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-06-24T15:56:20.312+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=9.5Mi, Sys=18.7Mi, NumGC=14"}
+{"@timestamp":"2022-06-24T15:56:20.351+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:57:05.566+08:00","level":"stat","content":"(knowledge.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-06-24T15:57:20.320+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=9.6Mi, Sys=18.7Mi, NumGC=15"}
+{"@timestamp":"2022-06-24T15:57:20.351+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:58:05.575+08:00","level":"stat","content":"(knowledge.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-06-24T15:58:20.322+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=9.7Mi, Sys=18.7Mi, NumGC=15"}
+{"@timestamp":"2022-06-24T15:58:20.353+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T15:59:05.578+08:00","level":"stat","content":"(knowledge.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-06-24T15:59:20.319+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=9.8Mi, Sys=18.7Mi, NumGC=16"}
+{"@timestamp":"2022-06-24T15:59:20.351+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:00:05.567+08:00","level":"stat","content":"(knowledge.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-06-24T16:00:20.324+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=9.9Mi, Sys=18.7Mi, NumGC=16"}
+{"@timestamp":"2022-06-24T16:00:20.356+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:01:05.578+08:00","level":"stat","content":"(knowledge.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-06-24T16:01:20.310+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=10.0Mi, Sys=18.7Mi, NumGC=17"}
+{"@timestamp":"2022-06-24T16:01:20.356+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:02:05.569+08:00","level":"stat","content":"(knowledge.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-06-24T16:02:20.323+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=10.1Mi, Sys=18.7Mi, NumGC=17"}
+{"@timestamp":"2022-06-24T16:02:20.354+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:03:05.570+08:00","level":"stat","content":"(knowledge.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-06-24T16:03:20.311+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=10.2Mi, Sys=18.7Mi, NumGC=18"}
+{"@timestamp":"2022-06-24T16:03:20.358+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:04:05.573+08:00","level":"stat","content":"(knowledge.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-06-24T16:04:20.320+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=10.3Mi, Sys=18.7Mi, NumGC=18"}
+{"@timestamp":"2022-06-24T16:04:20.351+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:05:05.577+08:00","level":"stat","content":"(knowledge.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-06-24T16:05:20.312+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=10.5Mi, Sys=18.7Mi, NumGC=19"}
+{"@timestamp":"2022-06-24T16:05:20.360+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:06:05.566+08:00","level":"stat","content":"(knowledge.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-06-24T16:06:20.317+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=10.5Mi, Sys=18.7Mi, NumGC=19"}
+{"@timestamp":"2022-06-24T16:06:20.352+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:07:05.566+08:00","level":"stat","content":"(knowledge.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-06-24T16:07:20.313+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=10.6Mi, Sys=18.7Mi, NumGC=20"}
+{"@timestamp":"2022-06-24T16:07:20.356+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:08:05.567+08:00","level":"stat","content":"(knowledge.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-06-24T16:08:20.315+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=10.7Mi, Sys=18.7Mi, NumGC=20"}
+{"@timestamp":"2022-06-24T16:08:20.361+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:09:05.577+08:00","level":"stat","content":"(knowledge.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-06-24T16:09:20.322+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=10.8Mi, Sys=18.7Mi, NumGC=21"}
+{"@timestamp":"2022-06-24T16:09:20.353+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:10:05.577+08:00","level":"stat","content":"(knowledge.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-06-24T16:10:20.319+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=10.9Mi, Sys=18.7Mi, NumGC=21"}
+{"@timestamp":"2022-06-24T16:10:20.351+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:11:05.571+08:00","level":"stat","content":"(knowledge.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-06-24T16:11:20.320+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=11.0Mi, Sys=18.7Mi, NumGC=22"}
+{"@timestamp":"2022-06-24T16:11:20.351+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:12:05.573+08:00","level":"stat","content":"(knowledge.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-06-24T16:12:20.321+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=11.1Mi, Sys=18.7Mi, NumGC=22"}
+{"@timestamp":"2022-06-24T16:12:20.353+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:13:05.570+08:00","level":"stat","content":"(knowledge.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-06-24T16:13:20.314+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=11.2Mi, Sys=18.7Mi, NumGC=23"}
+{"@timestamp":"2022-06-24T16:13:20.351+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:14:05.574+08:00","level":"stat","content":"(knowledge.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-06-24T16:14:20.319+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=11.3Mi, Sys=18.7Mi, NumGC=23"}
+{"@timestamp":"2022-06-24T16:14:20.366+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:15:05.565+08:00","level":"stat","content":"(knowledge.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-06-24T16:15:20.322+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=11.4Mi, Sys=18.7Mi, NumGC=24"}
+{"@timestamp":"2022-06-24T16:15:20.352+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:16:05.577+08:00","level":"stat","content":"(knowledge.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-06-24T16:16:20.313+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=11.5Mi, Sys=18.7Mi, NumGC=24"}
+{"@timestamp":"2022-06-24T16:16:20.355+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:17:05.580+08:00","level":"stat","content":"(knowledge.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-06-24T16:17:20.310+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=11.6Mi, Sys=18.7Mi, NumGC=25"}
+{"@timestamp":"2022-06-24T16:17:20.357+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:18:05.581+08:00","level":"stat","content":"(knowledge.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-06-24T16:18:20.312+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=11.7Mi, Sys=18.7Mi, NumGC=25"}
+{"@timestamp":"2022-06-24T16:18:20.357+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:19:05.573+08:00","level":"stat","content":"(knowledge.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-06-24T16:19:20.322+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=11.8Mi, Sys=18.7Mi, NumGC=26"}
+{"@timestamp":"2022-06-24T16:19:20.353+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:20:05.575+08:00","level":"stat","content":"(knowledge.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-06-24T16:20:20.316+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=11.9Mi, Sys=18.7Mi, NumGC=26"}
+{"@timestamp":"2022-06-24T16:20:20.362+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:21:05.568+08:00","level":"stat","content":"(knowledge.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-06-24T16:21:20.318+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=11.9Mi, Sys=18.7Mi, NumGC=27"}
+{"@timestamp":"2022-06-24T16:21:20.356+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:22:05.579+08:00","level":"stat","content":"(knowledge.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-06-24T16:22:20.312+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=12.0Mi, Sys=18.7Mi, NumGC=27"}
+{"@timestamp":"2022-06-24T16:22:20.356+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:23:05.577+08:00","level":"stat","content":"(knowledge.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-06-24T16:23:20.322+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=12.1Mi, Sys=18.7Mi, NumGC=28"}
+{"@timestamp":"2022-06-24T16:23:20.353+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:24:05.568+08:00","level":"stat","content":"(knowledge.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-06-24T16:24:20.320+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=12.2Mi, Sys=18.7Mi, NumGC=28"}
+{"@timestamp":"2022-06-24T16:24:20.351+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:25:05.566+08:00","level":"stat","content":"(knowledge.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-06-24T16:25:20.315+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=12.4Mi, Sys=18.7Mi, NumGC=29"}
+{"@timestamp":"2022-06-24T16:25:20.351+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:26:05.575+08:00","level":"stat","content":"(knowledge.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-06-24T16:26:20.312+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=12.4Mi, Sys=18.7Mi, NumGC=29"}
+{"@timestamp":"2022-06-24T16:26:20.359+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:27:05.571+08:00","level":"stat","content":"(knowledge.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-06-24T16:27:20.310+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=12.5Mi, Sys=18.7Mi, NumGC=30"}
+{"@timestamp":"2022-06-24T16:27:20.356+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:28:05.574+08:00","level":"stat","content":"(knowledge.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-06-24T16:28:20.323+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=12.6Mi, Sys=18.7Mi, NumGC=30"}
+{"@timestamp":"2022-06-24T16:28:20.353+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:29:05.574+08:00","level":"stat","content":"(knowledge.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-06-24T16:29:20.321+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=12.7Mi, Sys=18.7Mi, NumGC=31"}
+{"@timestamp":"2022-06-24T16:29:20.352+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:30:05.568+08:00","level":"stat","content":"(knowledge.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-06-24T16:30:20.311+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=12.9Mi, Sys=18.7Mi, NumGC=31"}
+{"@timestamp":"2022-06-24T16:30:20.351+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:31:05.575+08:00","level":"stat","content":"(knowledge.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-06-24T16:31:20.323+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=12.9Mi, Sys=18.7Mi, NumGC=32"}
+{"@timestamp":"2022-06-24T16:31:20.353+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:32:05.576+08:00","level":"stat","content":"(knowledge.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-06-24T16:32:20.323+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=13.1Mi, Sys=18.7Mi, NumGC=32"}
+{"@timestamp":"2022-06-24T16:32:20.353+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:33:05.577+08:00","level":"stat","content":"(knowledge.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-06-24T16:33:20.314+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=13.2Mi, Sys=18.7Mi, NumGC=33"}
+{"@timestamp":"2022-06-24T16:33:20.352+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:34:05.571+08:00","level":"stat","content":"(knowledge.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-06-24T16:34:20.314+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=13.2Mi, Sys=18.7Mi, NumGC=33"}
+{"@timestamp":"2022-06-24T16:34:20.361+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:35:05.576+08:00","level":"stat","content":"(knowledge.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-06-24T16:35:20.322+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=13.3Mi, Sys=18.7Mi, NumGC=34"}
+{"@timestamp":"2022-06-24T16:35:20.354+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:36:05.577+08:00","level":"stat","content":"(knowledge.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-06-24T16:36:20.310+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=13.4Mi, Sys=18.7Mi, NumGC=34"}
+{"@timestamp":"2022-06-24T16:36:20.356+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:37:05.566+08:00","level":"stat","content":"(knowledge.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-06-24T16:37:20.312+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=13.5Mi, Sys=18.7Mi, NumGC=35"}
+{"@timestamp":"2022-06-24T16:37:20.351+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:38:05.576+08:00","level":"stat","content":"(knowledge.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-06-24T16:38:20.313+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=13.6Mi, Sys=18.7Mi, NumGC=35"}
+{"@timestamp":"2022-06-24T16:38:20.352+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:39:05.571+08:00","level":"stat","content":"(knowledge.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-06-24T16:39:20.322+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=13.7Mi, Sys=18.7Mi, NumGC=36"}
+{"@timestamp":"2022-06-24T16:39:20.353+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:40:05.571+08:00","level":"stat","content":"(knowledge.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-06-24T16:40:20.316+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=13.8Mi, Sys=18.7Mi, NumGC=36"}
+{"@timestamp":"2022-06-24T16:40:20.351+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:41:05.580+08:00","level":"stat","content":"(knowledge.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-06-24T16:41:20.314+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=13.9Mi, Sys=18.7Mi, NumGC=37"}
+{"@timestamp":"2022-06-24T16:41:20.358+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:42:05.573+08:00","level":"stat","content":"(knowledge.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-06-24T16:42:20.320+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=14.0Mi, Sys=18.7Mi, NumGC=37"}
+{"@timestamp":"2022-06-24T16:42:20.351+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:43:05.570+08:00","level":"stat","content":"(knowledge.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-06-24T16:43:20.324+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=14.1Mi, Sys=18.7Mi, NumGC=38"}
+{"@timestamp":"2022-06-24T16:43:20.356+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:44:05.571+08:00","level":"stat","content":"(knowledge.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-06-24T16:44:20.318+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=14.2Mi, Sys=18.7Mi, NumGC=38"}
+{"@timestamp":"2022-06-24T16:44:20.365+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:45:05.571+08:00","level":"stat","content":"(knowledge.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-06-24T16:45:20.323+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=14.3Mi, Sys=18.7Mi, NumGC=39"}
+{"@timestamp":"2022-06-24T16:45:20.353+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:46:05.570+08:00","level":"stat","content":"(knowledge.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-06-24T16:46:20.314+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.8Mi, TotalAlloc=14.5Mi, Sys=18.7Mi, NumGC=39"}
+{"@timestamp":"2022-06-24T16:46:20.353+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:47:05.581+08:00","level":"stat","content":"(knowledge.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-06-24T16:47:20.318+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=14.6Mi, Sys=18.7Mi, NumGC=40"}
+{"@timestamp":"2022-06-24T16:47:20.353+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:48:05.577+08:00","level":"stat","content":"(knowledge.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-06-24T16:48:20.313+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=14.7Mi, Sys=18.7Mi, NumGC=40"}
+{"@timestamp":"2022-06-24T16:48:20.359+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:49:05.569+08:00","level":"stat","content":"(knowledge.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-06-24T16:49:20.323+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=14.8Mi, Sys=18.7Mi, NumGC=41"}
+{"@timestamp":"2022-06-24T16:49:20.353+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:50:05.567+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 54.0ms, med: 54.2ms, 90th: 54.2ms, 99th: 54.2ms, 99.9th: 54.2ms"}
+{"@timestamp":"2022-06-24T16:50:20.311+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.8Mi, TotalAlloc=15.0Mi, Sys=18.7Mi, NumGC=41"}
+{"@timestamp":"2022-06-24T16:50:20.357+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-24T16:51:05.570+08:00","level":"stat","content":"(knowledge.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-06-24T16:51:20.310+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=15.1Mi, Sys=18.7Mi, NumGC=42"}
+{"@timestamp":"2022-06-24T16:51:20.357+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:52:05.575+08:00","level":"stat","content":"(knowledge.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-06-24T16:52:20.313+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.8Mi, TotalAlloc=15.2Mi, Sys=18.7Mi, NumGC=42"}
+{"@timestamp":"2022-06-24T16:52:20.358+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:53:05.569+08:00","level":"stat","content":"(knowledge.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-06-24T16:53:20.325+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=15.2Mi, Sys=18.7Mi, NumGC=43"}
+{"@timestamp":"2022-06-24T16:53:20.356+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:54:05.581+08:00","level":"stat","content":"(knowledge.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-06-24T16:54:20.317+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.8Mi, TotalAlloc=15.4Mi, Sys=18.7Mi, NumGC=43"}
+{"@timestamp":"2022-06-24T16:54:20.355+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:55:05.572+08:00","level":"stat","content":"(knowledge.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-06-24T16:55:20.324+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=15.4Mi, Sys=18.7Mi, NumGC=44"}
+{"@timestamp":"2022-06-24T16:55:20.355+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:56:05.580+08:00","level":"stat","content":"(knowledge.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-06-24T16:56:20.316+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.8Mi, TotalAlloc=15.6Mi, Sys=18.7Mi, NumGC=44"}
+{"@timestamp":"2022-06-24T16:56:20.362+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:57:05.576+08:00","level":"stat","content":"(knowledge.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-06-24T16:57:20.322+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=15.7Mi, Sys=18.7Mi, NumGC=45"}
+{"@timestamp":"2022-06-24T16:57:20.353+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:58:05.577+08:00","level":"stat","content":"(knowledge.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-06-24T16:58:20.312+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.8Mi, TotalAlloc=15.8Mi, Sys=18.7Mi, NumGC=45"}
+{"@timestamp":"2022-06-24T16:58:20.358+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T16:59:46.981+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.0Mi, Sys=14.3Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T16:59:47.013+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:00:46.992+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=7.2Mi, Sys=14.5Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T17:00:47.007+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:01:46.978+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.3Mi, Sys=14.5Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T17:01:47.009+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:02:46.979+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=7.4Mi, Sys=14.5Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T17:02:47.010+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:03:46.982+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.5Mi, TotalAlloc=7.6Mi, Sys=14.5Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T17:03:47.012+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:05:11.597+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.1Mi, Sys=14.3Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T17:05:11.968+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-24T17:05:15.527+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 5.0ms, med: 6.0ms, 90th: 6.0ms, 99th: 6.0ms, 99.9th: 6.0ms"}
+{"@timestamp":"2022-06-24T17:06:11.592+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.8Mi, TotalAlloc=7.3Mi, Sys=14.3Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T17:06:11.964+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:06:15.523+08:00","level":"stat","content":"(knowledge.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-06-24T17:07:11.593+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.3Mi, Sys=14.3Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T17:07:11.966+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:07:15.516+08:00","level":"stat","content":"(knowledge.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-06-24T17:08:11.590+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=7.4Mi, Sys=14.3Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T17:08:11.964+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-24T17:08:15.519+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 15.0ms, med: 15.9ms, 90th: 15.9ms, 99th: 15.9ms, 99.9th: 15.9ms"}
+{"@timestamp":"2022-06-24T17:09:11.596+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.5Mi, Sys=14.3Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T17:09:11.963+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:09:15.526+08:00","level":"stat","content":"(knowledge.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-06-24T17:10:11.596+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=7.6Mi, Sys=14.3Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T17:10:11.972+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:10:15.524+08:00","level":"stat","content":"(knowledge.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-06-24T17:11:11.600+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.7Mi, Sys=14.3Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T17:11:11.973+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:11:15.513+08:00","level":"stat","content":"(knowledge.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-06-24T17:12:11.598+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=7.8Mi, Sys=14.3Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T17:12:11.970+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:12:15.524+08:00","level":"stat","content":"(knowledge.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-06-24T17:13:11.591+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.8Mi, Sys=14.3Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T17:13:11.963+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:13:15.518+08:00","level":"stat","content":"(knowledge.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-06-24T17:14:11.600+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=7.9Mi, Sys=14.3Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T17:14:11.974+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:14:15.514+08:00","level":"stat","content":"(knowledge.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-06-24T17:15:11.597+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=8.0Mi, Sys=14.3Mi, NumGC=8"}
+{"@timestamp":"2022-06-24T17:15:11.970+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:15:15.525+08:00","level":"stat","content":"(knowledge.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-06-24T17:16:11.588+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=8.1Mi, Sys=14.3Mi, NumGC=8"}
+{"@timestamp":"2022-06-24T17:16:11.964+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:16:15.521+08:00","level":"stat","content":"(knowledge.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-06-24T17:17:11.595+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=8.1Mi, Sys=14.3Mi, NumGC=9"}
+{"@timestamp":"2022-06-24T17:17:11.968+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:17:15.515+08:00","level":"stat","content":"(knowledge.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-06-24T17:18:11.592+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=8.2Mi, Sys=14.3Mi, NumGC=9"}
+{"@timestamp":"2022-06-24T17:18:11.963+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:18:15.518+08:00","level":"stat","content":"(knowledge.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-06-24T17:19:11.590+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=8.3Mi, Sys=14.3Mi, NumGC=10"}
+{"@timestamp":"2022-06-24T17:19:11.962+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:19:15.527+08:00","level":"stat","content":"(knowledge.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-06-24T17:20:11.600+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=8.4Mi, Sys=14.3Mi, NumGC=10"}
+{"@timestamp":"2022-06-24T17:20:11.974+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:20:15.523+08:00","level":"stat","content":"(knowledge.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-06-24T17:21:11.600+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=8.5Mi, Sys=14.3Mi, NumGC=11"}
+{"@timestamp":"2022-06-24T17:21:11.973+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-24T17:21:15.516+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 13.0ms, med: 13.8ms, 90th: 13.8ms, 99th: 13.8ms, 99.9th: 13.8ms"}
+{"@timestamp":"2022-06-24T17:22:11.589+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=8.5Mi, Sys=14.3Mi, NumGC=11"}
+{"@timestamp":"2022-06-24T17:22:11.974+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:22:15.525+08:00","level":"stat","content":"(knowledge.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-06-24T17:23:11.594+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=8.6Mi, Sys=14.3Mi, NumGC=12"}
+{"@timestamp":"2022-06-24T17:23:11.966+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:23:15.519+08:00","level":"stat","content":"(knowledge.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-06-24T17:24:11.601+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=8.7Mi, Sys=14.3Mi, NumGC=12"}
+{"@timestamp":"2022-06-24T17:24:11.975+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:24:15.528+08:00","level":"stat","content":"(knowledge.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-06-24T17:25:11.602+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=8.8Mi, Sys=14.3Mi, NumGC=13"}
+{"@timestamp":"2022-06-24T17:25:11.975+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:25:15.514+08:00","level":"stat","content":"(knowledge.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-06-24T17:26:11.600+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=8.8Mi, Sys=14.3Mi, NumGC=13"}
+{"@timestamp":"2022-06-24T17:26:11.971+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:26:15.519+08:00","level":"stat","content":"(knowledge.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-06-24T17:27:21.492+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.8Mi, TotalAlloc=7.2Mi, Sys=14.5Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T17:27:21.523+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-24T17:27:36.393+08:00","level":"stat","content":"(knowledge.rpc) - qps: 0.0/s, drops: 0, avg time: 192.0ms, med: 216.4ms, 90th: 216.4ms, 99th: 216.4ms, 99.9th: 216.4ms"}
+{"@timestamp":"2022-06-24T17:28:21.496+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=4.2Mi, TotalAlloc=7.6Mi, Sys=14.5Mi, NumGC=3"}
+{"@timestamp":"2022-06-24T17:28:21.515+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0"}
+{"@timestamp":"2022-06-24T17:28:36.394+08:00","level":"stat","content":"(knowledge.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-06-24T17:29:21.494+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=7.7Mi, Sys=14.8Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T17:29:21.512+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:29:36.401+08:00","level":"stat","content":"(knowledge.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-06-24T17:30:21.483+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.8Mi, TotalAlloc=7.8Mi, Sys=14.8Mi, NumGC=4"}
+{"@timestamp":"2022-06-24T17:30:21.514+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:30:36.401+08:00","level":"stat","content":"(knowledge.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-06-24T17:31:21.492+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=7.9Mi, Sys=14.8Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T17:31:21.524+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:31:36.389+08:00","level":"stat","content":"(knowledge.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-06-24T17:32:21.496+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=8.0Mi, Sys=14.8Mi, NumGC=5"}
+{"@timestamp":"2022-06-24T17:32:21.512+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:32:36.397+08:00","level":"stat","content":"(knowledge.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-06-24T17:33:21.494+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=8.1Mi, Sys=14.8Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T17:33:21.514+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:33:36.392+08:00","level":"stat","content":"(knowledge.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-06-24T17:34:21.485+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=8.2Mi, Sys=14.8Mi, NumGC=6"}
+{"@timestamp":"2022-06-24T17:34:21.516+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:34:36.396+08:00","level":"stat","content":"(knowledge.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-06-24T17:35:21.490+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=8.3Mi, Sys=14.8Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T17:35:21.521+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:35:36.388+08:00","level":"stat","content":"(knowledge.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-06-24T17:36:21.494+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=8.4Mi, Sys=14.8Mi, NumGC=7"}
+{"@timestamp":"2022-06-24T17:36:21.514+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:36:36.399+08:00","level":"stat","content":"(knowledge.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-06-24T17:37:21.499+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=8.5Mi, Sys=14.8Mi, NumGC=8"}
+{"@timestamp":"2022-06-24T17:37:21.514+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:37:36.398+08:00","level":"stat","content":"(knowledge.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-06-24T17:38:21.486+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=8.6Mi, Sys=14.8Mi, NumGC=8"}
+{"@timestamp":"2022-06-24T17:38:21.516+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:38:36.399+08:00","level":"stat","content":"(knowledge.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-06-24T17:39:21.483+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=8.7Mi, Sys=14.8Mi, NumGC=9"}
+{"@timestamp":"2022-06-24T17:39:21.514+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:39:36.396+08:00","level":"stat","content":"(knowledge.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-06-24T17:40:21.490+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.7Mi, TotalAlloc=8.8Mi, Sys=14.8Mi, NumGC=9"}
+{"@timestamp":"2022-06-24T17:40:21.521+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}
+{"@timestamp":"2022-06-24T17:40:36.399+08:00","level":"stat","content":"(knowledge.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-06-24T17:41:21.491+08:00","level":"stat","content":"CPU: 0m, MEMORY: Alloc=3.6Mi, TotalAlloc=8.9Mi, Sys=14.8Mi, NumGC=10"}
+{"@timestamp":"2022-06-24T17:41:21.522+08:00","level":"stat","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0"}

+ 13 - 0
rpc/knowledge/test/knowledge_test.go

@@ -78,3 +78,16 @@ func Test_KnowledgeDel(t *testing.T) {
 	log.Println("res ", res)
 	log.Println("err ", err)
 }
+
+func Test_FindAnswer(t *testing.T) {
+	ctx, _ := context.WithTimeout(context.Background(), 10*time.Second)
+	TestSystem := knowledgeclient.NewKnowledge(zrpc.MustNewClient(c.TestConf))
+	req := &knowledgeclient.FindAnswerReq{}
+	req.Question = "超级订阅用户权益有订阅设置"
+	req.TenantId = 1
+	req.Type = 1
+	req.AppId = "10000"
+	res, err := TestSystem.FindAnswer(ctx, req)
+	log.Println("res ", res)
+	log.Println("err ", err)
+}

+ 3 - 3
rpc/knowledge/util/elasticsearch_dsl.go

@@ -42,7 +42,7 @@ func DSL4SearchByKwsAndTags(kws string, tags ...string) string {
 
 func DSL4SmartResponse(question string, tenantId int64, msgType int) string {
 	var (
-		totalQuery = `{"post_filter":{%s},"query":{%s},"_source":["_id"%s],"size":%d}`
+		totalQuery = `{"post_filter":{%s},"query":{%s},"_source":[%s],"size":%d}`
 		postFilter = `"script":{"script":"def sk=_source.must_keywords;def n=0;for(item in sk){ n++;if(que.indexOf(item)>-1){return true}};if(n==0){ return true}","params":{"que":"%s"}}`
 		query      = `"bool":{"must_not":[%s],"must":[{"match":{"%s":{"query":"%s","minimum_should_match":"%s"}}},{"terms":{"tenantId":"%s"}}]}`
 	)
@@ -68,12 +68,12 @@ func DSL4SmartResponse(question string, tenantId int64, msgType int) string {
 		}
 		/*2使用sik分词将问题分词以获取更多查询词语*/
 		//mustque := ElasticSmartIK(question, "http://39.106.145.77:9201/smart/_analyze")
-		mustque := ElasticSmartIK(question, Analyze)
+		mustque := ElasticSmartIK(question, C.Es.Addr+"/"+C.Es.Index+"/_analyze")
 		if mustque != "" {
 			postFilter = fmt.Sprintf(postFilter, mustque)
 		}
 		query = fmt.Sprintf(query, "", typeStr, question, queryPercent, strconv.Itoa(int(tenantId)))
-		queryDSL := fmt.Sprintf(totalQuery, postFilter, query, `,"answer","question","_id"`, 1)
+		queryDSL := fmt.Sprintf(totalQuery, postFilter, query, `"answer","question"`, 1)
 		log.Println("queryDSL:", queryDSL)
 		return queryDSL
 	}

+ 1 - 0
rpc/knowledge/util/hanlp.go

@@ -103,6 +103,7 @@ func ElasticSmartIK(words, urls string) (res string) {
 				log.Println("ElasticSmartIK json解码 error:", err)
 			}
 			if resmap != nil {
+				log.Println("ik分词结果:", resmap)
 				tokens := cm.ObjArrToMapArr(resmap["tokens"].([]interface{}))
 				for _, v := range tokens {
 					res += v["token"].(string)

部分文件因为文件数量过多而无法显示