Browse Source

feat:营销活动

zhangxinlei1996 3 years ago
parent
commit
28afdbcc77

BIN
api/api


BIN
api/api.exe


+ 2 - 2
api/etc/marketing.yaml

@@ -12,8 +12,8 @@ GatewayRpcConf:
       - 192.168.3.206:2379
     Key: gatewayDemo.rpc
 Logx:
-  Mode: console #console|file|volume
-  Path: logs
+  Mode: file #console|file|volume
+  Path: ./logs
   Level: info #info|error|severe
   KeepDays: 100
 Timeout:  5000

+ 28 - 0
api/internal/handler/activityinfohandler.go

@@ -0,0 +1,28 @@
+package handler
+
+import (
+	"net/http"
+
+	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/api/internal/logic"
+	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/api/internal/svc"
+	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/api/internal/types"
+	"github.com/zeromicro/go-zero/rest/httpx"
+)
+
+func ActivityInfoHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
+	return func(w http.ResponseWriter, r *http.Request) {
+		var req types.AppointmentAddReq
+		if err := httpx.Parse(r, &req); err != nil {
+			httpx.Error(w, err)
+			return
+		}
+
+		l := logic.NewActivityInfoLogic(r.Context(), svcCtx)
+		resp, err := l.ActivityInfo(&req)
+		if err != nil {
+			httpx.Error(w, err)
+		} else {
+			httpx.OkJson(w, resp)
+		}
+	}
+}

+ 28 - 0
api/internal/handler/isappointmenthandler.go

@@ -0,0 +1,28 @@
+package handler
+
+import (
+	"net/http"
+
+	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/api/internal/logic"
+	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/api/internal/svc"
+	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/api/internal/types"
+	"github.com/zeromicro/go-zero/rest/httpx"
+)
+
+func IsAppointmentHandler(svcCtx *svc.ServiceContext) http.HandlerFunc {
+	return func(w http.ResponseWriter, r *http.Request) {
+		var req types.IsAppointmentReq
+		if err := httpx.Parse(r, &req); err != nil {
+			httpx.Error(w, err)
+			return
+		}
+
+		l := logic.NewIsAppointmentLogic(r.Context(), svcCtx)
+		resp, err := l.IsAppointment(&req)
+		if err != nil {
+			httpx.Error(w, err)
+		} else {
+			httpx.OkJson(w, resp)
+		}
+	}
+}

+ 10 - 0
api/internal/handler/routes.go

@@ -22,6 +22,16 @@ func RegisterHandlers(server *rest.Server, serverCtx *svc.ServiceContext) {
 				Path:    "/marketing/appointment/add",
 				Handler: AppointmentAddHandler(serverCtx),
 			},
+			{
+				Method:  http.MethodPost,
+				Path:    "/marketing/appointment/isAppointment",
+				Handler: IsAppointmentHandler(serverCtx),
+			},
+			{
+				Method:  http.MethodPost,
+				Path:    "/marketing/activity/activityInfo",
+				Handler: ActivityInfoHandler(serverCtx),
+			},
 		},
 	)
 }

+ 63 - 0
api/internal/logic/activityinfologic.go

@@ -0,0 +1,63 @@
+package logic
+
+import (
+	"context"
+	"fmt"
+
+	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/api/internal/svc"
+	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/api/internal/types"
+	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/public/service"
+	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/rpc/pb"
+	"github.com/zeromicro/go-zero/core/logx"
+)
+
+type ActivityInfoLogic struct {
+	logx.Logger
+	ctx    context.Context
+	svcCtx *svc.ServiceContext
+}
+
+func NewActivityInfoLogic(ctx context.Context, svcCtx *svc.ServiceContext) *ActivityInfoLogic {
+	return &ActivityInfoLogic{
+		Logger: logx.WithContext(ctx),
+		ctx:    ctx,
+		svcCtx: svcCtx,
+	}
+}
+
+func (l *ActivityInfoLogic) ActivityInfo(req *types.AppointmentAddReq) (resp *types.Reply, err error) {
+	// todo: add your logic here and delete this line
+	resp = &types.Reply{}
+	marketingResp, err := service.MarketingRpc.AppointmentInfo(l.ctx, &pb.AppointmentInfoReq{
+		AppId:          req.AppId,
+		UserId:         req.UserId,
+		ProductId:      req.ProductId,
+		UseProductType: req.UseProductType,
+	})
+	if err != nil {
+		l.Error(fmt.Sprintf("%+v", req), resp.Error_msg)
+		resp.Data = map[string]interface{}{
+			"status": -1,
+		}
+		resp.Error_code, resp.Error_msg = -1, "预约失败"
+	}
+
+	if marketingResp.ErrorMsg != "" {
+		resp.Error_msg = marketingResp.ErrorMsg
+		resp.Error_code = -1
+		resp.Data = nil
+		l.Error(fmt.Sprintf("%+v", req), resp.Error_msg)
+	} else {
+		resp.Data = map[string]interface{}{
+			"activityName":  marketingResp.ActivityName,
+			"activityId":    marketingResp.ActivityId,
+			"activityType":  marketingResp.ActivityType,
+			"startTime":     marketingResp.StartTime,
+			"endTime":       marketingResp.EndTime,
+			"preStartTime":  marketingResp.PreheatStartTime,
+			"stockNumber":   marketingResp.StockNumber,
+			"isAppointment": marketingResp.PreheatStatus,
+		}
+	}
+	return
+}

+ 9 - 8
api/internal/logic/appointmentaddlogic.go

@@ -41,14 +41,15 @@ func (l *AppointmentAddLogic) AppointmentAdd(req *types.AppointmentAddReq) (resp
 		}
 		resp.Error_code, resp.Error_msg = -1, "预约失败"
 	}
-
-	if marketingResp.ErrorMsg != "" {
-		resp.Error_msg = marketingResp.ErrorMsg
-		resp.Error_code = -1
-		l.Error(fmt.Sprintf("%+v", req), resp.Error_msg)
-	}
-	resp.Data = map[string]interface{}{
-		"status": marketingResp.Status,
+	if marketingResp == nil {
+		if marketingResp.ErrorMsg != "" {
+			resp.Error_msg = marketingResp.ErrorMsg
+			resp.Error_code = -1
+			l.Error(fmt.Sprintf("%+v", req), resp.Error_msg)
+		}
+		resp.Data = map[string]interface{}{
+			"status": marketingResp.Status,
+		}
 	}
 	return
 }

+ 52 - 0
api/internal/logic/isappointmentlogic.go

@@ -0,0 +1,52 @@
+package logic
+
+import (
+	"context"
+	"fmt"
+
+	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/api/internal/svc"
+	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/api/internal/types"
+	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/public/service"
+	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/rpc/pb"
+	"github.com/zeromicro/go-zero/core/logx"
+)
+
+type IsAppointmentLogic struct {
+	logx.Logger
+	ctx    context.Context
+	svcCtx *svc.ServiceContext
+}
+
+func NewIsAppointmentLogic(ctx context.Context, svcCtx *svc.ServiceContext) *IsAppointmentLogic {
+	return &IsAppointmentLogic{
+		Logger: logx.WithContext(ctx),
+		ctx:    ctx,
+		svcCtx: svcCtx,
+	}
+}
+
+func (l *IsAppointmentLogic) IsAppointment(req *types.IsAppointmentReq) (resp *types.Reply, err error) {
+	// todo: add your logic here and delete this line
+	resp = &types.Reply{}
+	marketingResp, err := service.MarketingRpc.IsAppointment(l.ctx, &pb.IsAppointmentReq{
+		AppId:      req.AppId,
+		UserId:     req.UserId,
+		ActivityId: req.ActivityId,
+	})
+	if err != nil {
+		l.Error(fmt.Sprintf("%+v", req), resp.Error_msg)
+		resp.Data = map[string]interface{}{
+			"status": -1,
+		}
+	}
+
+	if marketingResp.ErrorMsg != "" {
+		resp.Error_msg = marketingResp.ErrorMsg
+		resp.Error_code = -1
+		l.Error(fmt.Sprintf("%+v", req), resp.Error_msg)
+	}
+	resp.Data = map[string]interface{}{
+		"status": marketingResp.Status,
+	}
+	return
+}

+ 6 - 0
api/internal/types/types.go

@@ -17,3 +17,9 @@ type AppointmentAddReq struct {
 	ProductId      int64  `json:"productId"`
 	UseProductType int64  `json:"useProductType"` //商品类型0普通的1线上课程
 }
+
+type IsAppointmentReq struct {
+	AppId      string `header:"appId,default=10000"`
+	UserId     string `header:"userId"`
+	ActivityId int64  `json:"activityId"`
+}

+ 13 - 0
api/marketing.api

@@ -17,6 +17,12 @@ type (
 		ProductId      int64  `json:"productId"`
 		UseProductType int64  `json:"useProductType"` //商品类型0普通的1线上课程
 	}
+
+	IsAppointmentReq {
+		AppId      string `header:"appId,default=10000"`
+		UserId     string `header:"userId"`
+		ActivityId int64  `json:"activityId"`
+	}
 )
 
 service marketing {
@@ -26,4 +32,11 @@ service marketing {
 	@doc "预约"
 	@handler AppointmentAdd
 	post /marketing/appointment/add (AppointmentAddReq) returns (Reply)
+	@doc "是否预约成功"
+	@handler IsAppointment
+	post /marketing/appointment/isAppointment (IsAppointmentReq) returns (Reply)
+	@doc "活动信息"
+	@handler ActivityInfo
+	post /marketing/activity/activityInfo (AppointmentAddReq) returns (Reply)
+	
 }

+ 2 - 2
go.mod

@@ -3,8 +3,8 @@ module bp.jydev.jianyu360.cn/ApplicationCenter/marketing
 go 1.16
 
 require (
-	app.yhyue.com/moapp/jyMarketing v0.0.2-0.20220728063932-565c1f231ab2
-	app.yhyue.com/moapp/jybase v0.0.0-20220722023023-2a57d1ee061f
+	app.yhyue.com/moapp/jyMarketing v0.0.2-0.20220802090513-c1879daab572
+	app.yhyue.com/moapp/jybase v0.0.0-20220728032218-f25d53ea0f23
 	bp.jydev.jianyu360.cn/BaseService/gateway v1.3.4
 	github.com/zeromicro/go-zero v1.3.5
 	google.golang.org/grpc v1.48.0

+ 4 - 4
go.sum

@@ -1,12 +1,12 @@
 app.yhyue.com/moapp/esv1 v0.0.0-20220414031211-3da4123e648d/go.mod h1:91/lSD/hS+ckMVP3WdidRzDhC60lLMdyce9QHy0cSMA=
-app.yhyue.com/moapp/jyMarketing v0.0.2-0.20220728063932-565c1f231ab2 h1:lmZyQVTMEbzwVXEvG/ptSrU2NZmdDK5X4u6wWFVHe6A=
-app.yhyue.com/moapp/jyMarketing v0.0.2-0.20220728063932-565c1f231ab2/go.mod h1:nr44wbXYdSRX+WCrzF2QcCygFEmZQjzVdID/Cs9HlTg=
+app.yhyue.com/moapp/jyMarketing v0.0.2-0.20220802090513-c1879daab572 h1:7PhN8pzMIJteB0Hf1ldU+rEpRw2Ae4S/xGdQJlq3b3Q=
+app.yhyue.com/moapp/jyMarketing v0.0.2-0.20220802090513-c1879daab572/go.mod h1:Eq9V9GQhPRdciIGeZn5wtKg3eaaZJSfEpzOSNXdD6q0=
 app.yhyue.com/moapp/jybase v0.0.0-20220415064050-37ce64b3e2d4/go.mod h1:qNRA0sHuYqcLoYoP8irpaWnW9YsXixe6obBIkwaXpD0=
 app.yhyue.com/moapp/jybase v0.0.0-20220418104200-46c3fff161c7/go.mod h1:qNRA0sHuYqcLoYoP8irpaWnW9YsXixe6obBIkwaXpD0=
 app.yhyue.com/moapp/jybase v0.0.0-20220420032112-668025915ee4/go.mod h1:qNRA0sHuYqcLoYoP8irpaWnW9YsXixe6obBIkwaXpD0=
 app.yhyue.com/moapp/jybase v0.0.0-20220421060131-a1001013ba46/go.mod h1:qNRA0sHuYqcLoYoP8irpaWnW9YsXixe6obBIkwaXpD0=
-app.yhyue.com/moapp/jybase v0.0.0-20220722023023-2a57d1ee061f h1:qKFSoL8wbWSS4f6bm6vQyJGf+LC2T7G5hjGwrVmFzE8=
-app.yhyue.com/moapp/jybase v0.0.0-20220722023023-2a57d1ee061f/go.mod h1:HelrO6tcD9TcKb/HOP2BLbzppyDz2kpQSFhPMQTUgbQ=
+app.yhyue.com/moapp/jybase v0.0.0-20220728032218-f25d53ea0f23 h1:5B9rMX+IIjpnJ4f6JtIRZq7aSxFVaMQXN22iIYGOh1E=
+app.yhyue.com/moapp/jybase v0.0.0-20220728032218-f25d53ea0f23/go.mod h1:HelrO6tcD9TcKb/HOP2BLbzppyDz2kpQSFhPMQTUgbQ=
 bp.jydev.jianyu360.cn/BP/jynsq v0.0.0-20220222052708-ebc43af90698/go.mod h1:ojo/AUH9Yr1wzarEjOaNMkj1Cet/9r8IgLyba64Z52E=
 bp.jydev.jianyu360.cn/BaseService/gateway v0.0.0-20220419090715-88ddb32961be/go.mod h1:Yj4oabIGItuMoF0BXYLz2XAnF581kxgXBrvlUtIJrkI=
 bp.jydev.jianyu360.cn/BaseService/gateway v1.3.4 h1:zl5eZrKDBENVVBUiPpzyQQ0/SBdGUmZS3thXycSEO1g=

+ 59 - 1
public/entity/appointment.go

@@ -4,6 +4,7 @@ import (
 	"context"
 	"errors"
 	"fmt"
+	"net/url"
 	"strconv"
 	"time"
 
@@ -11,6 +12,8 @@ import (
 
 	"app.yhyue.com/moapp/jybase/date"
 	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/public/db"
+	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/public/rpc"
+	. "bp.jydev.jianyu360.cn/ApplicationCenter/marketing/rpc/init"
 	"github.com/zeromicro/go-zero/core/logx"
 )
 
@@ -43,7 +46,7 @@ func (this *AppointmentStruct) Add() (int64, error) {
 		UserId:         this.UserId,
 	}
 	logx.Info("add :give info :", req)
-	resp, err := JyMarketingLib.GiveInfo(context.Background(), req)
+	resp, err := rpc.JyMarketingLib.GiveInfo(context.Background(), req)
 	logx.Info(err, resp)
 	if err != nil || resp.Code != 1 {
 		return -1, errors.New("获取活动信息失败,预约失败。")
@@ -88,6 +91,13 @@ func (this *AppointmentStruct) Add() (int64, error) {
 		"appLandingPage": appLandingPage,
 		"isPush":         0,
 	}); id > 0 {
+		//站内信
+		starttime := url.QueryEscape(time.Unix(activityTime, 0).Format(date.Date_Full_Layout))
+
+		Push(Pushcfg.StationMailHref, Pushcfg.StationMailAction,
+			this.UserId, fmt.Sprintf(Pushcfg.ContentAppointment, activityName, starttime),
+			pcLandingPage, appLandingPage, wxLandingPage)
+
 		return 1, nil
 	}
 
@@ -104,3 +114,51 @@ func (this *AppointmentStruct) IsAppointment() (int64, error) {
 	}
 	return 0, nil
 }
+
+type ActivityInfo struct {
+	ActivityName  string
+	ActivityId    int64
+	ActivityType  int64
+	StartTime     int64
+	EndTime       int64
+	PreStartTime  int64
+	StockNumber   int64
+	IsAppointment int64
+}
+
+//预约信息
+func (this *AppointmentStruct) Info() (*ActivityInfo, error) {
+	if this.Appid == "" || this.UserId == "" {
+		return nil, errors.New("缺失参数,请检查必要参数")
+	}
+	req := &activity.Request{
+		AppId:          this.Appid,
+		ProductCode:    strconv.Itoa(int(this.ProductId)),
+		UseProductType: this.UseProductType,
+		UserId:         this.UserId,
+	}
+	logx.Info("giveActivity info req:", req)
+	resp, err := rpc.JyMarketingLib.GiveActivity(context.Background(), req)
+	logx.Info("giveActivity info resp:", resp)
+	if err != nil || resp.Code != 1 {
+		return nil, errors.New("获取活动信息失败,预约失败。")
+	}
+	if resp.Data == nil {
+		return nil, errors.New("暂无活动")
+	}
+	this.ActivityId = resp.Data.ActivityId
+	isAppointment, _ := this.IsAppointment()
+	activityType, _ := strconv.Atoi(resp.Data.ActivityType)
+	starttime, _ := time.ParseInLocation(date.Date_Full_Layout, resp.Data.ActivityBeginDate, time.Local)
+	endtime, _ := time.ParseInLocation(date.Date_Full_Layout, resp.Data.ActivityendDate, time.Local)
+	return &ActivityInfo{
+		ActivityName:  resp.Data.ActivityName,
+		ActivityType:  int64(activityType),
+		StartTime:     starttime.Unix(),
+		EndTime:       endtime.Unix(),
+		PreStartTime:  resp.Data.PreheatingTime,
+		StockNumber:   resp.Data.StockNumber,
+		IsAppointment: isAppointment,
+		ActivityId:    resp.Data.ActivityId,
+	}, nil
+}

+ 39 - 0
public/entity/push.go

@@ -0,0 +1,39 @@
+package entity
+
+import (
+	"encoding/json"
+	"fmt"
+	"io/ioutil"
+	"log"
+	"net/http"
+
+	"app.yhyue.com/moapp/jybase/date"
+	"github.com/zeromicro/go-zero/core/logx"
+)
+
+//站内信推送
+func Push(href, action, userid, content, pcLandingPage, appLandingPage, wxLandingPage string) {
+	pushHref := fmt.Sprintf("%s?_action=%s&userIds=%s&msgType=1&title=消息提醒&content='%s'&link=%s&sendMode=2&sendTime='%s'&androidUrl=%s&iosUrl=%s&weChatUrl=%s&_token=12311",
+		href, action, userid, content, pcLandingPage, date.NowFormat(date.Date_Short_Layout), appLandingPage, appLandingPage, wxLandingPage)
+	logx.Info("href:", pushHref)
+	log.Println(pushHref)
+	resp, err := http.Get(pushHref)
+	if err != nil {
+		logx.Error(err)
+		return
+	}
+	defer resp.Body.Close()
+	cont, err := ioutil.ReadAll(resp.Body)
+	logx.Info(string(cont))
+	log.Println(string(cont), err)
+	if err != nil {
+		logx.Error(err)
+		return
+	}
+	ret := make(map[string]interface{})
+	err = json.Unmarshal(cont, &ret)
+	if err != nil {
+		logx.Error(err)
+		return
+	}
+}

+ 1 - 1
public/entity/rpc.go → public/rpc/rpc.go

@@ -1,4 +1,4 @@
-package entity
+package rpc
 
 import "app.yhyue.com/moapp/jyMarketing/rpc/activity"
 

+ 1 - 0
rpc/etc/push.yaml

@@ -3,4 +3,5 @@ TaskTime: '1'
 StationMailHref: https://web-qmx_admin.jydev.jianyu360.com/api/admin
 StationMailAction: /message/sendMessageApi
 Content: 亲爱的用户,您预约的%s,活动即将在10分钟后开始,赶紧戳链接参加活动。
+ContentAppointment: 亲爱的用户,您已经成功预约%s,活动即将在%s开始,请及时参加活动,精彩不容错过。
 TestId: 6103bb722abfa5f4d81bb1d1

+ 2 - 2
rpc/init/init.go

@@ -3,7 +3,7 @@ package init
 import (
 	"flag"
 
-	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/public/entity"
+	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/public/rpc"
 
 	"app.yhyue.com/moapp/jyMarketing/rpc/activity"
 	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/public/db"
@@ -40,6 +40,6 @@ func init() {
 			Key:   Cfg.JyMarketingEtcdConf.Etcd.Key,
 		},
 	})
-	entity.JyMarketingLib = activity.NewActivity(jyMarketingClient)
+	rpc.JyMarketingLib = activity.NewActivity(jyMarketingClient)
 
 }

+ 7 - 6
rpc/internal/config/config.go

@@ -17,10 +17,11 @@ type Config struct {
 }
 
 type PushConfig struct {
-	TestId            string
-	TimeTaskSwitch    bool
-	TaskTime          string
-	StationMailHref   string
-	StationMailAction string
-	Content           string
+	TestId             string
+	TimeTaskSwitch     bool
+	TaskTime           string
+	StationMailHref    string
+	StationMailAction  string
+	Content            string
+	ContentAppointment string
 }

+ 27 - 1
rpc/internal/logic/appointmentinfologic.go

@@ -3,6 +3,9 @@ package logic
 import (
 	"context"
 
+	"fmt"
+
+	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/public/entity"
 	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/rpc/internal/svc"
 	"bp.jydev.jianyu360.cn/ApplicationCenter/marketing/rpc/pb"
 
@@ -26,6 +29,29 @@ func NewAppointmentInfoLogic(ctx context.Context, svcCtx *svc.ServiceContext) *A
 // 预热信息
 func (l *AppointmentInfoLogic) AppointmentInfo(in *pb.AppointmentInfoReq) (*pb.AppointmentInfoResp, error) {
 	// todo: add your logic here and delete this line
+	resp := &pb.AppointmentInfoResp{}
+	appointment := &entity.AppointmentStruct{
+		Appid:          in.AppId,
+		UserId:         in.UserId,
+		ProductId:      in.ProductId,
+		UseProductType: in.UseProductType,
+	}
 
-	return &pb.AppointmentInfoResp{}, nil
+	data, err := appointment.Info()
+	if err != nil {
+		l.Error(fmt.Sprintf("%+v", in), err.Error())
+		resp.ErrorMsg = err.Error()
+		resp.ErrorCode = -1
+	} else {
+		resp.ActivityId = data.ActivityId
+		resp.ActivityName = data.ActivityName
+		resp.ActivityType = data.ActivityType
+		resp.StartTime = data.StartTime
+		resp.EndTime = data.EndTime
+		resp.PreheatStartTime = data.PreStartTime
+		resp.PreheatEndTime = data.StartTime
+		resp.PreheatStatus = data.IsAppointment
+		resp.StockNumber = data.StockNumber
+	}
+	return resp, nil
 }

+ 4 - 5
rpc/internal/logic/isappointmentlogic.go

@@ -27,14 +27,13 @@ func NewIsAppointmentLogic(ctx context.Context, svcCtx *svc.ServiceContext) *IsA
 }
 
 // 用户是否预约
-func (l *IsAppointmentLogic) IsAppointment(in *pb.AppointmentAddReq) (*pb.Resp, error) {
+func (l *IsAppointmentLogic) IsAppointment(in *pb.IsAppointmentReq) (*pb.Resp, error) {
 	// todo: add your logic here and delete this line
 	resp := &pb.Resp{}
 	appointment := &entity.AppointmentStruct{
-		Appid:          in.AppId,
-		UserId:         in.UserId,
-		ProductId:      in.ProductId,
-		UseProductType: in.UseProductType,
+		Appid:      in.AppId,
+		UserId:     in.UserId,
+		ActivityId: in.ActivityId,
 	}
 
 	status, err := appointment.IsAppointment()

+ 1 - 1
rpc/internal/server/marketingserver.go

@@ -35,7 +35,7 @@ func (s *MarketingServer) AppointmentInfo(ctx context.Context, in *pb.Appointmen
 }
 
 // 用户是否预约
-func (s *MarketingServer) IsAppointment(ctx context.Context, in *pb.AppointmentAddReq) (*pb.Resp, error) {
+func (s *MarketingServer) IsAppointment(ctx context.Context, in *pb.IsAppointmentReq) (*pb.Resp, error) {
 	l := logic.NewIsAppointmentLogic(ctx, s.svcCtx)
 	return l.IsAppointment(in)
 }

+ 122 - 0
rpc/logs/access.log

@@ -102,3 +102,125 @@
 {"@timestamp":"2022-08-01T10:42:51.002+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
 {"@timestamp":"2022-08-01T10:43:31.024+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:52550 - /marketing/IsAppointment - {\"productId\":101,\"userId\":\"431r4ng93459jr2093\",\"appId\":\"10000\"}","duration":"4.3ms","level":"info","span":"415c082e9d89dc7a","trace":"7072563f4b53cb78a19f3033a7bbaea7"}
 {"@timestamp":"2022-08-01T10:44:04.298+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:52634 - /marketing/IsAppointment - {\"productId\":101,\"userId\":\"43123r4ng93459jr2093\",\"appId\":\"10000\"}","duration":"4.1ms","level":"info","span":"c63c0f3daa46e621","trace":"e866d0c50d3d826cd16d3850e7b51627"}
+{"@timestamp":"2022-08-01T10:44:53.207+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-01T10:45:03.380+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:52764 - /marketing/IsAppointment - {\"productId\":101,\"userId\":\"43123r4ng93459jr2093\",\"appId\":\"10000\"}","duration":"4.6ms","level":"info","span":"8a1604dd9a017c59","trace":"74b4efbe69b2b33e4049b14687cf6176"}
+{"@timestamp":"2022-08-01T14:58:50.992+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-01T15:01:11.408+08:00","caller":"entity/appointment.go:47","content":"add :give info :userId:\"6103bb722abfa5f4d81bb1d1\"  appId:\"10000\"  useProduct:\"1012\"","level":"info"}
+{"@timestamp":"2022-08-01T15:01:11.497+08:00","caller":"entity/appointment.go:49","content":"\u003cnil\u003e code:1  message:\"产品下存在的买送券\"  data:{activityId:1  activityName:\"限时价格\"  activityDesc:\"限时价格\"  discountId:22  stockNumber:1000  productCode:1012  promotionalPrice:1000  preheatingTime:1657473315  beginDate:1659374115  endDate:1660842915  activityType:3  pcPage:\"/swordfish/page_big_pc/free/svip/buy\"  wxPage:\"/front/vipsubscribe/introducePage\"  appPage:\"/jyapp/vipsubscribe/introducePage\"  IsReceive:true}","level":"info"}
+{"@timestamp":"2022-08-01T15:01:11.505+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:64536 - /marketing/AppointmentAdd - {\"productId\":1012,\"userId\":\"6103bb722abfa5f4d81bb1d1\",\"appId\":\"10000\"}","duration":"98.2ms","level":"info","span":"5ee86b4389140806","trace":"6cdf2bb80b364deec540490f32a4c87f"}
+{"@timestamp":"2022-08-01T15:01:36.928+08:00","caller":"entity/appointment.go:47","content":"add :give info :userId:\"6103bb722abfa5f4d81bb1d1\"  appId:\"10000\"  useProduct:\"1012\"","level":"info"}
+{"@timestamp":"2022-08-01T15:01:37.014+08:00","caller":"entity/appointment.go:49","content":"\u003cnil\u003e code:1  message:\"产品下存在的买送券\"  data:{activityId:1  activityName:\"限时价格\"  activityDesc:\"限时价格\"  discountId:22  stockNumber:1000  productCode:1012  promotionalPrice:1000  preheatingTime:1657473315  beginDate:1659374115  endDate:1660842915  activityType:3  pcPage:\"/swordfish/page_big_pc/free/svip/buy\"  wxPage:\"/front/vipsubscribe/introducePage\"  appPage:\"/jyapp/vipsubscribe/introducePage\"  IsReceive:true}","level":"info"}
+{"@timestamp":"2022-08-01T15:01:37.027+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:64590 - /marketing/AppointmentAdd - {\"productId\":1012,\"userId\":\"6103bb722abfa5f4d81bb1d1\",\"appId\":\"10000\"}","duration":"98.6ms","level":"info","span":"3e5cb8a0ffa39e76","trace":"7c1e120626393805abb346257e4534a2"}
+{"@timestamp":"2022-08-01T15:01:54.371+08:00","caller":"entity/appointment.go:47","content":"add :give info :userId:\"6103bb722abfa5f4d81bb1d1\"  appId:\"10000\"  useProduct:\"1012\"","level":"info"}
+{"@timestamp":"2022-08-01T15:01:54.454+08:00","caller":"entity/appointment.go:49","content":"\u003cnil\u003e code:1  message:\"产品下存在的买送券\"  data:{activityId:1  activityName:\"限时价格\"  activityDesc:\"限时价格\"  discountId:22  stockNumber:1000  productCode:1012  promotionalPrice:1000  preheatingTime:1657473315  beginDate:1659374115  endDate:1660842915  activityType:3  pcPage:\"/swordfish/page_big_pc/free/svip/buy\"  wxPage:\"/front/vipsubscribe/introducePage\"  appPage:\"/jyapp/vipsubscribe/introducePage\"  IsReceive:true}","level":"info"}
+{"@timestamp":"2022-08-01T15:01:54.473+08:00","caller":"entity/push.go:17","content":"https://web-qmx_admin.jydev.jianyu360.com/api/admin?_action=/message/sendMessageApi\u0026userIds=6103bb722abfa5f4d81bb1d1\u0026msgType=2\u0026title=消息提醒\u0026content=亲爱的用户,您已经成功预约2022-08-02 01:15:15,活动即将在%!s(MISSING)开始,请及时参加活动,精彩不容错过。\u0026link=/swordfish/page_big_pc/free/svip/buy\u0026sendMode=2\u0026sendTime=2022-08-01\u0026androidUrl=/jyapp/vipsubscribe/introducePage\u0026iosUrl=/jyapp/vipsubscribe/introducePage\u0026weChatUrl=/front/vipsubscribe/introducePage\u0026_token=12311","level":"info"}
+{"@timestamp":"2022-08-01T15:04:04.057+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-01T15:04:11.674+08:00","caller":"entity/appointment.go:47","content":"add :give info :userId:\"6103bb722abfa5f4d81bb1d1\"  appId:\"10000\"  useProduct:\"1012\"","level":"info"}
+{"@timestamp":"2022-08-01T15:04:11.801+08:00","caller":"entity/appointment.go:49","content":"\u003cnil\u003e code:1  message:\"产品下存在的买送券\"  data:{activityId:1  activityName:\"限时价格\"  activityDesc:\"限时价格\"  discountId:22  stockNumber:1000  productCode:1012  promotionalPrice:1000  preheatingTime:1657473315  beginDate:1659374115  endDate:1660842915  activityType:3  pcPage:\"/swordfish/page_big_pc/free/svip/buy\"  wxPage:\"/front/vipsubscribe/introducePage\"  appPage:\"/jyapp/vipsubscribe/introducePage\"  IsReceive:true}","level":"info"}
+{"@timestamp":"2022-08-01T15:04:11.814+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:64920 - /marketing/AppointmentAdd - {\"productId\":1012,\"userId\":\"6103bb722abfa5f4d81bb1d1\",\"appId\":\"10000\"}","duration":"139.4ms","level":"info","span":"df0e4aa966af8bcd","trace":"b5d7035b78b75039051a3341aa7f1437"}
+{"@timestamp":"2022-08-01T15:04:26.885+08:00","caller":"entity/appointment.go:47","content":"add :give info :userId:\"6103bb722abfa5f4d81bb1d1\"  appId:\"10000\"  useProduct:\"1012\"","level":"info"}
+{"@timestamp":"2022-08-01T15:04:27.011+08:00","caller":"entity/appointment.go:49","content":"\u003cnil\u003e code:1  message:\"产品下存在的买送券\"  data:{activityId:1  activityName:\"限时价格\"  activityDesc:\"限时价格\"  discountId:22  stockNumber:1000  productCode:1012  promotionalPrice:1000  preheatingTime:1657473315  beginDate:1659374115  endDate:1660842915  activityType:3  pcPage:\"/swordfish/page_big_pc/free/svip/buy\"  wxPage:\"/front/vipsubscribe/introducePage\"  appPage:\"/jyapp/vipsubscribe/introducePage\"  IsReceive:true}","level":"info"}
+{"@timestamp":"2022-08-01T15:04:27.033+08:00","caller":"entity/push.go:17","content":"https://web-qmx_admin.jydev.jianyu360.com/api/admin?_action=/message/sendMessageApi\u0026userIds=6103bb722abfa5f4d81bb1d1\u0026msgType=2\u0026title=消息提醒\u0026content=亲爱的用户,您已经成功预约限时价格,活动即将在2022-08-02 01:15:15开始,请及时参加活动,精彩不容错过。\u0026link=/swordfish/page_big_pc/free/svip/buy\u0026sendMode=2\u0026sendTime=2022-08-01\u0026androidUrl=/jyapp/vipsubscribe/introducePage\u0026iosUrl=/jyapp/vipsubscribe/introducePage\u0026weChatUrl=/front/vipsubscribe/introducePage\u0026_token=12311","level":"info"}
+{"@timestamp":"2022-08-01T15:04:27.267+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:64946 - /marketing/AppointmentAdd - {\"productId\":1012,\"userId\":\"6103bb722abfa5f4d81bb1d1\",\"appId\":\"10000\"}","duration":"381.4ms","level":"info","span":"99c6b53826f4679a","trace":"4b024256e07592652d6bbe81b5cd2bc7"}
+{"@timestamp":"2022-08-01T15:07:48.016+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-01T15:07:54.575+08:00","caller":"entity/appointment.go:47","content":"add :give info :userId:\"6103bb722abfa5f4d81bb1d1\" appId:\"10000\" useProduct:\"1012\"","level":"info"}
+{"@timestamp":"2022-08-01T15:07:54.646+08:00","caller":"entity/appointment.go:49","content":"\u003cnil\u003e code:1 message:\"产品下存在的买送券\" data:{activityId:1 activityName:\"限时价格\" activityDesc:\"限时价格\" discountId:22 stockNumber:1000 productCode:1012 promotionalPrice:1000 preheatingTime:1657473315 beginDate:1659374115 endDate:1660842915 activityType:3 pcPage:\"/swordfish/page_big_pc/free/svip/buy\" wxPage:\"/front/vipsubscribe/introducePage\" appPage:\"/jyapp/vipsubscribe/introducePage\" IsReceive:true}","level":"info"}
+{"@timestamp":"2022-08-01T15:07:54.675+08:00","caller":"entity/push.go:17","content":"href:https://web-qmx_admin.jydev.jianyu360.com/api/admin?_action=/message/sendMessageApi\u0026userIds=6103bb722abfa5f4d81bb1d1\u0026msgType=2\u0026title=消息提醒\u0026content=亲爱的用户,您已经成功预约限时价格,活动即将在2022-08-02 01:15:15开始,请及时参加活动,精彩不容错过。\u0026link=/swordfish/page_big_pc/free/svip/buy\u0026sendMode=2\u0026sendTime=2022-08-01\u0026androidUrl=/jyapp/vipsubscribe/introducePage\u0026iosUrl=/jyapp/vipsubscribe/introducePage\u0026weChatUrl=/front/vipsubscribe/introducePage\u0026_token=12311","level":"info"}
+{"@timestamp":"2022-08-01T15:09:57.454+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-01T15:10:06.065+08:00","caller":"entity/appointment.go:47","content":"add :give info :userId:\"6103bb722abfa5f4d81bb1d1\" appId:\"10000\" useProduct:\"1012\"","level":"info"}
+{"@timestamp":"2022-08-01T15:10:06.116+08:00","caller":"entity/appointment.go:49","content":"\u003cnil\u003e code:1 message:\"产品下存在的买送券\" data:{activityId:1 activityName:\"限时价格\" activityDesc:\"限时价格\" discountId:22 stockNumber:1000 productCode:1012 promotionalPrice:1000 preheatingTime:1657473315 beginDate:1659374115 endDate:1660842915 activityType:3 pcPage:\"/swordfish/page_big_pc/free/svip/buy\" wxPage:\"/front/vipsubscribe/introducePage\" appPage:\"/jyapp/vipsubscribe/introducePage\" IsReceive:true}","level":"info"}
+{"@timestamp":"2022-08-01T15:10:06.129+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:49295 - /marketing/AppointmentAdd - {\"productId\":1012,\"userId\":\"6103bb722abfa5f4d81bb1d1\",\"appId\":\"10000\"}","duration":"64.0ms","level":"info","span":"7e0b7c197bdc8f3d","trace":"bca68864b873e99e82983612424916c0"}
+{"@timestamp":"2022-08-01T15:10:20.373+08:00","caller":"entity/appointment.go:47","content":"add :give info :userId:\"6103bb722abfa5f4d81bb1d1\" appId:\"10000\" useProduct:\"1012\"","level":"info"}
+{"@timestamp":"2022-08-01T15:10:20.428+08:00","caller":"entity/appointment.go:49","content":"\u003cnil\u003e code:1 message:\"产品下存在的买送券\" data:{activityId:1 activityName:\"限时价格\" activityDesc:\"限时价格\" discountId:22 stockNumber:1000 productCode:1012 promotionalPrice:1000 preheatingTime:1657473315 beginDate:1659374115 endDate:1660842915 activityType:3 pcPage:\"/swordfish/page_big_pc/free/svip/buy\" wxPage:\"/front/vipsubscribe/introducePage\" appPage:\"/jyapp/vipsubscribe/introducePage\" IsReceive:true}","level":"info"}
+{"@timestamp":"2022-08-01T15:10:20.459+08:00","caller":"entity/push.go:17","content":"href:https://web-qmx_admin.jydev.jianyu360.com/api/admin?_action=/message/sendMessageApi\u0026userIds=6103bb722abfa5f4d81bb1d1\u0026msgType=2\u0026title=消息提醒\u0026content=亲爱的用户,您已经成功预约限时价格,活动即将在2022-08-02 01:15:15开始,请及时参加活动,精彩不容错过。\u0026link=/swordfish/page_big_pc/free/svip/buy\u0026sendMode=2\u0026sendTime=2022-08-01\u0026androidUrl=/jyapp/vipsubscribe/introducePage\u0026iosUrl=/jyapp/vipsubscribe/introducePage\u0026weChatUrl=/front/vipsubscribe/introducePage\u0026_token=12311","level":"info"}
+{"@timestamp":"2022-08-01T15:10:20.702+08:00","caller":"entity/push.go:25","content":"400 Bad Request","level":"info"}
+{"@timestamp":"2022-08-01T15:10:20.702+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:49322 - /marketing/AppointmentAdd - {\"productId\":1012,\"userId\":\"6103bb722abfa5f4d81bb1d1\",\"appId\":\"10000\"}","duration":"329.0ms","level":"info","span":"446ca43162f03dc6","trace":"240e1b2dd4d5a81d2700b674c82566d5"}
+{"@timestamp":"2022-08-01T15:16:58.643+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-01T15:17:09.289+08:00","caller":"entity/appointment.go:47","content":"add :give info :userId:\"6103bb722abfa5f4d81bb1d1\"  appId:\"10000\"  useProduct:\"1012\"","level":"info"}
+{"@timestamp":"2022-08-01T15:17:09.335+08:00","caller":"entity/appointment.go:49","content":"\u003cnil\u003e code:1  message:\"产品下存在的买送券\"  data:{activityId:1  activityName:\"限时价格\"  activityDesc:\"限时价格\"  discountId:22  stockNumber:1000  productCode:1012  promotionalPrice:1000  preheatingTime:1657473315  beginDate:1659374115  endDate:1660842915  activityType:3  pcPage:\"/swordfish/page_big_pc/free/svip/buy\"  wxPage:\"/front/vipsubscribe/introducePage\"  appPage:\"/jyapp/vipsubscribe/introducePage\"  IsReceive:true}","level":"info"}
+{"@timestamp":"2022-08-01T15:17:09.344+08:00","caller":"entity/push.go:17","content":"href:https://web-qmx_admin.jydev.jianyu360.com/api/admin?_action=/message/sendMessageApi\u0026userIds=6103bb722abfa5f4d81bb1d1\u0026msgType=2\u0026title=消息提醒\u0026content=亲爱的用户,您已经成功预约限时价格,活动即将在2022-08-02 01:15:15开始,请及时参加活动,精彩不容错过。\u0026link=/swordfish/page_big_pc/free/svip/buy\u0026sendMode=2\u0026sendTime=2022-08-01\u0026androidUrl=/jyapp/vipsubscribe/introducePage\u0026iosUrl=/jyapp/vipsubscribe/introducePage\u0026weChatUrl=/front/vipsubscribe/introducePage\u0026_token=12311","level":"info"}
+{"@timestamp":"2022-08-01T15:17:09.565+08:00","caller":"entity/push.go:25","content":"400 Bad Request","level":"info"}
+{"@timestamp":"2022-08-01T15:17:09.565+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:62791 - /marketing/AppointmentAdd - {\"productId\":1012,\"userId\":\"6103bb722abfa5f4d81bb1d1\",\"appId\":\"10000\"}","duration":"277.3ms","level":"info","span":"6681d7b256cb3c96","trace":"36d7c135f5416db072c6602e4620c81e"}
+{"@timestamp":"2022-08-01T15:17:55.690+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-01T15:18:01.615+08:00","caller":"entity/appointment.go:47","content":"add :give info :userId:\"6103bb722abfa5f4d81bb1d1\" appId:\"10000\" useProduct:\"1012\"","level":"info"}
+{"@timestamp":"2022-08-01T15:18:01.654+08:00","caller":"entity/appointment.go:49","content":"\u003cnil\u003e code:1 message:\"产品下存在的买送券\" data:{activityId:1 activityName:\"限时价格\" activityDesc:\"限时价格\" discountId:22 stockNumber:1000 productCode:1012 promotionalPrice:1000 preheatingTime:1657473315 beginDate:1659374115 endDate:1660842915 activityType:3 pcPage:\"/swordfish/page_big_pc/free/svip/buy\" wxPage:\"/front/vipsubscribe/introducePage\" appPage:\"/jyapp/vipsubscribe/introducePage\" IsReceive:true}","level":"info"}
+{"@timestamp":"2022-08-01T15:18:01.665+08:00","caller":"entity/push.go:18","content":"href:https://web-qmx_admin.jydev.jianyu360.com/api/admin?_action=/message/sendMessageApi\u0026userIds=6103bb722abfa5f4d81bb1d1\u0026msgType=2\u0026title=消息提醒\u0026content=亲爱的用户,您已经成功预约限时价格,活动即将在2022-08-02 01:15:15开始,请及时参加活动,精彩不容错过。\u0026link=/swordfish/page_big_pc/free/svip/buy\u0026sendMode=2\u0026sendTime=2022-08-01\u0026androidUrl=/jyapp/vipsubscribe/introducePage\u0026iosUrl=/jyapp/vipsubscribe/introducePage\u0026weChatUrl=/front/vipsubscribe/introducePage\u0026_token=12311","level":"info"}
+{"@timestamp":"2022-08-01T15:18:01.893+08:00","caller":"entity/push.go:27","content":"400 Bad Request","level":"info"}
+{"@timestamp":"2022-08-01T15:18:01.893+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:62940 - /marketing/AppointmentAdd - {\"productId\":1012,\"userId\":\"6103bb722abfa5f4d81bb1d1\",\"appId\":\"10000\"}","duration":"279.0ms","level":"info","span":"9dfc71ffd50bf254","trace":"b804ef91967513e74b419fab246ba5df"}
+{"@timestamp":"2022-08-01T15:21:20.379+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-01T15:21:33.662+08:00","caller":"entity/appointment.go:47","content":"add :give info :userId:\"6103bb722abfa5f4d81bb1d1\" appId:\"10000\" useProduct:\"1012\"","level":"info"}
+{"@timestamp":"2022-08-01T15:21:33.716+08:00","caller":"entity/appointment.go:49","content":"\u003cnil\u003e code:1 message:\"产品下存在的买送券\" data:{activityId:1 activityName:\"限时价格\" activityDesc:\"限时价格\" discountId:22 stockNumber:1000 productCode:1012 promotionalPrice:1000 preheatingTime:1657473315 beginDate:1659374115 endDate:1660842915 activityType:3 pcPage:\"/swordfish/page_big_pc/free/svip/buy\" wxPage:\"/front/vipsubscribe/introducePage\" appPage:\"/jyapp/vipsubscribe/introducePage\" IsReceive:true}","level":"info"}
+{"@timestamp":"2022-08-01T15:21:33.730+08:00","caller":"entity/push.go:18","content":"href:https://web-qmx_admin.jydev.jianyu360.com/api/admin?_action=/message/sendMessageApi\u0026userIds=6103bb722abfa5f4d81bb1d1\u0026msgType=2\u0026title=消息提醒\u0026content=亲爱的用户,您已经成功预约限时价格,活动即将在2022-08-02 01:15:15开始,请及时参加活动,精彩不容错过。\u0026link=/swordfish/page_big_pc/free/svip/buy\u0026sendMode=2\u0026sendTime=2022-08-01\u0026androidUrl=/jyapp/vipsubscribe/introducePage\u0026iosUrl=/jyapp/vipsubscribe/introducePage\u0026weChatUrl=/front/vipsubscribe/introducePage\u0026_token=12311","level":"info"}
+{"@timestamp":"2022-08-01T15:21:33.939+08:00","caller":"entity/push.go:27","content":"400 Bad Request","level":"info"}
+{"@timestamp":"2022-08-01T15:21:33.939+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:63365 - /marketing/AppointmentAdd - {\"productId\":1012,\"userId\":\"6103bb722abfa5f4d81bb1d1\",\"appId\":\"10000\"}","duration":"277.4ms","level":"info","span":"6291f298bebabd03","trace":"4a88257345f8eaa68c1c179bacdb208c"}
+{"@timestamp":"2022-08-01T15:23:34.462+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-01T15:23:41.695+08:00","caller":"entity/appointment.go:47","content":"add :give info :userId:\"6103bb722abfa5f4d81bb1d1\" appId:\"10000\" useProduct:\"1012\"","level":"info"}
+{"@timestamp":"2022-08-01T15:23:41.736+08:00","caller":"entity/appointment.go:49","content":"\u003cnil\u003e code:1 message:\"产品下存在的买送券\" data:{activityId:1 activityName:\"限时价格\" activityDesc:\"限时价格\" discountId:22 stockNumber:1000 productCode:1012 promotionalPrice:1000 preheatingTime:1657473315 beginDate:1659374115 endDate:1660842915 activityType:3 pcPage:\"/swordfish/page_big_pc/free/svip/buy\" wxPage:\"/front/vipsubscribe/introducePage\" appPage:\"/jyapp/vipsubscribe/introducePage\" IsReceive:true}","level":"info"}
+{"@timestamp":"2022-08-01T15:23:41.747+08:00","caller":"entity/push.go:18","content":"href:https://web-qmx_admin.jydev.jianyu360.com/api/admin?_action=/message/sendMessageApi\u0026userIds=6103bb722abfa5f4d81bb1d1\u0026msgType=2\u0026title=消息提醒\u0026content=亲爱的用户,您已经成功预约限时价格,活动即将在2022-08-02 01:15:15开始,请及时参加活动,精彩不容错过。\u0026link=/swordfish/page_big_pc/free/svip/buy\u0026sendMode=2\u0026sendTime=2022-08-01\u0026androidUrl=/jyapp/vipsubscribe/introducePage\u0026iosUrl=/jyapp/vipsubscribe/introducePage\u0026weChatUrl=/front/vipsubscribe/introducePage\u0026_token=12311","level":"info"}
+{"@timestamp":"2022-08-01T15:23:41.930+08:00","caller":"entity/push.go:27","content":"400 Bad Request","level":"info"}
+{"@timestamp":"2022-08-01T15:23:41.931+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:63668 - /marketing/AppointmentAdd - {\"productId\":1012,\"userId\":\"6103bb722abfa5f4d81bb1d1\",\"appId\":\"10000\"}","duration":"236.0ms","level":"info","span":"4acc04a91f65d07f","trace":"886b36d65ad8391e5182d6f97cd58636"}
+{"@timestamp":"2022-08-01T15:27:27.354+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-01T15:27:36.687+08:00","caller":"entity/appointment.go:47","content":"add :give info :userId:\"6103bb722abfa5f4d81bb1d1\" appId:\"10000\" useProduct:\"1012\"","level":"info"}
+{"@timestamp":"2022-08-01T15:27:36.746+08:00","caller":"entity/appointment.go:49","content":"\u003cnil\u003e code:1 message:\"产品下存在的买送券\" data:{activityId:1 activityName:\"限时价格\" activityDesc:\"限时价格\" discountId:22 stockNumber:1000 productCode:1012 promotionalPrice:1000 preheatingTime:1657473315 beginDate:1659374115 endDate:1660842915 activityType:3 pcPage:\"/swordfish/page_big_pc/free/svip/buy\" wxPage:\"/front/vipsubscribe/introducePage\" appPage:\"/jyapp/vipsubscribe/introducePage\" IsReceive:true}","level":"info"}
+{"@timestamp":"2022-08-01T15:27:36.760+08:00","caller":"entity/push.go:18","content":"href:https://web-qmx_admin.jydev.jianyu360.com/api/admin?_action=/message/sendMessageApi\u0026userIds=6103bb722abfa5f4d81bb1d1\u0026msgType=2\u0026title=消息提醒\u0026content='亲爱的用户,您已经成功预约限时价格,活动即将在2022-08-02 01:15:15开始,请及时参加活动,精彩不容错过。'\u0026link=/swordfish/page_big_pc/free/svip/buy\u0026sendMode=2\u0026sendTime='2022-08-01'\u0026androidUrl=/jyapp/vipsubscribe/introducePage\u0026iosUrl=/jyapp/vipsubscribe/introducePage\u0026weChatUrl=/front/vipsubscribe/introducePage\u0026_token=12311","level":"info"}
+{"@timestamp":"2022-08-01T15:27:36.957+08:00","caller":"entity/push.go:27","content":"400 Bad Request","level":"info"}
+{"@timestamp":"2022-08-01T15:27:36.957+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:64207 - /marketing/AppointmentAdd - {\"productId\":1012,\"userId\":\"6103bb722abfa5f4d81bb1d1\",\"appId\":\"10000\"}","duration":"270.1ms","level":"info","span":"3dfe6f5ff37acaad","trace":"4b8ef79822a8580d4cdb6b0618bfb917"}
+{"@timestamp":"2022-08-01T15:28:44.220+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-01T15:28:49.891+08:00","caller":"entity/appointment.go:47","content":"add :give info :userId:\"6103bb722abfa5f4d81bb1d1\"  appId:\"10000\"  useProduct:\"1012\"","level":"info"}
+{"@timestamp":"2022-08-01T15:28:49.930+08:00","caller":"entity/appointment.go:49","content":"\u003cnil\u003e code:1  message:\"产品下存在的买送券\"  data:{activityId:1  activityName:\"限时价格\"  activityDesc:\"限时价格\"  discountId:22  stockNumber:1000  productCode:1012  promotionalPrice:1000  preheatingTime:1657473315  beginDate:1659374115  endDate:1660842915  activityType:3  pcPage:\"/swordfish/page_big_pc/free/svip/buy\"  wxPage:\"/front/vipsubscribe/introducePage\"  appPage:\"/jyapp/vipsubscribe/introducePage\"  IsReceive:true}","level":"info"}
+{"@timestamp":"2022-08-01T15:28:49.941+08:00","caller":"entity/push.go:18","content":"href:https://web-qmx_admin.jydev.jianyu360.com/api/admin?_action=/message/sendMessageApi\u0026userIds=6103bb722abfa5f4d81bb1d1\u0026msgType=2\u0026title=消息提醒\u0026content='nihao'\u0026link=/swordfish/page_big_pc/free/svip/buy\u0026sendMode=2\u0026sendTime='2022-08-01'\u0026androidUrl=/jyapp/vipsubscribe/introducePage\u0026iosUrl=/jyapp/vipsubscribe/introducePage\u0026weChatUrl=/front/vipsubscribe/introducePage\u0026_token=12311","level":"info"}
+{"@timestamp":"2022-08-01T15:28:50.471+08:00","caller":"entity/push.go:27","content":"{\"status\":\"success\",\"info\":\"操作成功\",\"data\":{\"status\":1}}","level":"info"}
+{"@timestamp":"2022-08-01T15:31:47.282+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-01T15:31:52.972+08:00","caller":"entity/appointment.go:48","content":"add :give info :userId:\"6103bb722abfa5f4d81bb1d1\" appId:\"10000\" useProduct:\"1012\"","level":"info"}
+{"@timestamp":"2022-08-01T15:31:53.013+08:00","caller":"entity/appointment.go:50","content":"\u003cnil\u003e code:1 message:\"产品下存在的买送券\" data:{activityId:1 activityName:\"限时价格\" activityDesc:\"限时价格\" discountId:22 stockNumber:1000 productCode:1012 promotionalPrice:1000 preheatingTime:1657473315 beginDate:1659374115 endDate:1660842915 activityType:3 pcPage:\"/swordfish/page_big_pc/free/svip/buy\" wxPage:\"/front/vipsubscribe/introducePage\" appPage:\"/jyapp/vipsubscribe/introducePage\" IsReceive:true}","level":"info"}
+{"@timestamp":"2022-08-01T15:31:53.055+08:00","caller":"entity/push.go:18","content":"href:https://web-qmx_admin.jydev.jianyu360.com/api/admin?_action=/message/sendMessageApi\u0026userIds=6103bb722abfa5f4d81bb1d1\u0026msgType=2\u0026title=消息提醒\u0026content='亲爱的用户,您已经成功预约限时价格,活动即将在2022-08-02+01%3A15%3A15开始,请及时参加活动,精彩不容错过。'\u0026link=/swordfish/page_big_pc/free/svip/buy\u0026sendMode=2\u0026sendTime='2022-08-01'\u0026androidUrl=/jyapp/vipsubscribe/introducePage\u0026iosUrl=/jyapp/vipsubscribe/introducePage\u0026weChatUrl=/front/vipsubscribe/introducePage\u0026_token=12311","level":"info"}
+{"@timestamp":"2022-08-01T15:31:53.370+08:00","caller":"entity/push.go:27","content":"{\"status\":\"success\",\"info\":\"操作成功\",\"data\":{\"status\":1}}","level":"info"}
+{"@timestamp":"2022-08-01T15:31:53.370+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:64801 - /marketing/AppointmentAdd - {\"productId\":1012,\"userId\":\"6103bb722abfa5f4d81bb1d1\",\"appId\":\"10000\"}","duration":"398.9ms","level":"info","span":"b42d093e7cce8c39","trace":"1c194f599ba73ed53b6d021af7ecfb26"}
+{"@timestamp":"2022-08-01T15:48:25.235+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-01T15:48:39.113+08:00","caller":"entity/appointment.go:48","content":"add :give info :userId:\"6103bb722abfa5f4d81bb1d1\" appId:\"10000\" useProduct:\"1012\"","level":"info"}
+{"@timestamp":"2022-08-01T15:48:39.155+08:00","caller":"entity/appointment.go:50","content":"\u003cnil\u003e code:1 message:\"产品下存在的买送券\" data:{activityId:1 activityName:\"限时价格\" activityDesc:\"限时价格\" discountId:22 stockNumber:1000 productCode:1012 promotionalPrice:1000 preheatingTime:1657473315 beginDate:1659374115 endDate:1660842915 activityType:3 pcPage:\"/swordfish/page_big_pc/free/svip/buy\" wxPage:\"/front/vipsubscribe/introducePage\" appPage:\"/jyapp/vipsubscribe/introducePage\" IsReceive:true}","level":"info"}
+{"@timestamp":"2022-08-01T15:48:39.167+08:00","caller":"entity/push.go:18","content":"href:https://web-qmx_admin.jydev.jianyu360.com/api/admin?_action=/message/sendMessageApi\u0026userIds=6103bb722abfa5f4d81bb1d1\u0026msgType=1\u0026title=消息提醒\u0026content='亲爱的用户,您已经成功预约限时价格,活动即将在2022-08-02+01%3A15%3A15开始,请及时参加活动,精彩不容错过。'\u0026link=/swordfish/page_big_pc/free/svip/buy\u0026sendMode=2\u0026sendTime='2022-08-01'\u0026androidUrl=/jyapp/vipsubscribe/introducePage\u0026iosUrl=/jyapp/vipsubscribe/introducePage\u0026weChatUrl=/front/vipsubscribe/introducePage\u0026_token=12311","level":"info"}
+{"@timestamp":"2022-08-01T15:48:39.487+08:00","caller":"entity/push.go:27","content":"{\"status\":\"success\",\"info\":\"操作成功\",\"data\":{\"status\":1}}","level":"info"}
+{"@timestamp":"2022-08-01T15:48:39.488+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:50654 - /marketing/AppointmentAdd - {\"productId\":1012,\"userId\":\"6103bb722abfa5f4d81bb1d1\",\"appId\":\"10000\"}","duration":"376.3ms","level":"info","span":"24e24fec3c882deb","trace":"e86d3381044b9e466d3807e78d8dda48"}
+{"@timestamp":"2022-08-01T16:03:44.283+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-01T16:05:20.402+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:52828 - /marketing/IsAppointment - {\"userId\":\"62a94797784e2a5b4b1688d1\",\"activityId\":1,\"appId\":\"10000\"}","duration":"11.0ms","level":"info","span":"698a91a8d580b684","trace":"ea2d09ef220225deca8f0e4c2e575af4"}
+{"@timestamp":"2022-08-01T16:05:37.745+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:52828 - /marketing/IsAppointment - {\"userId\":\"62a94797784e2a5b4b1688d1\",\"activityId\":1,\"appId\":\"10000\"}","duration":"5.6ms","level":"info","span":"eb81a28721dbf008","trace":"6951cca7ec557e7c9cc7b6a6874d9bd8"}
+{"@timestamp":"2022-08-02T17:32:59.169+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-02T17:45:06.557+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-02T17:50:37.575+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-02T17:53:10.596+08:00","caller":"entity/appointment.go:140","content":"add :GiveActivity info :userId:\"FIN4932HFN93\" appId:\"10000\" useProduct:\"101\"","level":"info"}
+{"@timestamp":"2022-08-02T17:53:10.649+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:61782 - /marketing/AppointmentInfo - {\"productId\":101,\"appId\":\"10000\",\"userId\":\"FIN4932HFN93\"}","duration":"53.0ms","level":"info","span":"274c1ea57b2d71e3","trace":"593b3ac612041d94c02fef7666fe32ec"}
+{"@timestamp":"2022-08-02T17:54:03.484+08:00","caller":"entity/appointment.go:140","content":"add :GiveActivity info :userId:\"FIN4932HFN93\" appId:\"10000\" useProduct:\"101\"","level":"info"}
+{"@timestamp":"2022-08-02T17:54:03.535+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:61782 - /marketing/AppointmentInfo - {\"productId\":101,\"appId\":\"10000\",\"userId\":\"FIN4932HFN93\"}","duration":"51.2ms","level":"info","span":"e816c53c2c3396a8","trace":"b666f7c9ab60aa2b2f04e63911365caf"}
+{"@timestamp":"2022-08-02T17:55:40.056+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-02T17:55:42.757+08:00","caller":"entity/appointment.go:140","content":"giveActivity info req:userId:\"FIN4932HFN93\"  appId:\"10000\"  useProduct:\"101\"","level":"info"}
+{"@timestamp":"2022-08-02T17:55:42.868+08:00","caller":"entity/appointment.go:142","content":"giveActivity info resp:code:1  message:\"该时段没有限时活动\"  data:{activityBeginDate:\"0001年01月01日 00时00分00秒\"  activityendDate:\"0001年01月01日 00时00分00秒\"}","level":"info"}
+{"@timestamp":"2022-08-02T17:55:42.873+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:56585 - /marketing/AppointmentInfo - {\"productId\":101,\"appId\":\"10000\",\"userId\":\"FIN4932HFN93\"}","duration":"116.2ms","level":"info","span":"2f9f60fe90b9aac8","trace":"b04c0b044c1ed2ad376be362e768644b"}
+{"@timestamp":"2022-08-02T17:58:59.998+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-02T17:59:02.820+08:00","caller":"entity/appointment.go:140","content":"giveActivity info req:userId:\"FIN4932HFN93\" appId:\"10000\" useProduct:\"101\"","level":"info"}
+{"@timestamp":"2022-08-02T17:59:02.908+08:00","caller":"entity/appointment.go:142","content":"giveActivity info resp:code:1 message:\"该时段没有限时活动\" data:{activityBeginDate:\"0001年01月01日 00时00分00秒\" activityendDate:\"0001年01月01日 00时00分00秒\"}","level":"info"}
+{"@timestamp":"2022-08-02T17:59:02.913+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:57021 - /marketing/AppointmentInfo - {\"productId\":101,\"appId\":\"10000\",\"userId\":\"FIN4932HFN93\"}","duration":"91.7ms","level":"info","span":"c3461adeaa5306ed","trace":"f178a8517dc51ea7cc1f0cec9b0ab049"}
+{"@timestamp":"2022-08-02T18:03:51.317+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-02T18:03:52.767+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-02T18:04:00.692+08:00","caller":"entity/appointment.go:140","content":"giveActivity info req:userId:\"FIN4932HFN93\" appId:\"10000\" useProduct:\"101\"","level":"info"}
+{"@timestamp":"2022-08-02T18:04:00.781+08:00","caller":"entity/appointment.go:142","content":"giveActivity info resp:code:1 message:\"该时段没有限时活动\" data:{activityBeginDate:\"0001年01月01日 00时00分00秒\" activityendDate:\"0001年01月01日 00时00分00秒\"}","level":"info"}
+{"@timestamp":"2022-08-02T18:04:00.818+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:63684 - /marketing/AppointmentInfo - {\"productId\":101,\"appId\":\"10000\",\"userId\":\"FIN4932HFN93\"}","duration":"127.9ms","level":"info","span":"9fb664054ad608a2","trace":"ef83525734ad377064a75b692388f865"}
+{"@timestamp":"2022-08-02T18:09:09.470+08:00","caller":"entity/appointment.go:140","content":"giveActivity info req:userId:\"FIN4932HFN93\" appId:\"10000\" useProduct:\"1101\"","level":"info"}
+{"@timestamp":"2022-08-02T18:09:09.542+08:00","caller":"entity/appointment.go:142","content":"giveActivity info resp:code:1 message:\"该时段没有限时活动\" data:{activityBeginDate:\"0001年01月01日 00时00分00秒\" activityendDate:\"0001年01月01日 00时00分00秒\"}","level":"info"}
+{"@timestamp":"2022-08-02T18:09:09.546+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:65062 - /marketing/AppointmentInfo - {\"productId\":1101,\"appId\":\"10000\",\"userId\":\"FIN4932HFN93\"}","duration":"76.2ms","level":"info","span":"f424a8da89d822ae","trace":"c39dc4494c07374aa78740092f8cebce"}
+{"@timestamp":"2022-08-02T18:09:17.413+08:00","caller":"entity/appointment.go:140","content":"giveActivity info req:userId:\"FIN4932HFN93\" appId:\"10000\" useProduct:\"102\"","level":"info"}
+{"@timestamp":"2022-08-02T18:09:17.509+08:00","caller":"entity/appointment.go:142","content":"giveActivity info resp:code:1 message:\"该时段没有限时活动\" data:{activityBeginDate:\"0001年01月01日 00时00分00秒\" activityendDate:\"0001年01月01日 00时00分00秒\"}","level":"info"}
+{"@timestamp":"2022-08-02T18:09:17.527+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:65062 - /marketing/AppointmentInfo - {\"productId\":102,\"appId\":\"10000\",\"userId\":\"FIN4932HFN93\"}","duration":"114.1ms","level":"info","span":"13502116ebec5193","trace":"43324dd152bce4c6a15cf2d297445533"}
+{"@timestamp":"2022-08-02T18:09:31.615+08:00","caller":"entity/appointment.go:140","content":"giveActivity info req:userId:\"FIN4932HFN93\" appId:\"10000\" useProduct:\"112\"","level":"info"}
+{"@timestamp":"2022-08-02T18:09:31.683+08:00","caller":"entity/appointment.go:142","content":"giveActivity info resp:code:1 message:\"该时段没有限时活动\" data:{activityBeginDate:\"0001年01月01日 00时00分00秒\" activityendDate:\"0001年01月01日 00时00分00秒\"}","level":"info"}
+{"@timestamp":"2022-08-02T18:09:31.691+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:65062 - /marketing/AppointmentInfo - {\"productId\":112,\"appId\":\"10000\",\"userId\":\"FIN4932HFN93\"}","duration":"75.6ms","level":"info","span":"a7e21560beba56bb","trace":"7454e3b408f22cafecd81f5ecd7d9a38"}
+{"@timestamp":"2022-08-02T18:09:34.326+08:00","caller":"entity/appointment.go:140","content":"giveActivity info req:userId:\"FIN4932HFN93\" appId:\"10000\" useProduct:\"112\"","level":"info"}
+{"@timestamp":"2022-08-02T18:09:34.364+08:00","caller":"entity/appointment.go:142","content":"giveActivity info resp:code:1 message:\"该时段没有限时活动\" data:{activityBeginDate:\"0001年01月01日 00时00分00秒\" activityendDate:\"0001年01月01日 00时00分00秒\"}","level":"info"}
+{"@timestamp":"2022-08-02T18:09:34.369+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:65062 - /marketing/AppointmentInfo - {\"productId\":112,\"appId\":\"10000\",\"userId\":\"FIN4932HFN93\"}","duration":"43.5ms","level":"info","span":"a77322d6df303a73","trace":"5091261e11dd1864dfd4ab36a304713e"}
+{"@timestamp":"2022-08-02T18:13:08.651+08:00","caller":"entity/appointment.go:140","content":"giveActivity info req:userId:\"FIN4932HFN93\" appId:\"10000\" useProduct:\"112\"","level":"info"}
+{"@timestamp":"2022-08-02T18:13:08.709+08:00","caller":"entity/appointment.go:142","content":"giveActivity info resp:code:1 message:\"该时段没有限时活动\" data:{activityBeginDate:\"0001年01月01日 00时00分00秒\" activityendDate:\"0001年01月01日 00时00分00秒\"}","level":"info"}
+{"@timestamp":"2022-08-02T18:13:08.714+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:65062 - /marketing/AppointmentInfo - {\"productId\":112,\"appId\":\"10000\",\"userId\":\"FIN4932HFN93\"}","duration":"63.1ms","level":"info","span":"dda33ef5bcf5dd53","trace":"e0624a800e1a9fb300db5a377a867b54"}
+{"@timestamp":"2022-08-02T18:18:57.687+08:00","caller":"db/db.go:22","content":"初始化 mysql baseService","level":"info"}
+{"@timestamp":"2022-08-02T18:19:40.221+08:00","caller":"entity/appointment.go:140","content":"giveActivity info req:userId:\"FIN4932HFN93\" appId:\"10000\" productCode:\"112\"","level":"info"}
+{"@timestamp":"2022-08-02T18:19:40.363+08:00","caller":"entity/appointment.go:142","content":"giveActivity info resp:code:1 data:{activityName:\"活动货送活动!!!\" activityBeginDate:\"2022年08月10日 00时00分00秒\" activityendDate:\"2022年08月31日 00时00分00秒\" receivingLocation:1 stockNumber:6165 activityId:4}","level":"info"}
+{"@timestamp":"2022-08-02T18:19:40.369+08:00","caller":"serverinterceptors/statinterceptor.go:76","content":"127.0.0.1:57427 - /marketing/AppointmentInfo - {\"productId\":112,\"appId\":\"10000\",\"userId\":\"FIN4932HFN93\"}","duration":"149.1ms","level":"info","span":"5a3b6e72e426f26b","trace":"f488c1a09a3a6a782924428a7410aef9"}

+ 0 - 16
rpc/logs/error.log

@@ -1,16 +0,0 @@
-{"@timestamp":"2022-07-26T08:45:57.773+08:00","caller":"discov/publisher.go:144","content":"etcdserver: requested lease not found","level":"error"}
-{"@timestamp":"2022-07-26T23:44:04.452+08:00","caller":"discov/publisher.go:144","content":"etcdserver: requested lease not found","level":"error"}
-{"@timestamp":"2022-07-27T15:07:36.405+08:00","caller":"timetask/timetask.go:80","content":"Get \"/message/sendMessageApi?_action=6103bb722abfa5f4d81bb1d1\u0026userIds=亲爱的用户,您预约的大甩卖活动,活动即将在10分钟后开始,赶紧戳链接参加活动。\u0026msgType=2\u0026title=消息提醒\u0026content=/big/page/index\u0026link=2022-07-27\u0026sendMode=2\u0026sendTime=/big/page/index\u0026androidUrl=/big/page/index\u0026iosUrl=/big/page/index\u0026weChatUrl=%!s(MISSING)\u0026_token=12311\": unsupported protocol scheme \"\"","level":"error"}
-{"@timestamp":"2022-07-27T15:07:59.502+08:00","caller":"timetask/timetask.go:81","content":"Get \"/message/sendMessageApi?_action=6103bb722abfa5f4d81bb1d1\u0026userIds=亲爱的用户,您预约的大甩卖活动,活动即将在10分钟后开始,赶紧戳链接参加活动。\u0026msgType=2\u0026title=消息提醒\u0026content=/big/page/index\u0026link=2022-07-27\u0026sendMode=2\u0026sendTime=/big/page/index\u0026androidUrl=/big/page/index\u0026iosUrl=/big/page/index\u0026weChatUrl=%!s(MISSING)\u0026_token=12311\": unsupported protocol scheme \"\"","level":"error"}
-{"@timestamp":"2022-07-28T16:34:57.756+08:00","caller":"internal/discovbuilder.go:34","content":"bad resolver state","level":"error"}
-{"@timestamp":"2022-07-28T16:35:55.152+08:00","caller":"logic/appointmentaddlogic.go:43","content":"缺失参数,请检查必要参数","level":"error","span":"cb70aad3292bb41f","trace":"a0e79018e23601f29f83e12efffef56d"}
-{"@timestamp":"2022-07-28T16:43:13.415+08:00","caller":"logic/appointmentaddlogic.go:44","content":"缺失参数,请检查必要参数","level":"error","span":"3c584b79397217af","trace":"757137287d1eb7263a905acb34a410f3"}
-{"@timestamp":"2022-07-28T16:45:32.573+08:00","caller":"logic/appointmentaddlogic.go:44","content":"缺失参数,请检查必要参数","level":"error","span":"e06da99dd8c01f70","trace":"e051a133781e1fbf93284651d9e58c01"}
-{"@timestamp":"2022-07-28T23:45:55.397+08:00","caller":"discov/publisher.go:144","content":"etcdserver: requested lease not found","level":"error"}
-{"@timestamp":"2022-07-29T10:48:49.895+08:00","caller":"zrpc/server.go:90","content":"context deadline exceeded","level":"error"}
-{"@timestamp":"2022-07-29T14:33:17.460+08:00","caller":"zrpc/server.go:90","content":"listen tcp 127.0.0.1:708: bind: Only one usage of each socket address (protocol/network address/port) is normally permitted.","level":"error"}
-{"@timestamp":"2022-07-30T20:41:32.554+08:00","caller":"discov/publisher.go:144","content":"etcdserver: requested lease not found","level":"error"}
-{"@timestamp":"2022-08-01T10:31:22.686+08:00","caller":"logic/appointmentaddlogic.go:42","content":"productId:101  userId:\"62a94797784e2a5b4b1688d1\"  appId:\"10000\"预热未开始,无法预约","level":"error","span":"aa38d7bc5780930f","trace":"0d51516463a6d2fdd0abf3c318379cea"}
-{"@timestamp":"2022-08-01T10:35:13.097+08:00","caller":"logic/appointmentaddlogic.go:42","content":"productId:101  userId:\"62a94797784e2a5b4b1688d1\"  appId:\"10000\"活动已开始,无法预约","level":"error","span":"11b37edadce094f2","trace":"50103044dc4905e8100677b52b066561"}
-{"@timestamp":"2022-08-01T10:40:25.207+08:00","caller":"logic/appointmentaddlogic.go:42","content":"productId:101  userId:\"62a94797784e2a5b4b1688d1\"  appId:\"10000\"已预约","level":"error","span":"a3fd45ab9658b094","trace":"09ecab386e18768e46582357066898dc"}
-{"@timestamp":"2022-08-01T10:41:16.616+08:00","caller":"logic/appointmentaddlogic.go:42","content":"productId:101  userId:\"62a94797784e2a5b4b1688d1\"  appId:\"10000\"已预约","level":"error","span":"b5f7e1534c988848","trace":"1d79c6fa8d9077ab2a217a5f2ad22e95"}

+ 30 - 0
rpc/logs/error.log-2022-08-01

@@ -0,0 +1,30 @@
+{"@timestamp":"2022-07-26T08:45:57.773+08:00","caller":"discov/publisher.go:144","content":"etcdserver: requested lease not found","level":"error"}
+{"@timestamp":"2022-07-26T23:44:04.452+08:00","caller":"discov/publisher.go:144","content":"etcdserver: requested lease not found","level":"error"}
+{"@timestamp":"2022-07-27T15:07:36.405+08:00","caller":"timetask/timetask.go:80","content":"Get \"/message/sendMessageApi?_action=6103bb722abfa5f4d81bb1d1\u0026userIds=亲爱的用户,您预约的大甩卖活动,活动即将在10分钟后开始,赶紧戳链接参加活动。\u0026msgType=2\u0026title=消息提醒\u0026content=/big/page/index\u0026link=2022-07-27\u0026sendMode=2\u0026sendTime=/big/page/index\u0026androidUrl=/big/page/index\u0026iosUrl=/big/page/index\u0026weChatUrl=%!s(MISSING)\u0026_token=12311\": unsupported protocol scheme \"\"","level":"error"}
+{"@timestamp":"2022-07-27T15:07:59.502+08:00","caller":"timetask/timetask.go:81","content":"Get \"/message/sendMessageApi?_action=6103bb722abfa5f4d81bb1d1\u0026userIds=亲爱的用户,您预约的大甩卖活动,活动即将在10分钟后开始,赶紧戳链接参加活动。\u0026msgType=2\u0026title=消息提醒\u0026content=/big/page/index\u0026link=2022-07-27\u0026sendMode=2\u0026sendTime=/big/page/index\u0026androidUrl=/big/page/index\u0026iosUrl=/big/page/index\u0026weChatUrl=%!s(MISSING)\u0026_token=12311\": unsupported protocol scheme \"\"","level":"error"}
+{"@timestamp":"2022-07-28T16:34:57.756+08:00","caller":"internal/discovbuilder.go:34","content":"bad resolver state","level":"error"}
+{"@timestamp":"2022-07-28T16:35:55.152+08:00","caller":"logic/appointmentaddlogic.go:43","content":"缺失参数,请检查必要参数","level":"error","span":"cb70aad3292bb41f","trace":"a0e79018e23601f29f83e12efffef56d"}
+{"@timestamp":"2022-07-28T16:43:13.415+08:00","caller":"logic/appointmentaddlogic.go:44","content":"缺失参数,请检查必要参数","level":"error","span":"3c584b79397217af","trace":"757137287d1eb7263a905acb34a410f3"}
+{"@timestamp":"2022-07-28T16:45:32.573+08:00","caller":"logic/appointmentaddlogic.go:44","content":"缺失参数,请检查必要参数","level":"error","span":"e06da99dd8c01f70","trace":"e051a133781e1fbf93284651d9e58c01"}
+{"@timestamp":"2022-07-28T23:45:55.397+08:00","caller":"discov/publisher.go:144","content":"etcdserver: requested lease not found","level":"error"}
+{"@timestamp":"2022-07-29T10:48:49.895+08:00","caller":"zrpc/server.go:90","content":"context deadline exceeded","level":"error"}
+{"@timestamp":"2022-07-29T14:33:17.460+08:00","caller":"zrpc/server.go:90","content":"listen tcp 127.0.0.1:708: bind: Only one usage of each socket address (protocol/network address/port) is normally permitted.","level":"error"}
+{"@timestamp":"2022-07-30T20:41:32.554+08:00","caller":"discov/publisher.go:144","content":"etcdserver: requested lease not found","level":"error"}
+{"@timestamp":"2022-08-01T10:31:22.686+08:00","caller":"logic/appointmentaddlogic.go:42","content":"productId:101  userId:\"62a94797784e2a5b4b1688d1\"  appId:\"10000\"预热未开始,无法预约","level":"error","span":"aa38d7bc5780930f","trace":"0d51516463a6d2fdd0abf3c318379cea"}
+{"@timestamp":"2022-08-01T10:35:13.097+08:00","caller":"logic/appointmentaddlogic.go:42","content":"productId:101  userId:\"62a94797784e2a5b4b1688d1\"  appId:\"10000\"活动已开始,无法预约","level":"error","span":"11b37edadce094f2","trace":"50103044dc4905e8100677b52b066561"}
+{"@timestamp":"2022-08-01T10:40:25.207+08:00","caller":"logic/appointmentaddlogic.go:42","content":"productId:101  userId:\"62a94797784e2a5b4b1688d1\"  appId:\"10000\"已预约","level":"error","span":"a3fd45ab9658b094","trace":"09ecab386e18768e46582357066898dc"}
+{"@timestamp":"2022-08-01T10:41:16.616+08:00","caller":"logic/appointmentaddlogic.go:42","content":"productId:101  userId:\"62a94797784e2a5b4b1688d1\"  appId:\"10000\"已预约","level":"error","span":"b5f7e1534c988848","trace":"1d79c6fa8d9077ab2a217a5f2ad22e95"}
+{"@timestamp":"2022-08-01T15:01:11.505+08:00","caller":"logic/appointmentaddlogic.go:42","content":"productId:1012  userId:\"6103bb722abfa5f4d81bb1d1\"  appId:\"10000\"已预约","level":"error","span":"5ee86b4389140806","trace":"6cdf2bb80b364deec540490f32a4c87f"}
+{"@timestamp":"2022-08-01T15:01:37.027+08:00","caller":"logic/appointmentaddlogic.go:42","content":"productId:1012  userId:\"6103bb722abfa5f4d81bb1d1\"  appId:\"10000\"已预约","level":"error","span":"3e5cb8a0ffa39e76","trace":"7c1e120626393805abb346257e4534a2"}
+{"@timestamp":"2022-08-01T15:02:06.146+08:00","caller":"entity/push.go:32","content":"invalid character 'B' after top-level value","level":"error"}
+{"@timestamp":"2022-08-01T15:04:11.814+08:00","caller":"logic/appointmentaddlogic.go:42","content":"productId:1012  userId:\"6103bb722abfa5f4d81bb1d1\"  appId:\"10000\"已预约","level":"error","span":"df0e4aa966af8bcd","trace":"b5d7035b78b75039051a3341aa7f1437"}
+{"@timestamp":"2022-08-01T15:04:27.267+08:00","caller":"entity/push.go:32","content":"invalid character 'B' after top-level value","level":"error"}
+{"@timestamp":"2022-08-01T15:08:05.941+08:00","caller":"entity/push.go:32","content":"invalid character 'B' after top-level value","level":"error"}
+{"@timestamp":"2022-08-01T15:10:06.129+08:00","caller":"logic/appointmentaddlogic.go:42","content":"productId:1012 userId:\"6103bb722abfa5f4d81bb1d1\" appId:\"10000\"已预约","level":"error","span":"7e0b7c197bdc8f3d","trace":"bca68864b873e99e82983612424916c0"}
+{"@timestamp":"2022-08-01T15:10:20.702+08:00","caller":"entity/push.go:33","content":"invalid character 'B' after top-level value","level":"error"}
+{"@timestamp":"2022-08-01T15:17:09.565+08:00","caller":"entity/push.go:33","content":"invalid character 'B' after top-level value","level":"error"}
+{"@timestamp":"2022-08-01T15:18:01.893+08:00","caller":"entity/push.go:36","content":"invalid character 'B' after top-level value","level":"error"}
+{"@timestamp":"2022-08-01T15:21:33.939+08:00","caller":"entity/push.go:36","content":"invalid character 'B' after top-level value","level":"error"}
+{"@timestamp":"2022-08-01T15:23:41.931+08:00","caller":"entity/push.go:36","content":"invalid character 'B' after top-level value","level":"error"}
+{"@timestamp":"2022-08-01T15:27:36.957+08:00","caller":"entity/push.go:36","content":"invalid character 'B' after top-level value","level":"error"}
+{"@timestamp":"2022-08-01T20:44:55.361+08:00","caller":"discov/publisher.go:144","content":"etcdserver: requested lease not found","level":"error"}

+ 3 - 0
rpc/logs/error.log-2022-08-02

@@ -0,0 +1,3 @@
+{"@timestamp":"2022-08-02T08:44:48.692+08:00","caller":"discov/publisher.go:144","content":"etcdserver: requested lease not found","level":"error"}
+{"@timestamp":"2022-08-02T16:14:48.024+08:00","caller":"internal/discovbuilder.go:34","content":"bad resolver state","level":"error"}
+{"@timestamp":"2022-08-02T22:40:25.318+08:00","caller":"discov/publisher.go:144","content":"etcdserver: requested lease not found","level":"error"}

+ 3 - 0
rpc/logs/error.log-2022-08-03

@@ -0,0 +1,3 @@
+{"@timestamp":"2022-08-03T08:39:25.465+08:00","caller":"discov/publisher.go:144","content":"etcdserver: requested lease not found","level":"error"}
+{"@timestamp":"2022-08-03T09:06:38.677+08:00","caller":"internal/discovbuilder.go:34","content":"bad resolver state","level":"error"}
+{"@timestamp":"2022-08-03T23:42:13.535+08:00","caller":"discov/publisher.go:144","content":"etcdserver: requested lease not found","level":"error"}

+ 6 - 0
rpc/logs/slow.log

@@ -0,0 +1,6 @@
+{"@timestamp":"2022-08-01T15:01:56.365+08:00","caller":"serverinterceptors/statinterceptor.go:73","content":"[RPC] slowcall - 127.0.0.1:64636 - /marketing/AppointmentAdd - {\"productId\":1012,\"userId\":\"6103bb722abfa5f4d81bb1d1\",\"appId\":\"10000\"}","duration":"1994.4ms","level":"slow","span":"ec029725a9995d0d","trace":"3fcd12b9ac6123c6d2b07036f9a2285d"}
+{"@timestamp":"2022-08-01T15:07:56.573+08:00","caller":"serverinterceptors/statinterceptor.go:73","content":"[RPC] slowcall - 127.0.0.1:65384 - /marketing/AppointmentAdd - {\"productId\":1012,\"userId\":\"6103bb722abfa5f4d81bb1d1\",\"appId\":\"10000\"}","duration":"1999.1ms","level":"slow","span":"95cd8bfd6afa86c7","trace":"ccee4b8e1f19688f76845ad9aaf0e0c4"}
+{"@timestamp":"2022-08-01T15:28:50.472+08:00","caller":"serverinterceptors/statinterceptor.go:73","content":"[RPC] slowcall - 127.0.0.1:64387 - /marketing/AppointmentAdd - {\"productId\":1012,\"userId\":\"6103bb722abfa5f4d81bb1d1\",\"appId\":\"10000\"}","duration":"580.7ms","level":"slow","span":"d78f634c1a246f4c","trace":"6adf4733c50dcc3ef23157aa98be49c2"}
+{"@timestamp":"2022-08-03T18:19:44.067+08:00","caller":"serverinterceptors/statinterceptor.go:73","content":"[RPC] slowcall - 127.0.0.1:65481 - /marketing/AppointmentAdd - {\"productId\":101,\"userId\":\"62a94797784e2a5b4b1688d1\",\"appId\":\"10000\"}","duration":"2004.0ms","level":"slow","span":"43dc3bcfa328fceb","trace":"2dba169db52f036fa77bc591dc1b6ce6"}
+{"@timestamp":"2022-08-03T18:22:55.550+08:00","caller":"serverinterceptors/statinterceptor.go:73","content":"[RPC] slowcall - 127.0.0.1:65481 - /marketing/AppointmentAdd - {\"productId\":101,\"userId\":\"62a94797784e2a5b4b1688d1\",\"appId\":\"10000\"}","duration":"2003.1ms","level":"slow","span":"da0a8f10721459ad","trace":"ec9611dc0a168dcfb14a75e529941908"}
+{"@timestamp":"2022-08-03T18:24:47.425+08:00","caller":"serverinterceptors/statinterceptor.go:73","content":"[RPC] slowcall - 127.0.0.1:65481 - /marketing/AppointmentAdd - {\"productId\":101,\"userId\":\"62a94797784e2a5b4b1688d1\",\"appId\":\"10000\"}","duration":"2008.7ms","level":"slow","span":"c8114589ca35f4aa","trace":"024e88f6bce8d20ec90c06c4149102cb"}

+ 0 - 79
rpc/logs/stat.log

@@ -1,79 +0,0 @@
-{"@timestamp":"2022-08-01T08:51:06.166+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=15.7Mi, Sys=19.9Mi, NumGC=31","level":"stat"}
-{"@timestamp":"2022-08-01T08:51:06.166+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T08:51:06.166+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
-{"@timestamp":"2022-08-01T10:07:38.864+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=8.2Mi, Sys=18.9Mi, NumGC=3","level":"stat"}
-{"@timestamp":"2022-08-01T10:07:38.923+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:08:38.862+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=8.4Mi, Sys=18.9Mi, NumGC=3","level":"stat"}
-{"@timestamp":"2022-08-01T10:08:38.893+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:09:38.869+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=8.5Mi, Sys=19.2Mi, NumGC=4","level":"stat"}
-{"@timestamp":"2022-08-01T10:09:38.900+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:10:38.857+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=8.6Mi, Sys=19.2Mi, NumGC=4","level":"stat"}
-{"@timestamp":"2022-08-01T10:10:38.898+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:11:38.857+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=8.7Mi, Sys=19.2Mi, NumGC=5","level":"stat"}
-{"@timestamp":"2022-08-01T10:11:38.892+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:12:38.864+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.0Mi, Sys=19.2Mi, NumGC=5","level":"stat"}
-{"@timestamp":"2022-08-01T10:12:38.895+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:13:38.869+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=9.1Mi, Sys=19.2Mi, NumGC=6","level":"stat"}
-{"@timestamp":"2022-08-01T10:13:38.901+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:14:38.869+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=9.2Mi, Sys=19.2Mi, NumGC=6","level":"stat"}
-{"@timestamp":"2022-08-01T10:14:38.900+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:15:38.861+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=9.3Mi, Sys=19.4Mi, NumGC=7","level":"stat"}
-{"@timestamp":"2022-08-01T10:15:38.892+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:16:38.870+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=9.3Mi, Sys=19.4Mi, NumGC=7","level":"stat"}
-{"@timestamp":"2022-08-01T10:16:38.893+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:17:38.862+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=9.6Mi, Sys=19.4Mi, NumGC=8","level":"stat"}
-{"@timestamp":"2022-08-01T10:17:38.893+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:18:38.866+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=9.7Mi, Sys=19.4Mi, NumGC=8","level":"stat"}
-{"@timestamp":"2022-08-01T10:18:38.897+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:19:38.859+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=9.8Mi, Sys=19.4Mi, NumGC=9","level":"stat"}
-{"@timestamp":"2022-08-01T10:19:38.905+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:20:38.869+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=9.9Mi, Sys=19.4Mi, NumGC=9","level":"stat"}
-{"@timestamp":"2022-08-01T10:20:38.900+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:21:38.857+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=10.0Mi, Sys=19.4Mi, NumGC=10","level":"stat"}
-{"@timestamp":"2022-08-01T10:21:38.895+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:22:38.869+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.3Mi, Sys=19.7Mi, NumGC=10","level":"stat"}
-{"@timestamp":"2022-08-01T10:22:38.900+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:23:38.855+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=10.4Mi, Sys=19.7Mi, NumGC=11","level":"stat"}
-{"@timestamp":"2022-08-01T10:23:38.902+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:24:38.862+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=10.4Mi, Sys=19.7Mi, NumGC=11","level":"stat"}
-{"@timestamp":"2022-08-01T10:24:38.893+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:25:38.860+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=10.5Mi, Sys=19.7Mi, NumGC=12","level":"stat"}
-{"@timestamp":"2022-08-01T10:25:38.907+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:26:38.867+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=10.6Mi, Sys=19.7Mi, NumGC=12","level":"stat"}
-{"@timestamp":"2022-08-01T10:26:38.898+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:27:38.864+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=10.9Mi, Sys=19.7Mi, NumGC=13","level":"stat"}
-{"@timestamp":"2022-08-01T10:27:38.895+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:28:38.857+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=11.0Mi, Sys=19.7Mi, NumGC=13","level":"stat"}
-{"@timestamp":"2022-08-01T10:28:38.906+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:29:38.857+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=11.1Mi, Sys=19.7Mi, NumGC=14","level":"stat"}
-{"@timestamp":"2022-08-01T10:29:38.904+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:30:38.856+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=11.2Mi, Sys=19.7Mi, NumGC=14","level":"stat"}
-{"@timestamp":"2022-08-01T10:30:38.903+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:31:22.685+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 7068, reqs: 1","level":"stat"}
-{"@timestamp":"2022-08-01T10:31:38.869+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=11.7Mi, Sys=19.9Mi, NumGC=15","level":"stat"}
-{"@timestamp":"2022-08-01T10:31:38.901+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:32:22.701+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 50.0ms, med: 50.5ms, 90th: 50.5ms, 99th: 50.5ms, 99.9th: 50.5ms","level":"stat"}
-{"@timestamp":"2022-08-01T10:32:38.859+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=11.8Mi, Sys=19.9Mi, NumGC=15","level":"stat"}
-{"@timestamp":"2022-08-01T10:32:38.906+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:33:22.689+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
-{"@timestamp":"2022-08-01T10:33:38.856+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=11.8Mi, Sys=19.9Mi, NumGC=16","level":"stat"}
-{"@timestamp":"2022-08-01T10:33:38.901+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:35:13.097+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 6964, reqs: 1","level":"stat"}
-{"@timestamp":"2022-08-01T10:35:59.497+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=8.4Mi, Sys=19.4Mi, NumGC=4","level":"stat"}
-{"@timestamp":"2022-08-01T10:35:59.529+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:36:13.101+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 50.0ms, med: 50.6ms, 90th: 50.6ms, 99th: 50.6ms, 99.9th: 50.6ms","level":"stat"}
-{"@timestamp":"2022-08-01T10:36:56.198+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 7061, reqs: 1","level":"stat"}
-{"@timestamp":"2022-08-01T10:37:53.448+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=8.5Mi, Sys=23.5Mi, NumGC=4","level":"stat"}
-{"@timestamp":"2022-08-01T10:37:53.464+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:37:56.223+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 61.0ms, med: 61.7ms, 90th: 61.7ms, 99th: 61.7ms, 99.9th: 61.7ms","level":"stat"}
-{"@timestamp":"2022-08-01T10:39:24.283+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 8030, reqs: 1","level":"stat"}
-{"@timestamp":"2022-08-01T10:40:25.202+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 7217, reqs: 1","level":"stat"}
-{"@timestamp":"2022-08-01T10:41:22.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=8.7Mi, Sys=19.4Mi, NumGC=4","level":"stat"}
-{"@timestamp":"2022-08-01T10:41:22.713+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:41:25.212+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 54.5ms, med: 57.4ms, 90th: 57.4ms, 99th: 57.4ms, 99.9th: 57.4ms","level":"stat"}
-{"@timestamp":"2022-08-01T10:42:22.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=8.9Mi, Sys=19.4Mi, NumGC=4","level":"stat"}
-{"@timestamp":"2022-08-01T10:42:22.711+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:42:25.215+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
-{"@timestamp":"2022-08-01T10:43:50.986+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=8.3Mi, Sys=19.9Mi, NumGC=4","level":"stat"}
-{"@timestamp":"2022-08-01T10:43:51.016+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
-{"@timestamp":"2022-08-01T10:44:31.025+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 4.0ms, med: 4.3ms, 90th: 4.3ms, 99th: 4.3ms, 99.9th: 4.3ms","level":"stat"}

+ 1067 - 0
rpc/logs/stat.log-2022-08-01

@@ -0,0 +1,1067 @@
+{"@timestamp":"2022-08-01T08:51:06.166+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=15.7Mi, Sys=19.9Mi, NumGC=31","level":"stat"}
+{"@timestamp":"2022-08-01T08:51:06.166+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T08:51:06.166+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:07:38.864+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=8.2Mi, Sys=18.9Mi, NumGC=3","level":"stat"}
+{"@timestamp":"2022-08-01T10:07:38.923+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:08:38.862+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=8.4Mi, Sys=18.9Mi, NumGC=3","level":"stat"}
+{"@timestamp":"2022-08-01T10:08:38.893+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:09:38.869+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=8.5Mi, Sys=19.2Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T10:09:38.900+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:10:38.857+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=8.6Mi, Sys=19.2Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T10:10:38.898+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:11:38.857+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=8.7Mi, Sys=19.2Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-01T10:11:38.892+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:12:38.864+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.0Mi, Sys=19.2Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-01T10:12:38.895+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:13:38.869+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=9.1Mi, Sys=19.2Mi, NumGC=6","level":"stat"}
+{"@timestamp":"2022-08-01T10:13:38.901+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:14:38.869+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=9.2Mi, Sys=19.2Mi, NumGC=6","level":"stat"}
+{"@timestamp":"2022-08-01T10:14:38.900+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:15:38.861+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=9.3Mi, Sys=19.4Mi, NumGC=7","level":"stat"}
+{"@timestamp":"2022-08-01T10:15:38.892+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:16:38.870+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=9.3Mi, Sys=19.4Mi, NumGC=7","level":"stat"}
+{"@timestamp":"2022-08-01T10:16:38.893+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:17:38.862+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=9.6Mi, Sys=19.4Mi, NumGC=8","level":"stat"}
+{"@timestamp":"2022-08-01T10:17:38.893+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:18:38.866+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=9.7Mi, Sys=19.4Mi, NumGC=8","level":"stat"}
+{"@timestamp":"2022-08-01T10:18:38.897+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:19:38.859+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=9.8Mi, Sys=19.4Mi, NumGC=9","level":"stat"}
+{"@timestamp":"2022-08-01T10:19:38.905+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:20:38.869+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=9.9Mi, Sys=19.4Mi, NumGC=9","level":"stat"}
+{"@timestamp":"2022-08-01T10:20:38.900+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:21:38.857+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=10.0Mi, Sys=19.4Mi, NumGC=10","level":"stat"}
+{"@timestamp":"2022-08-01T10:21:38.895+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:22:38.869+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.3Mi, Sys=19.7Mi, NumGC=10","level":"stat"}
+{"@timestamp":"2022-08-01T10:22:38.900+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:23:38.855+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=10.4Mi, Sys=19.7Mi, NumGC=11","level":"stat"}
+{"@timestamp":"2022-08-01T10:23:38.902+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:24:38.862+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=10.4Mi, Sys=19.7Mi, NumGC=11","level":"stat"}
+{"@timestamp":"2022-08-01T10:24:38.893+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:25:38.860+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=10.5Mi, Sys=19.7Mi, NumGC=12","level":"stat"}
+{"@timestamp":"2022-08-01T10:25:38.907+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:26:38.867+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=10.6Mi, Sys=19.7Mi, NumGC=12","level":"stat"}
+{"@timestamp":"2022-08-01T10:26:38.898+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:27:38.864+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=10.9Mi, Sys=19.7Mi, NumGC=13","level":"stat"}
+{"@timestamp":"2022-08-01T10:27:38.895+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:28:38.857+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=11.0Mi, Sys=19.7Mi, NumGC=13","level":"stat"}
+{"@timestamp":"2022-08-01T10:28:38.906+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:29:38.857+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=11.1Mi, Sys=19.7Mi, NumGC=14","level":"stat"}
+{"@timestamp":"2022-08-01T10:29:38.904+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:30:38.856+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=11.2Mi, Sys=19.7Mi, NumGC=14","level":"stat"}
+{"@timestamp":"2022-08-01T10:30:38.903+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:31:22.685+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 7068, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-01T10:31:38.869+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=11.7Mi, Sys=19.9Mi, NumGC=15","level":"stat"}
+{"@timestamp":"2022-08-01T10:31:38.901+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:32:22.701+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 50.0ms, med: 50.5ms, 90th: 50.5ms, 99th: 50.5ms, 99.9th: 50.5ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:32:38.859+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=11.8Mi, Sys=19.9Mi, NumGC=15","level":"stat"}
+{"@timestamp":"2022-08-01T10:32:38.906+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:33:22.689+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:33:38.856+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=11.8Mi, Sys=19.9Mi, NumGC=16","level":"stat"}
+{"@timestamp":"2022-08-01T10:33:38.901+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:35:13.097+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 6964, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-01T10:35:59.497+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=8.4Mi, Sys=19.4Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T10:35:59.529+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:36:13.101+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 50.0ms, med: 50.6ms, 90th: 50.6ms, 99th: 50.6ms, 99.9th: 50.6ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:36:56.198+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 7061, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-01T10:37:53.448+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=8.5Mi, Sys=23.5Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T10:37:53.464+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:37:56.223+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 61.0ms, med: 61.7ms, 90th: 61.7ms, 99th: 61.7ms, 99.9th: 61.7ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:39:24.283+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 8030, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-01T10:40:25.202+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 7217, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-01T10:41:22.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=8.7Mi, Sys=19.4Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T10:41:22.713+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:41:25.212+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 54.5ms, med: 57.4ms, 90th: 57.4ms, 99th: 57.4ms, 99.9th: 57.4ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:42:22.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=8.9Mi, Sys=19.4Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T10:42:22.711+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:42:25.215+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:43:50.986+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=8.3Mi, Sys=19.9Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T10:43:51.016+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:44:31.025+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 4.0ms, med: 4.3ms, 90th: 4.3ms, 99th: 4.3ms, 99.9th: 4.3ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:45:53.193+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=8.3Mi, Sys=18.7Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T10:45:53.225+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:46:03.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 4.0ms, med: 4.6ms, 90th: 4.6ms, 99th: 4.6ms, 99.9th: 4.6ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:46:53.196+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=8.6Mi, Sys=18.7Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T10:46:53.228+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:47:03.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:47:53.193+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=8.7Mi, Sys=18.7Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-01T10:47:53.224+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:48:03.387+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:48:53.194+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=8.7Mi, Sys=18.7Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-01T10:48:53.225+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:49:03.393+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:49:53.195+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=8.8Mi, Sys=18.7Mi, NumGC=6","level":"stat"}
+{"@timestamp":"2022-08-01T10:49:53.215+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:50:03.391+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:50:53.194+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.1Mi, Sys=18.7Mi, NumGC=6","level":"stat"}
+{"@timestamp":"2022-08-01T10:50:53.225+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:51:03.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:51:53.193+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=9.2Mi, Sys=18.7Mi, NumGC=7","level":"stat"}
+{"@timestamp":"2022-08-01T10:51:53.224+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:52:03.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:52:53.206+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=9.3Mi, Sys=18.7Mi, NumGC=7","level":"stat"}
+{"@timestamp":"2022-08-01T10:52:53.221+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:53:03.392+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:53:53.200+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=9.4Mi, Sys=18.7Mi, NumGC=8","level":"stat"}
+{"@timestamp":"2022-08-01T10:53:53.215+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:54:03.394+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:54:53.199+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=9.5Mi, Sys=18.7Mi, NumGC=8","level":"stat"}
+{"@timestamp":"2022-08-01T10:54:53.216+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:55:03.387+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:55:53.202+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=9.8Mi, Sys=18.7Mi, NumGC=9","level":"stat"}
+{"@timestamp":"2022-08-01T10:55:53.217+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:56:03.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:56:53.195+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=9.9Mi, Sys=18.7Mi, NumGC=9","level":"stat"}
+{"@timestamp":"2022-08-01T10:56:53.226+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:57:03.388+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:57:53.200+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=9.9Mi, Sys=18.7Mi, NumGC=10","level":"stat"}
+{"@timestamp":"2022-08-01T10:57:53.216+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:58:03.385+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:58:53.198+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=10.0Mi, Sys=18.7Mi, NumGC=10","level":"stat"}
+{"@timestamp":"2022-08-01T10:58:53.229+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T10:59:03.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T10:59:53.203+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=10.1Mi, Sys=18.7Mi, NumGC=11","level":"stat"}
+{"@timestamp":"2022-08-01T10:59:53.218+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:00:03.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:00:53.194+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.4Mi, Sys=18.7Mi, NumGC=11","level":"stat"}
+{"@timestamp":"2022-08-01T11:00:53.225+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:01:03.391+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:01:53.201+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=10.5Mi, Sys=18.7Mi, NumGC=12","level":"stat"}
+{"@timestamp":"2022-08-01T11:01:53.216+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:02:03.395+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:02:53.207+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=10.6Mi, Sys=18.7Mi, NumGC=12","level":"stat"}
+{"@timestamp":"2022-08-01T11:02:53.222+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:03:03.391+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:03:53.194+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=10.7Mi, Sys=18.7Mi, NumGC=13","level":"stat"}
+{"@timestamp":"2022-08-01T11:03:53.225+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:04:03.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:04:53.206+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=10.8Mi, Sys=18.7Mi, NumGC=13","level":"stat"}
+{"@timestamp":"2022-08-01T11:04:53.219+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:05:03.385+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:05:53.208+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=11.1Mi, Sys=18.7Mi, NumGC=14","level":"stat"}
+{"@timestamp":"2022-08-01T11:05:53.224+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:06:03.388+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:06:53.200+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=11.1Mi, Sys=18.7Mi, NumGC=14","level":"stat"}
+{"@timestamp":"2022-08-01T11:06:53.216+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:07:03.387+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:07:53.198+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=11.2Mi, Sys=18.7Mi, NumGC=15","level":"stat"}
+{"@timestamp":"2022-08-01T11:07:53.229+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:08:03.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:08:53.197+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=11.3Mi, Sys=18.7Mi, NumGC=15","level":"stat"}
+{"@timestamp":"2022-08-01T11:08:53.229+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:09:03.391+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:09:53.202+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=11.4Mi, Sys=18.7Mi, NumGC=16","level":"stat"}
+{"@timestamp":"2022-08-01T11:09:53.218+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:10:03.388+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:10:53.199+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=11.7Mi, Sys=18.7Mi, NumGC=16","level":"stat"}
+{"@timestamp":"2022-08-01T11:10:53.230+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:11:03.392+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:11:53.194+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=11.8Mi, Sys=18.7Mi, NumGC=17","level":"stat"}
+{"@timestamp":"2022-08-01T11:11:53.225+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:12:03.389+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:12:53.199+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=11.9Mi, Sys=18.7Mi, NumGC=17","level":"stat"}
+{"@timestamp":"2022-08-01T11:12:53.228+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:13:03.395+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:13:53.197+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=12.0Mi, Sys=18.7Mi, NumGC=18","level":"stat"}
+{"@timestamp":"2022-08-01T11:13:53.229+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:14:03.391+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:14:53.206+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=12.0Mi, Sys=18.7Mi, NumGC=18","level":"stat"}
+{"@timestamp":"2022-08-01T11:14:53.222+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:15:03.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:15:53.196+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=12.3Mi, Sys=18.7Mi, NumGC=19","level":"stat"}
+{"@timestamp":"2022-08-01T11:15:53.228+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:16:03.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:16:53.205+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=12.4Mi, Sys=18.7Mi, NumGC=19","level":"stat"}
+{"@timestamp":"2022-08-01T11:16:53.220+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:17:03.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:17:53.194+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=12.5Mi, Sys=18.7Mi, NumGC=20","level":"stat"}
+{"@timestamp":"2022-08-01T11:17:53.226+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:18:03.385+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:18:53.197+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=12.6Mi, Sys=18.7Mi, NumGC=20","level":"stat"}
+{"@timestamp":"2022-08-01T11:18:53.229+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:19:03.392+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:19:53.204+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=12.7Mi, Sys=18.7Mi, NumGC=21","level":"stat"}
+{"@timestamp":"2022-08-01T11:19:53.220+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:20:03.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:20:53.201+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=13.0Mi, Sys=18.7Mi, NumGC=21","level":"stat"}
+{"@timestamp":"2022-08-01T11:20:53.217+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:21:03.386+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:21:53.208+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=13.1Mi, Sys=18.7Mi, NumGC=22","level":"stat"}
+{"@timestamp":"2022-08-01T11:21:53.222+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:22:03.389+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:22:53.203+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=13.1Mi, Sys=18.7Mi, NumGC=22","level":"stat"}
+{"@timestamp":"2022-08-01T11:22:53.218+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:23:03.392+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:23:53.205+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=13.2Mi, Sys=18.7Mi, NumGC=23","level":"stat"}
+{"@timestamp":"2022-08-01T11:23:53.221+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:24:03.387+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:24:53.194+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=13.3Mi, Sys=18.7Mi, NumGC=23","level":"stat"}
+{"@timestamp":"2022-08-01T11:24:53.225+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:25:03.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:25:53.205+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=13.6Mi, Sys=18.7Mi, NumGC=24","level":"stat"}
+{"@timestamp":"2022-08-01T11:25:53.221+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:26:03.393+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:26:53.194+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=13.7Mi, Sys=18.7Mi, NumGC=24","level":"stat"}
+{"@timestamp":"2022-08-01T11:26:53.225+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:27:03.395+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:27:53.197+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=13.8Mi, Sys=18.7Mi, NumGC=25","level":"stat"}
+{"@timestamp":"2022-08-01T11:27:53.228+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:28:03.394+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:28:53.198+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=13.9Mi, Sys=18.7Mi, NumGC=25","level":"stat"}
+{"@timestamp":"2022-08-01T11:28:53.228+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:29:03.395+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:29:53.196+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=14.0Mi, Sys=18.7Mi, NumGC=26","level":"stat"}
+{"@timestamp":"2022-08-01T11:29:53.227+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:30:03.388+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:30:53.194+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.3Mi, Sys=18.7Mi, NumGC=26","level":"stat"}
+{"@timestamp":"2022-08-01T11:30:53.226+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:31:03.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:31:53.199+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=14.3Mi, Sys=18.7Mi, NumGC=27","level":"stat"}
+{"@timestamp":"2022-08-01T11:31:53.230+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:32:03.386+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:32:53.196+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=14.4Mi, Sys=18.7Mi, NumGC=27","level":"stat"}
+{"@timestamp":"2022-08-01T11:32:53.227+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:33:03.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:33:53.205+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=14.5Mi, Sys=18.7Mi, NumGC=28","level":"stat"}
+{"@timestamp":"2022-08-01T11:33:53.221+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:34:03.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:34:53.199+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=14.6Mi, Sys=18.7Mi, NumGC=28","level":"stat"}
+{"@timestamp":"2022-08-01T11:34:53.229+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:35:03.387+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:35:53.205+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=14.9Mi, Sys=18.7Mi, NumGC=29","level":"stat"}
+{"@timestamp":"2022-08-01T11:35:53.221+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:36:03.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:36:53.193+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=15.0Mi, Sys=18.7Mi, NumGC=29","level":"stat"}
+{"@timestamp":"2022-08-01T11:36:53.225+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:37:03.394+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:37:53.193+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=15.1Mi, Sys=18.7Mi, NumGC=30","level":"stat"}
+{"@timestamp":"2022-08-01T11:37:53.224+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:38:03.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:38:53.201+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=15.2Mi, Sys=18.7Mi, NumGC=30","level":"stat"}
+{"@timestamp":"2022-08-01T11:38:53.217+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:39:03.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:39:53.198+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=15.2Mi, Sys=18.7Mi, NumGC=31","level":"stat"}
+{"@timestamp":"2022-08-01T11:39:53.229+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:40:03.390+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:40:53.204+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=15.5Mi, Sys=18.7Mi, NumGC=31","level":"stat"}
+{"@timestamp":"2022-08-01T11:40:53.219+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:41:03.388+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:41:53.203+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=15.6Mi, Sys=18.7Mi, NumGC=32","level":"stat"}
+{"@timestamp":"2022-08-01T11:41:53.219+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:42:03.389+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:42:53.201+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=15.7Mi, Sys=18.7Mi, NumGC=32","level":"stat"}
+{"@timestamp":"2022-08-01T11:42:53.217+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:43:03.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:43:53.199+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=15.8Mi, Sys=18.7Mi, NumGC=33","level":"stat"}
+{"@timestamp":"2022-08-01T11:43:53.229+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:44:03.391+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:44:53.194+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=15.9Mi, Sys=18.7Mi, NumGC=33","level":"stat"}
+{"@timestamp":"2022-08-01T11:44:53.225+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:45:03.390+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:45:53.207+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=16.2Mi, Sys=18.7Mi, NumGC=34","level":"stat"}
+{"@timestamp":"2022-08-01T11:45:53.222+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:46:03.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:46:53.196+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=16.3Mi, Sys=18.7Mi, NumGC=34","level":"stat"}
+{"@timestamp":"2022-08-01T11:46:53.227+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:47:03.395+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:47:53.214+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=16.3Mi, Sys=18.7Mi, NumGC=35","level":"stat"}
+{"@timestamp":"2022-08-01T11:47:53.220+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:48:03.390+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:48:53.198+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=16.4Mi, Sys=18.7Mi, NumGC=35","level":"stat"}
+{"@timestamp":"2022-08-01T11:48:53.229+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:49:03.385+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:49:53.196+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=16.5Mi, Sys=18.7Mi, NumGC=36","level":"stat"}
+{"@timestamp":"2022-08-01T11:49:53.228+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:50:03.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:50:53.204+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=16.8Mi, Sys=18.7Mi, NumGC=36","level":"stat"}
+{"@timestamp":"2022-08-01T11:50:53.219+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:51:03.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:51:53.194+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=16.9Mi, Sys=18.7Mi, NumGC=37","level":"stat"}
+{"@timestamp":"2022-08-01T11:51:53.225+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:52:03.386+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:52:53.205+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=17.0Mi, Sys=18.7Mi, NumGC=37","level":"stat"}
+{"@timestamp":"2022-08-01T11:52:53.220+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:53:03.394+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:53:53.194+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=17.1Mi, Sys=18.7Mi, NumGC=38","level":"stat"}
+{"@timestamp":"2022-08-01T11:53:53.225+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:54:03.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:54:53.204+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=17.2Mi, Sys=18.7Mi, NumGC=38","level":"stat"}
+{"@timestamp":"2022-08-01T11:54:53.219+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:55:03.388+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:55:53.208+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=17.5Mi, Sys=18.7Mi, NumGC=39","level":"stat"}
+{"@timestamp":"2022-08-01T11:55:53.222+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:56:03.391+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:56:53.199+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=17.6Mi, Sys=18.7Mi, NumGC=39","level":"stat"}
+{"@timestamp":"2022-08-01T11:56:53.216+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:57:03.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:57:53.201+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=17.6Mi, Sys=18.7Mi, NumGC=40","level":"stat"}
+{"@timestamp":"2022-08-01T11:57:53.217+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:58:03.390+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:58:53.198+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=17.7Mi, Sys=18.7Mi, NumGC=40","level":"stat"}
+{"@timestamp":"2022-08-01T11:58:53.229+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T11:59:03.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T11:59:53.193+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=17.8Mi, Sys=18.7Mi, NumGC=41","level":"stat"}
+{"@timestamp":"2022-08-01T11:59:53.225+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:00:03.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:00:53.198+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=18.1Mi, Sys=18.7Mi, NumGC=41","level":"stat"}
+{"@timestamp":"2022-08-01T12:00:53.229+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:01:03.385+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:01:53.194+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=18.2Mi, Sys=18.7Mi, NumGC=42","level":"stat"}
+{"@timestamp":"2022-08-01T12:01:53.225+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:02:03.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:02:53.203+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=18.3Mi, Sys=18.7Mi, NumGC=42","level":"stat"}
+{"@timestamp":"2022-08-01T12:02:53.219+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:03:03.388+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:03:53.203+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=18.4Mi, Sys=18.7Mi, NumGC=43","level":"stat"}
+{"@timestamp":"2022-08-01T12:03:53.219+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:04:03.389+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:04:53.195+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=18.4Mi, Sys=18.7Mi, NumGC=43","level":"stat"}
+{"@timestamp":"2022-08-01T12:04:53.225+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:05:03.393+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:05:53.201+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=18.7Mi, Sys=18.7Mi, NumGC=44","level":"stat"}
+{"@timestamp":"2022-08-01T12:05:53.217+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:06:03.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:06:53.198+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=18.8Mi, Sys=18.7Mi, NumGC=44","level":"stat"}
+{"@timestamp":"2022-08-01T12:06:53.229+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:07:03.389+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:07:53.201+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=18.9Mi, Sys=18.7Mi, NumGC=45","level":"stat"}
+{"@timestamp":"2022-08-01T12:07:53.216+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:08:03.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:08:53.201+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=19.0Mi, Sys=18.7Mi, NumGC=45","level":"stat"}
+{"@timestamp":"2022-08-01T12:08:53.218+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:09:03.391+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:09:53.198+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=19.1Mi, Sys=18.7Mi, NumGC=46","level":"stat"}
+{"@timestamp":"2022-08-01T12:09:53.228+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:10:03.387+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:10:53.195+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=19.4Mi, Sys=18.7Mi, NumGC=46","level":"stat"}
+{"@timestamp":"2022-08-01T12:10:53.227+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:11:03.390+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:11:53.200+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=19.5Mi, Sys=18.7Mi, NumGC=47","level":"stat"}
+{"@timestamp":"2022-08-01T12:11:53.230+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:12:03.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:12:53.201+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=19.6Mi, Sys=18.7Mi, NumGC=47","level":"stat"}
+{"@timestamp":"2022-08-01T12:12:53.217+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:13:03.395+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:13:53.196+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=19.6Mi, Sys=18.7Mi, NumGC=48","level":"stat"}
+{"@timestamp":"2022-08-01T12:13:53.228+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:14:03.394+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:14:53.200+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=19.7Mi, Sys=18.7Mi, NumGC=48","level":"stat"}
+{"@timestamp":"2022-08-01T12:14:53.216+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:15:03.387+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:15:53.197+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=20.0Mi, Sys=18.7Mi, NumGC=49","level":"stat"}
+{"@timestamp":"2022-08-01T12:15:53.229+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:16:03.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:16:53.194+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=20.1Mi, Sys=18.7Mi, NumGC=49","level":"stat"}
+{"@timestamp":"2022-08-01T12:16:53.225+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:17:03.388+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:17:53.195+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=20.2Mi, Sys=18.7Mi, NumGC=50","level":"stat"}
+{"@timestamp":"2022-08-01T12:17:53.227+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:18:03.388+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:18:53.196+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=20.3Mi, Sys=18.7Mi, NumGC=50","level":"stat"}
+{"@timestamp":"2022-08-01T12:18:53.227+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:19:03.394+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:19:53.203+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=20.4Mi, Sys=18.7Mi, NumGC=51","level":"stat"}
+{"@timestamp":"2022-08-01T12:19:53.218+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:20:03.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:20:53.201+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=20.7Mi, Sys=18.7Mi, NumGC=51","level":"stat"}
+{"@timestamp":"2022-08-01T12:20:53.217+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:21:03.392+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:21:53.197+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=20.8Mi, Sys=18.7Mi, NumGC=52","level":"stat"}
+{"@timestamp":"2022-08-01T12:21:53.228+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:22:03.394+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:22:53.201+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=20.8Mi, Sys=18.7Mi, NumGC=52","level":"stat"}
+{"@timestamp":"2022-08-01T12:22:53.217+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:23:03.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:23:53.197+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=20.9Mi, Sys=18.7Mi, NumGC=53","level":"stat"}
+{"@timestamp":"2022-08-01T12:23:53.229+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:24:03.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:24:53.198+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=21.0Mi, Sys=18.7Mi, NumGC=53","level":"stat"}
+{"@timestamp":"2022-08-01T12:24:53.229+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:25:03.385+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:25:53.208+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=21.3Mi, Sys=18.7Mi, NumGC=54","level":"stat"}
+{"@timestamp":"2022-08-01T12:25:53.223+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:26:03.388+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:26:53.194+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=21.4Mi, Sys=18.7Mi, NumGC=54","level":"stat"}
+{"@timestamp":"2022-08-01T12:26:53.226+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:27:03.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:27:53.193+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=21.5Mi, Sys=18.7Mi, NumGC=55","level":"stat"}
+{"@timestamp":"2022-08-01T12:27:53.224+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:28:03.390+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:28:53.203+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=21.6Mi, Sys=18.7Mi, NumGC=55","level":"stat"}
+{"@timestamp":"2022-08-01T12:28:53.219+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:29:03.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:29:53.201+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=21.6Mi, Sys=18.7Mi, NumGC=56","level":"stat"}
+{"@timestamp":"2022-08-01T12:29:53.218+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:30:03.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:30:53.204+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=21.9Mi, Sys=18.7Mi, NumGC=56","level":"stat"}
+{"@timestamp":"2022-08-01T12:30:53.220+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:31:03.394+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:31:53.194+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=22.0Mi, Sys=18.7Mi, NumGC=57","level":"stat"}
+{"@timestamp":"2022-08-01T12:31:53.226+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:32:03.390+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:32:53.198+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=22.1Mi, Sys=18.7Mi, NumGC=57","level":"stat"}
+{"@timestamp":"2022-08-01T12:32:53.230+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:33:03.390+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:33:53.208+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=22.2Mi, Sys=18.7Mi, NumGC=58","level":"stat"}
+{"@timestamp":"2022-08-01T12:33:53.224+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:34:03.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:34:53.198+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=22.3Mi, Sys=18.7Mi, NumGC=58","level":"stat"}
+{"@timestamp":"2022-08-01T12:34:53.229+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:35:03.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:35:53.193+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=22.6Mi, Sys=18.7Mi, NumGC=59","level":"stat"}
+{"@timestamp":"2022-08-01T12:35:53.226+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:36:03.385+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:36:53.201+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=22.7Mi, Sys=18.7Mi, NumGC=59","level":"stat"}
+{"@timestamp":"2022-08-01T12:36:53.218+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:37:03.389+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:37:53.205+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=22.7Mi, Sys=18.7Mi, NumGC=60","level":"stat"}
+{"@timestamp":"2022-08-01T12:37:53.221+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:38:03.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:38:53.197+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=22.8Mi, Sys=18.7Mi, NumGC=60","level":"stat"}
+{"@timestamp":"2022-08-01T12:38:53.228+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:39:03.391+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:39:53.195+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=22.9Mi, Sys=18.7Mi, NumGC=61","level":"stat"}
+{"@timestamp":"2022-08-01T12:39:53.226+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:40:03.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:40:53.199+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=23.2Mi, Sys=18.7Mi, NumGC=61","level":"stat"}
+{"@timestamp":"2022-08-01T12:40:53.216+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:41:03.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:41:53.199+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=23.3Mi, Sys=18.7Mi, NumGC=62","level":"stat"}
+{"@timestamp":"2022-08-01T12:41:53.231+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:42:03.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:42:53.199+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=23.4Mi, Sys=18.7Mi, NumGC=62","level":"stat"}
+{"@timestamp":"2022-08-01T12:42:53.231+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:43:03.386+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:43:53.203+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=23.5Mi, Sys=18.7Mi, NumGC=63","level":"stat"}
+{"@timestamp":"2022-08-01T12:43:53.219+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:44:03.385+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:44:53.198+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=23.6Mi, Sys=18.7Mi, NumGC=63","level":"stat"}
+{"@timestamp":"2022-08-01T12:44:53.228+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:45:03.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:45:53.205+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=23.9Mi, Sys=18.7Mi, NumGC=64","level":"stat"}
+{"@timestamp":"2022-08-01T12:45:53.220+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:46:03.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:46:53.196+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=24.0Mi, Sys=18.7Mi, NumGC=64","level":"stat"}
+{"@timestamp":"2022-08-01T12:46:53.228+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:47:03.391+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:47:53.201+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=24.0Mi, Sys=18.7Mi, NumGC=65","level":"stat"}
+{"@timestamp":"2022-08-01T12:47:53.216+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:48:03.390+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:48:53.199+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=24.1Mi, Sys=18.7Mi, NumGC=65","level":"stat"}
+{"@timestamp":"2022-08-01T12:48:53.230+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:49:03.394+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:49:53.193+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=24.2Mi, Sys=18.7Mi, NumGC=66","level":"stat"}
+{"@timestamp":"2022-08-01T12:49:53.224+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:50:03.393+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:50:53.201+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=24.5Mi, Sys=18.7Mi, NumGC=66","level":"stat"}
+{"@timestamp":"2022-08-01T12:50:53.217+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:51:03.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:51:53.195+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=24.6Mi, Sys=18.7Mi, NumGC=67","level":"stat"}
+{"@timestamp":"2022-08-01T12:51:53.227+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:52:03.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:52:53.194+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=24.7Mi, Sys=18.7Mi, NumGC=67","level":"stat"}
+{"@timestamp":"2022-08-01T12:52:53.225+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:53:03.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:53:53.198+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=24.8Mi, Sys=18.7Mi, NumGC=68","level":"stat"}
+{"@timestamp":"2022-08-01T12:53:53.230+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:54:03.390+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:54:53.196+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=24.9Mi, Sys=18.7Mi, NumGC=68","level":"stat"}
+{"@timestamp":"2022-08-01T12:54:53.227+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:55:03.387+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:55:53.206+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=25.1Mi, Sys=18.7Mi, NumGC=69","level":"stat"}
+{"@timestamp":"2022-08-01T12:55:53.221+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:56:03.388+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:56:53.205+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=25.2Mi, Sys=18.7Mi, NumGC=69","level":"stat"}
+{"@timestamp":"2022-08-01T12:56:53.221+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:57:03.387+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:57:53.202+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=25.3Mi, Sys=18.7Mi, NumGC=70","level":"stat"}
+{"@timestamp":"2022-08-01T12:57:53.218+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:58:03.394+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:58:53.202+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=25.4Mi, Sys=18.7Mi, NumGC=70","level":"stat"}
+{"@timestamp":"2022-08-01T12:58:53.217+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T12:59:03.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T12:59:53.195+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=25.5Mi, Sys=18.7Mi, NumGC=71","level":"stat"}
+{"@timestamp":"2022-08-01T12:59:53.226+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:00:03.391+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:00:53.197+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=25.8Mi, Sys=18.7Mi, NumGC=71","level":"stat"}
+{"@timestamp":"2022-08-01T13:00:53.227+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:01:03.391+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:01:53.197+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=25.9Mi, Sys=18.7Mi, NumGC=72","level":"stat"}
+{"@timestamp":"2022-08-01T13:01:53.229+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:02:03.393+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:02:53.197+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=26.0Mi, Sys=18.7Mi, NumGC=72","level":"stat"}
+{"@timestamp":"2022-08-01T13:02:53.229+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:03:03.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:03:53.194+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=26.0Mi, Sys=18.7Mi, NumGC=73","level":"stat"}
+{"@timestamp":"2022-08-01T13:03:53.225+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:04:03.388+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:04:53.197+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=26.1Mi, Sys=18.7Mi, NumGC=73","level":"stat"}
+{"@timestamp":"2022-08-01T13:04:53.229+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:05:03.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:05:53.199+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=26.4Mi, Sys=18.7Mi, NumGC=74","level":"stat"}
+{"@timestamp":"2022-08-01T13:05:53.230+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:06:03.388+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:06:53.200+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=26.5Mi, Sys=18.7Mi, NumGC=74","level":"stat"}
+{"@timestamp":"2022-08-01T13:06:53.216+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:07:03.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:07:53.208+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=26.6Mi, Sys=18.7Mi, NumGC=75","level":"stat"}
+{"@timestamp":"2022-08-01T13:07:53.223+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:08:03.392+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:08:53.196+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=26.7Mi, Sys=18.7Mi, NumGC=75","level":"stat"}
+{"@timestamp":"2022-08-01T13:08:53.227+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:09:03.389+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:09:53.202+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=26.8Mi, Sys=18.7Mi, NumGC=76","level":"stat"}
+{"@timestamp":"2022-08-01T13:09:53.217+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:10:03.393+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:10:53.200+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=27.1Mi, Sys=18.7Mi, NumGC=76","level":"stat"}
+{"@timestamp":"2022-08-01T13:10:53.217+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:11:03.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:11:53.200+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=27.1Mi, Sys=18.7Mi, NumGC=77","level":"stat"}
+{"@timestamp":"2022-08-01T13:11:53.216+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:12:03.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:12:53.199+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=27.2Mi, Sys=18.7Mi, NumGC=77","level":"stat"}
+{"@timestamp":"2022-08-01T13:12:53.230+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:13:03.388+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:13:53.193+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=27.3Mi, Sys=18.7Mi, NumGC=78","level":"stat"}
+{"@timestamp":"2022-08-01T13:13:53.224+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:14:03.392+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:14:53.198+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=27.4Mi, Sys=18.7Mi, NumGC=78","level":"stat"}
+{"@timestamp":"2022-08-01T13:14:53.229+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:15:03.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:15:53.195+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=27.7Mi, Sys=18.7Mi, NumGC=79","level":"stat"}
+{"@timestamp":"2022-08-01T13:15:53.227+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:16:03.389+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:16:53.194+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=27.8Mi, Sys=18.7Mi, NumGC=79","level":"stat"}
+{"@timestamp":"2022-08-01T13:16:53.225+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:17:03.388+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:17:53.203+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=27.9Mi, Sys=18.7Mi, NumGC=80","level":"stat"}
+{"@timestamp":"2022-08-01T13:17:53.219+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:18:03.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:18:53.198+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=28.0Mi, Sys=18.7Mi, NumGC=80","level":"stat"}
+{"@timestamp":"2022-08-01T13:18:53.230+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:19:03.391+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:19:53.197+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=28.1Mi, Sys=18.7Mi, NumGC=81","level":"stat"}
+{"@timestamp":"2022-08-01T13:19:53.228+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:20:03.391+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:20:53.198+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=28.4Mi, Sys=18.7Mi, NumGC=81","level":"stat"}
+{"@timestamp":"2022-08-01T13:20:53.229+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:21:03.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:21:53.198+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=28.4Mi, Sys=18.7Mi, NumGC=82","level":"stat"}
+{"@timestamp":"2022-08-01T13:21:53.230+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:22:03.385+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:22:53.193+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=28.5Mi, Sys=18.7Mi, NumGC=82","level":"stat"}
+{"@timestamp":"2022-08-01T13:22:53.224+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:23:03.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:23:53.198+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=28.6Mi, Sys=18.7Mi, NumGC=83","level":"stat"}
+{"@timestamp":"2022-08-01T13:23:53.228+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:24:03.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:24:53.201+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=28.7Mi, Sys=18.7Mi, NumGC=83","level":"stat"}
+{"@timestamp":"2022-08-01T13:24:53.217+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:25:03.387+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:25:53.205+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=29.0Mi, Sys=18.7Mi, NumGC=84","level":"stat"}
+{"@timestamp":"2022-08-01T13:25:53.220+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:26:03.386+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:26:53.204+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=29.1Mi, Sys=18.7Mi, NumGC=84","level":"stat"}
+{"@timestamp":"2022-08-01T13:26:53.220+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:27:03.393+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:27:53.207+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=29.2Mi, Sys=18.7Mi, NumGC=85","level":"stat"}
+{"@timestamp":"2022-08-01T13:27:53.222+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:28:03.390+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:28:53.194+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=29.3Mi, Sys=18.7Mi, NumGC=85","level":"stat"}
+{"@timestamp":"2022-08-01T13:28:53.226+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:29:03.394+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:29:53.197+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=29.3Mi, Sys=18.7Mi, NumGC=86","level":"stat"}
+{"@timestamp":"2022-08-01T13:29:53.228+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:30:03.390+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:30:53.207+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=29.6Mi, Sys=18.7Mi, NumGC=86","level":"stat"}
+{"@timestamp":"2022-08-01T13:30:53.222+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:31:03.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:31:53.195+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=29.7Mi, Sys=18.7Mi, NumGC=87","level":"stat"}
+{"@timestamp":"2022-08-01T13:31:53.227+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:32:03.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:32:53.196+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=29.8Mi, Sys=18.7Mi, NumGC=87","level":"stat"}
+{"@timestamp":"2022-08-01T13:32:53.227+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:33:03.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:33:53.232+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=29.9Mi, Sys=18.7Mi, NumGC=88","level":"stat"}
+{"@timestamp":"2022-08-01T13:33:53.232+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:34:03.387+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T13:34:53.206+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=30.0Mi, Sys=18.7Mi, NumGC=88","level":"stat"}
+{"@timestamp":"2022-08-01T13:34:53.221+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T13:35:03.390+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T14:59:50.967+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=8.1Mi, Sys=18.9Mi, NumGC=3","level":"stat"}
+{"@timestamp":"2022-08-01T14:59:51.023+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:00:50.981+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=8.3Mi, Sys=18.9Mi, NumGC=3","level":"stat"}
+{"@timestamp":"2022-08-01T15:00:51.028+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:01:11.496+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 9404, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-01T15:01:50.973+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=8.9Mi, Sys=19.7Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T15:01:51.036+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:02:11.517+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.1/s, drops: 0, avg time: 730.3ms, med: 1994.4ms, 90th: 1994.4ms, 99th: 1994.4ms, 99.9th: 1994.4ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:02:50.978+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.6Mi, TotalAlloc=9.5Mi, Sys=19.7Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T15:02:51.025+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:03:11.516+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:03:50.978+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=9.6Mi, Sys=19.7Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-01T15:03:51.026+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:04:11.800+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 11206, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-01T15:05:04.045+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=9.0Mi, Sys=23.5Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T15:05:04.085+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:05:11.822+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 260.0ms, med: 381.4ms, 90th: 381.4ms, 99th: 381.4ms, 99.9th: 381.4ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:06:04.032+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=9.2Mi, Sys=23.5Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T15:06:04.094+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:06:11.824+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:07:04.034+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.3Mi, Sys=23.5Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-01T15:07:04.097+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:07:11.825+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:07:54.644+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 8282, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-01T15:08:47.982+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=8.8Mi, Sys=19.7Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T15:08:48.049+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:08:56.585+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 1999.0ms, med: 1999.1ms, 90th: 1999.1ms, 99th: 1999.1ms, 99.9th: 1999.1ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:09:47.985+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=9.0Mi, Sys=19.7Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T15:09:48.063+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:10:06.115+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 7030, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-01T15:10:57.434+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=9.0Mi, Sys=19.4Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T15:10:57.486+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:11:06.137+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 196.5ms, med: 329.0ms, 90th: 329.0ms, 99th: 329.0ms, 99.9th: 329.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:11:57.435+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=9.2Mi, Sys=19.4Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T15:11:57.497+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:12:06.142+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:12:57.431+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.3Mi, Sys=19.7Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-01T15:12:57.494+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:13:06.138+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:13:57.440+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=9.4Mi, Sys=19.7Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-01T15:13:57.486+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:14:06.137+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:14:57.436+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.7Mi, Sys=19.7Mi, NumGC=6","level":"stat"}
+{"@timestamp":"2022-08-01T15:14:57.499+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:15:06.132+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:15:57.431+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=9.8Mi, Sys=19.7Mi, NumGC=6","level":"stat"}
+{"@timestamp":"2022-08-01T15:15:57.495+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:16:06.140+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:17:09.334+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 6739, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-01T15:18:01.654+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 6215, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-01T15:18:55.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=8.8Mi, Sys=20.4Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T15:18:55.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:19:01.907+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 278.0ms, med: 279.0ms, 90th: 279.0ms, 99th: 279.0ms, 99.9th: 279.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:19:55.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.4Mi, TotalAlloc=9.0Mi, Sys=20.4Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T15:19:55.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:20:01.896+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:20:55.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.1Mi, Sys=20.4Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-01T15:20:55.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:21:01.899+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:21:33.716+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 7358, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-01T15:22:20.366+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=8.8Mi, Sys=19.4Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T15:22:20.398+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:22:33.948+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 277.0ms, med: 277.4ms, 90th: 277.4ms, 99th: 277.4ms, 99.9th: 277.4ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:23:41.735+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 6283, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-01T15:24:34.443+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=8.9Mi, Sys=19.2Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T15:24:34.474+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:24:41.937+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 236.0ms, med: 236.0ms, 90th: 236.0ms, 99th: 236.0ms, 99.9th: 236.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:25:34.454+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=9.1Mi, Sys=19.2Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T15:25:34.484+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:25:41.938+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:26:34.451+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.2Mi, Sys=19.2Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-01T15:26:34.483+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:26:41.937+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:27:36.745+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 7617, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-01T15:28:27.344+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=8.9Mi, Sys=20.2Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T15:28:27.374+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:28:49.929+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 6145, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-01T15:29:44.212+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=8.9Mi, Sys=19.7Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T15:29:44.244+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:29:50.479+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 580.0ms, med: 580.7ms, 90th: 580.7ms, 99th: 580.7ms, 99.9th: 580.7ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:30:44.208+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=9.1Mi, Sys=19.7Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T15:30:44.239+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:30:50.476+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:31:53.013+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 6338, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-01T15:32:47.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=8.8Mi, Sys=19.7Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T15:32:47.290+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:32:53.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 398.0ms, med: 398.9ms, 90th: 398.9ms, 99th: 398.9ms, 99.9th: 398.9ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:33:47.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=9.0Mi, Sys=19.7Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T15:33:47.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:33:53.385+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:34:47.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.1Mi, Sys=19.9Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-01T15:34:47.291+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:34:53.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:35:47.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.2Mi, Sys=19.9Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-01T15:35:47.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:35:53.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:36:47.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.3Mi, Sys=19.9Mi, NumGC=6","level":"stat"}
+{"@timestamp":"2022-08-01T15:36:47.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:36:53.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:37:47.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=9.5Mi, Sys=19.9Mi, NumGC=6","level":"stat"}
+{"@timestamp":"2022-08-01T15:37:47.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:37:53.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:38:47.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.6Mi, Sys=20.2Mi, NumGC=7","level":"stat"}
+{"@timestamp":"2022-08-01T15:38:47.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:38:53.385+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:39:47.283+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.7Mi, Sys=20.2Mi, NumGC=7","level":"stat"}
+{"@timestamp":"2022-08-01T15:39:47.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:39:53.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:40:47.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.7Mi, Sys=20.2Mi, NumGC=8","level":"stat"}
+{"@timestamp":"2022-08-01T15:40:47.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:40:53.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:41:47.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.8Mi, Sys=20.2Mi, NumGC=8","level":"stat"}
+{"@timestamp":"2022-08-01T15:41:47.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:41:53.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:42:47.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=10.0Mi, Sys=20.2Mi, NumGC=9","level":"stat"}
+{"@timestamp":"2022-08-01T15:42:47.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:42:53.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:43:47.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.1Mi, Sys=20.2Mi, NumGC=9","level":"stat"}
+{"@timestamp":"2022-08-01T15:43:47.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:43:53.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:44:47.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=10.2Mi, Sys=20.2Mi, NumGC=10","level":"stat"}
+{"@timestamp":"2022-08-01T15:44:47.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:44:53.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:45:47.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.3Mi, Sys=20.2Mi, NumGC=10","level":"stat"}
+{"@timestamp":"2022-08-01T15:45:47.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:45:53.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:46:47.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=10.4Mi, Sys=20.2Mi, NumGC=11","level":"stat"}
+{"@timestamp":"2022-08-01T15:46:47.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:46:53.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:48:39.155+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 6428, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-01T15:49:25.227+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=8.9Mi, Sys=19.4Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T15:49:25.243+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:49:39.497+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 376.0ms, med: 376.3ms, 90th: 376.3ms, 99th: 376.3ms, 99.9th: 376.3ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:50:25.226+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=9.1Mi, Sys=19.4Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T15:50:25.258+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:50:39.492+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:51:25.233+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.2Mi, Sys=19.4Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-01T15:51:25.248+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:51:39.492+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:52:25.231+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=9.3Mi, Sys=19.4Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-01T15:52:25.247+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:52:39.493+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:53:25.230+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.4Mi, Sys=19.4Mi, NumGC=6","level":"stat"}
+{"@timestamp":"2022-08-01T15:53:25.245+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:53:39.492+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:54:25.232+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=9.6Mi, Sys=19.4Mi, NumGC=6","level":"stat"}
+{"@timestamp":"2022-08-01T15:54:25.248+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:54:39.493+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:55:25.224+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.7Mi, Sys=19.4Mi, NumGC=7","level":"stat"}
+{"@timestamp":"2022-08-01T15:55:25.254+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:55:39.497+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:56:25.224+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.7Mi, Sys=19.4Mi, NumGC=7","level":"stat"}
+{"@timestamp":"2022-08-01T15:56:25.255+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:56:39.492+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:57:25.230+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.8Mi, Sys=19.4Mi, NumGC=8","level":"stat"}
+{"@timestamp":"2022-08-01T15:57:25.246+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:57:39.499+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:58:25.227+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.9Mi, Sys=19.4Mi, NumGC=8","level":"stat"}
+{"@timestamp":"2022-08-01T15:58:25.257+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:58:39.495+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T15:59:25.222+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=10.1Mi, Sys=19.4Mi, NumGC=9","level":"stat"}
+{"@timestamp":"2022-08-01T15:59:25.252+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T15:59:39.492+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:00:25.225+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.2Mi, Sys=19.4Mi, NumGC=9","level":"stat"}
+{"@timestamp":"2022-08-01T16:00:25.256+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:00:39.492+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:01:25.220+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=10.3Mi, Sys=19.4Mi, NumGC=10","level":"stat"}
+{"@timestamp":"2022-08-01T16:01:25.251+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:01:39.503+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:02:25.229+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.4Mi, Sys=19.4Mi, NumGC=10","level":"stat"}
+{"@timestamp":"2022-08-01T16:02:25.244+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:02:39.504+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:03:25.221+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=10.5Mi, Sys=19.4Mi, NumGC=11","level":"stat"}
+{"@timestamp":"2022-08-01T16:03:25.253+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:04:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=8.3Mi, Sys=18.9Mi, NumGC=3","level":"stat"}
+{"@timestamp":"2022-08-01T16:04:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:05:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.3Mi, TotalAlloc=8.6Mi, Sys=18.9Mi, NumGC=3","level":"stat"}
+{"@timestamp":"2022-08-01T16:05:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 2, pass: 2, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:06:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 8.0ms, med: 11.0ms, 90th: 11.0ms, 99th: 11.0ms, 99.9th: 11.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:06:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=8.7Mi, Sys=19.4Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T16:06:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:07:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:07:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=8.8Mi, Sys=19.4Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-01T16:07:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:08:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:08:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=8.9Mi, Sys=19.4Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-01T16:08:44.291+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:09:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:09:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.1Mi, Sys=19.4Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-01T16:09:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:10:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:10:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.3Mi, Sys=19.4Mi, NumGC=6","level":"stat"}
+{"@timestamp":"2022-08-01T16:10:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:11:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:11:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.3Mi, Sys=19.4Mi, NumGC=6","level":"stat"}
+{"@timestamp":"2022-08-01T16:11:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:12:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:12:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=9.4Mi, Sys=19.4Mi, NumGC=7","level":"stat"}
+{"@timestamp":"2022-08-01T16:12:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:13:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:13:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=9.5Mi, Sys=19.4Mi, NumGC=7","level":"stat"}
+{"@timestamp":"2022-08-01T16:13:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:14:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:14:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=9.7Mi, Sys=19.4Mi, NumGC=8","level":"stat"}
+{"@timestamp":"2022-08-01T16:14:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:15:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:15:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.9Mi, Sys=19.4Mi, NumGC=8","level":"stat"}
+{"@timestamp":"2022-08-01T16:15:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:16:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:16:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=10.0Mi, Sys=19.4Mi, NumGC=9","level":"stat"}
+{"@timestamp":"2022-08-01T16:16:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:17:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:17:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=10.1Mi, Sys=19.4Mi, NumGC=9","level":"stat"}
+{"@timestamp":"2022-08-01T16:17:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:18:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:18:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=10.2Mi, Sys=19.4Mi, NumGC=10","level":"stat"}
+{"@timestamp":"2022-08-01T16:18:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:19:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:19:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=10.4Mi, Sys=19.4Mi, NumGC=10","level":"stat"}
+{"@timestamp":"2022-08-01T16:19:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:20:20.418+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:20:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=10.6Mi, Sys=19.4Mi, NumGC=11","level":"stat"}
+{"@timestamp":"2022-08-01T16:20:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:21:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:21:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=10.6Mi, Sys=19.4Mi, NumGC=11","level":"stat"}
+{"@timestamp":"2022-08-01T16:21:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:22:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:22:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=10.7Mi, Sys=19.4Mi, NumGC=12","level":"stat"}
+{"@timestamp":"2022-08-01T16:22:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:23:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:23:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=10.8Mi, Sys=19.4Mi, NumGC=12","level":"stat"}
+{"@timestamp":"2022-08-01T16:23:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:24:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:24:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=11.0Mi, Sys=19.4Mi, NumGC=13","level":"stat"}
+{"@timestamp":"2022-08-01T16:24:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:25:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:25:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=11.2Mi, Sys=19.4Mi, NumGC=13","level":"stat"}
+{"@timestamp":"2022-08-01T16:25:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:26:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:26:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=11.3Mi, Sys=19.4Mi, NumGC=14","level":"stat"}
+{"@timestamp":"2022-08-01T16:26:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:27:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:27:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=11.4Mi, Sys=19.4Mi, NumGC=14","level":"stat"}
+{"@timestamp":"2022-08-01T16:27:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:28:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:28:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=11.5Mi, Sys=19.4Mi, NumGC=15","level":"stat"}
+{"@timestamp":"2022-08-01T16:28:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:29:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:29:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=11.7Mi, Sys=19.4Mi, NumGC=15","level":"stat"}
+{"@timestamp":"2022-08-01T16:29:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:30:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:30:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=11.8Mi, Sys=19.7Mi, NumGC=16","level":"stat"}
+{"@timestamp":"2022-08-01T16:30:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:31:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:31:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=11.9Mi, Sys=19.7Mi, NumGC=16","level":"stat"}
+{"@timestamp":"2022-08-01T16:31:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:32:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:32:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=12.0Mi, Sys=19.7Mi, NumGC=17","level":"stat"}
+{"@timestamp":"2022-08-01T16:32:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:33:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:33:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=12.1Mi, Sys=19.7Mi, NumGC=17","level":"stat"}
+{"@timestamp":"2022-08-01T16:33:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:34:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:34:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=12.3Mi, Sys=19.7Mi, NumGC=18","level":"stat"}
+{"@timestamp":"2022-08-01T16:34:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:35:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:35:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=12.5Mi, Sys=19.7Mi, NumGC=18","level":"stat"}
+{"@timestamp":"2022-08-01T16:35:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:36:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:36:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=12.6Mi, Sys=19.7Mi, NumGC=19","level":"stat"}
+{"@timestamp":"2022-08-01T16:36:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:37:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:37:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=12.7Mi, Sys=19.7Mi, NumGC=19","level":"stat"}
+{"@timestamp":"2022-08-01T16:37:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:38:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:38:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=12.7Mi, Sys=19.7Mi, NumGC=20","level":"stat"}
+{"@timestamp":"2022-08-01T16:38:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:39:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:39:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=12.9Mi, Sys=19.7Mi, NumGC=20","level":"stat"}
+{"@timestamp":"2022-08-01T16:39:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:40:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:40:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=13.1Mi, Sys=19.7Mi, NumGC=21","level":"stat"}
+{"@timestamp":"2022-08-01T16:40:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:41:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:41:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=13.2Mi, Sys=19.7Mi, NumGC=21","level":"stat"}
+{"@timestamp":"2022-08-01T16:41:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:42:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:42:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=13.3Mi, Sys=19.7Mi, NumGC=22","level":"stat"}
+{"@timestamp":"2022-08-01T16:42:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:43:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:43:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=13.4Mi, Sys=19.7Mi, NumGC=22","level":"stat"}
+{"@timestamp":"2022-08-01T16:43:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:44:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:44:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=13.6Mi, Sys=19.7Mi, NumGC=23","level":"stat"}
+{"@timestamp":"2022-08-01T16:44:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:45:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:45:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=13.8Mi, Sys=19.7Mi, NumGC=23","level":"stat"}
+{"@timestamp":"2022-08-01T16:45:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:46:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:46:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=13.9Mi, Sys=19.7Mi, NumGC=24","level":"stat"}
+{"@timestamp":"2022-08-01T16:46:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:47:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:47:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=13.9Mi, Sys=19.7Mi, NumGC=24","level":"stat"}
+{"@timestamp":"2022-08-01T16:47:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:48:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:48:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=14.0Mi, Sys=19.7Mi, NumGC=25","level":"stat"}
+{"@timestamp":"2022-08-01T16:48:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:49:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:49:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=14.2Mi, Sys=19.7Mi, NumGC=25","level":"stat"}
+{"@timestamp":"2022-08-01T16:49:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:50:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:50:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=14.4Mi, Sys=19.7Mi, NumGC=26","level":"stat"}
+{"@timestamp":"2022-08-01T16:50:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:51:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:51:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=14.5Mi, Sys=19.7Mi, NumGC=26","level":"stat"}
+{"@timestamp":"2022-08-01T16:51:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:52:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:52:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=14.6Mi, Sys=19.7Mi, NumGC=27","level":"stat"}
+{"@timestamp":"2022-08-01T16:52:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:53:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:53:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=14.7Mi, Sys=19.7Mi, NumGC=27","level":"stat"}
+{"@timestamp":"2022-08-01T16:53:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:54:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:54:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=14.9Mi, Sys=19.7Mi, NumGC=28","level":"stat"}
+{"@timestamp":"2022-08-01T16:54:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:55:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:55:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=15.1Mi, Sys=19.7Mi, NumGC=28","level":"stat"}
+{"@timestamp":"2022-08-01T16:55:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:56:20.402+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:56:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=15.2Mi, Sys=19.7Mi, NumGC=29","level":"stat"}
+{"@timestamp":"2022-08-01T16:56:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:57:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:57:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=15.2Mi, Sys=19.7Mi, NumGC=29","level":"stat"}
+{"@timestamp":"2022-08-01T16:57:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:58:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:58:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=15.3Mi, Sys=19.7Mi, NumGC=30","level":"stat"}
+{"@timestamp":"2022-08-01T16:58:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T16:59:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T16:59:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=15.5Mi, Sys=19.7Mi, NumGC=30","level":"stat"}
+{"@timestamp":"2022-08-01T16:59:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:00:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:00:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=15.6Mi, Sys=19.7Mi, NumGC=31","level":"stat"}
+{"@timestamp":"2022-08-01T17:00:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:01:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:01:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=15.7Mi, Sys=19.7Mi, NumGC=31","level":"stat"}
+{"@timestamp":"2022-08-01T17:01:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:02:20.402+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:02:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=15.8Mi, Sys=19.7Mi, NumGC=32","level":"stat"}
+{"@timestamp":"2022-08-01T17:02:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:03:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:03:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=15.9Mi, Sys=19.7Mi, NumGC=32","level":"stat"}
+{"@timestamp":"2022-08-01T17:03:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:04:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:04:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=16.1Mi, Sys=19.7Mi, NumGC=33","level":"stat"}
+{"@timestamp":"2022-08-01T17:04:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:05:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:05:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=16.2Mi, Sys=19.7Mi, NumGC=33","level":"stat"}
+{"@timestamp":"2022-08-01T17:05:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:06:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:06:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=16.3Mi, Sys=19.7Mi, NumGC=34","level":"stat"}
+{"@timestamp":"2022-08-01T17:06:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:07:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:07:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=16.3Mi, Sys=19.7Mi, NumGC=34","level":"stat"}
+{"@timestamp":"2022-08-01T17:07:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:08:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:08:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=16.4Mi, Sys=19.7Mi, NumGC=35","level":"stat"}
+{"@timestamp":"2022-08-01T17:08:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:09:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:09:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=16.6Mi, Sys=19.7Mi, NumGC=35","level":"stat"}
+{"@timestamp":"2022-08-01T17:09:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:10:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:10:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=16.7Mi, Sys=19.7Mi, NumGC=36","level":"stat"}
+{"@timestamp":"2022-08-01T17:10:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:11:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:11:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=16.8Mi, Sys=19.7Mi, NumGC=36","level":"stat"}
+{"@timestamp":"2022-08-01T17:11:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:12:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:12:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=16.9Mi, Sys=19.7Mi, NumGC=37","level":"stat"}
+{"@timestamp":"2022-08-01T17:12:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:13:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:13:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=17.0Mi, Sys=19.7Mi, NumGC=37","level":"stat"}
+{"@timestamp":"2022-08-01T17:13:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:14:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:14:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=17.2Mi, Sys=19.7Mi, NumGC=38","level":"stat"}
+{"@timestamp":"2022-08-01T17:14:44.308+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:15:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:15:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=17.3Mi, Sys=19.7Mi, NumGC=38","level":"stat"}
+{"@timestamp":"2022-08-01T17:15:44.307+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:16:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:16:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=17.4Mi, Sys=19.7Mi, NumGC=39","level":"stat"}
+{"@timestamp":"2022-08-01T17:16:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:17:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:17:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=17.4Mi, Sys=19.7Mi, NumGC=39","level":"stat"}
+{"@timestamp":"2022-08-01T17:17:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:18:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:18:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=17.5Mi, Sys=19.7Mi, NumGC=40","level":"stat"}
+{"@timestamp":"2022-08-01T17:18:44.307+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:19:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:19:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=17.7Mi, Sys=19.7Mi, NumGC=40","level":"stat"}
+{"@timestamp":"2022-08-01T17:19:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:20:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:20:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=17.8Mi, Sys=19.7Mi, NumGC=41","level":"stat"}
+{"@timestamp":"2022-08-01T17:20:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:21:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:21:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=17.9Mi, Sys=19.7Mi, NumGC=41","level":"stat"}
+{"@timestamp":"2022-08-01T17:21:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:22:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:22:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=18.0Mi, Sys=19.7Mi, NumGC=42","level":"stat"}
+{"@timestamp":"2022-08-01T17:22:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:23:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:23:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=18.1Mi, Sys=19.7Mi, NumGC=42","level":"stat"}
+{"@timestamp":"2022-08-01T17:23:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:24:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:24:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=18.3Mi, Sys=19.7Mi, NumGC=43","level":"stat"}
+{"@timestamp":"2022-08-01T17:24:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:25:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:25:44.267+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=18.3Mi, Sys=19.7Mi, NumGC=43","level":"stat"}
+{"@timestamp":"2022-08-01T17:25:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:26:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:26:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=18.4Mi, Sys=19.9Mi, NumGC=44","level":"stat"}
+{"@timestamp":"2022-08-01T17:26:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:27:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:27:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=18.5Mi, Sys=19.9Mi, NumGC=44","level":"stat"}
+{"@timestamp":"2022-08-01T17:27:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:28:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:28:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=18.6Mi, Sys=19.9Mi, NumGC=45","level":"stat"}
+{"@timestamp":"2022-08-01T17:28:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:29:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:29:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=18.8Mi, Sys=19.9Mi, NumGC=45","level":"stat"}
+{"@timestamp":"2022-08-01T17:29:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:30:20.418+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:30:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=18.9Mi, Sys=19.9Mi, NumGC=46","level":"stat"}
+{"@timestamp":"2022-08-01T17:30:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:31:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:31:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=19.0Mi, Sys=19.9Mi, NumGC=46","level":"stat"}
+{"@timestamp":"2022-08-01T17:31:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:32:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:32:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=19.1Mi, Sys=19.9Mi, NumGC=47","level":"stat"}
+{"@timestamp":"2022-08-01T17:32:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:33:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:33:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=19.2Mi, Sys=19.9Mi, NumGC=47","level":"stat"}
+{"@timestamp":"2022-08-01T17:33:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:34:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:34:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=19.4Mi, Sys=19.9Mi, NumGC=48","level":"stat"}
+{"@timestamp":"2022-08-01T17:34:44.307+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:35:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:35:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=19.4Mi, Sys=19.9Mi, NumGC=48","level":"stat"}
+{"@timestamp":"2022-08-01T17:35:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:36:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:36:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=19.5Mi, Sys=19.9Mi, NumGC=49","level":"stat"}
+{"@timestamp":"2022-08-01T17:36:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:37:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:37:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=19.6Mi, Sys=19.9Mi, NumGC=49","level":"stat"}
+{"@timestamp":"2022-08-01T17:37:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:38:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:38:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=19.7Mi, Sys=19.9Mi, NumGC=50","level":"stat"}
+{"@timestamp":"2022-08-01T17:38:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:39:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:39:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=19.9Mi, Sys=19.9Mi, NumGC=50","level":"stat"}
+{"@timestamp":"2022-08-01T17:39:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:40:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:40:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=20.0Mi, Sys=19.9Mi, NumGC=51","level":"stat"}
+{"@timestamp":"2022-08-01T17:40:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:41:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:41:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=20.1Mi, Sys=19.9Mi, NumGC=51","level":"stat"}
+{"@timestamp":"2022-08-01T17:41:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:42:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:42:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=20.2Mi, Sys=19.9Mi, NumGC=52","level":"stat"}
+{"@timestamp":"2022-08-01T17:42:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:43:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:43:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=20.3Mi, Sys=19.9Mi, NumGC=52","level":"stat"}
+{"@timestamp":"2022-08-01T17:43:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T17:44:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T17:44:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=20.5Mi, Sys=19.9Mi, NumGC=53","level":"stat"}
+{"@timestamp":"2022-08-01T17:44:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T20:44:54.673+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-01T20:44:54.673+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-01T20:44:54.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=20.6Mi, Sys=19.9Mi, NumGC=53","level":"stat"}

+ 1944 - 0
rpc/logs/stat.log-2022-08-02

@@ -0,0 +1,1944 @@
+{"@timestamp":"2022-08-02T08:44:47.507+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.4Mi, TotalAlloc=20.7Mi, Sys=19.9Mi, NumGC=54","level":"stat"}
+{"@timestamp":"2022-08-02T08:44:47.507+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T08:44:48.294+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T08:45:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T08:45:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=21.1Mi, Sys=19.9Mi, NumGC=55","level":"stat"}
+{"@timestamp":"2022-08-02T08:45:44.307+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T08:46:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T08:46:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=21.2Mi, Sys=19.9Mi, NumGC=55","level":"stat"}
+{"@timestamp":"2022-08-02T08:46:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T08:47:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T08:47:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=21.3Mi, Sys=19.9Mi, NumGC=56","level":"stat"}
+{"@timestamp":"2022-08-02T08:47:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T08:48:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T08:48:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=21.3Mi, Sys=19.9Mi, NumGC=56","level":"stat"}
+{"@timestamp":"2022-08-02T08:48:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T08:49:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T08:49:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=21.4Mi, Sys=19.9Mi, NumGC=57","level":"stat"}
+{"@timestamp":"2022-08-02T08:49:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T08:50:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T08:50:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=21.6Mi, Sys=19.9Mi, NumGC=57","level":"stat"}
+{"@timestamp":"2022-08-02T08:50:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T08:51:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T08:51:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=21.7Mi, Sys=19.9Mi, NumGC=58","level":"stat"}
+{"@timestamp":"2022-08-02T08:51:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T08:52:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T08:52:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=21.8Mi, Sys=19.9Mi, NumGC=58","level":"stat"}
+{"@timestamp":"2022-08-02T08:52:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T08:53:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T08:53:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=21.9Mi, Sys=19.9Mi, NumGC=59","level":"stat"}
+{"@timestamp":"2022-08-02T08:53:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T08:54:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T08:54:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=22.0Mi, Sys=19.9Mi, NumGC=59","level":"stat"}
+{"@timestamp":"2022-08-02T08:54:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T08:55:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T08:55:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=22.2Mi, Sys=19.9Mi, NumGC=60","level":"stat"}
+{"@timestamp":"2022-08-02T08:55:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T08:56:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T08:56:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=22.3Mi, Sys=19.9Mi, NumGC=60","level":"stat"}
+{"@timestamp":"2022-08-02T08:56:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T08:57:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T08:57:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=22.4Mi, Sys=19.9Mi, NumGC=61","level":"stat"}
+{"@timestamp":"2022-08-02T08:57:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T08:58:20.402+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T08:58:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=22.4Mi, Sys=19.9Mi, NumGC=61","level":"stat"}
+{"@timestamp":"2022-08-02T08:58:44.308+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T08:59:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T08:59:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=22.5Mi, Sys=19.9Mi, NumGC=62","level":"stat"}
+{"@timestamp":"2022-08-02T08:59:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:00:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:00:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=22.7Mi, Sys=19.9Mi, NumGC=62","level":"stat"}
+{"@timestamp":"2022-08-02T09:00:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:01:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:01:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=22.8Mi, Sys=19.9Mi, NumGC=63","level":"stat"}
+{"@timestamp":"2022-08-02T09:01:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:02:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:02:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=22.9Mi, Sys=19.9Mi, NumGC=63","level":"stat"}
+{"@timestamp":"2022-08-02T09:02:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:03:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:03:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=23.0Mi, Sys=19.9Mi, NumGC=64","level":"stat"}
+{"@timestamp":"2022-08-02T09:03:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:04:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:04:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=23.1Mi, Sys=19.9Mi, NumGC=64","level":"stat"}
+{"@timestamp":"2022-08-02T09:04:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:05:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:05:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=23.3Mi, Sys=19.9Mi, NumGC=65","level":"stat"}
+{"@timestamp":"2022-08-02T09:05:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:06:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:06:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=23.4Mi, Sys=19.9Mi, NumGC=65","level":"stat"}
+{"@timestamp":"2022-08-02T09:06:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:07:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:07:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=23.4Mi, Sys=19.9Mi, NumGC=66","level":"stat"}
+{"@timestamp":"2022-08-02T09:07:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:08:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:08:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=23.5Mi, Sys=19.9Mi, NumGC=66","level":"stat"}
+{"@timestamp":"2022-08-02T09:08:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:09:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:09:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=23.6Mi, Sys=19.9Mi, NumGC=67","level":"stat"}
+{"@timestamp":"2022-08-02T09:09:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:10:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:10:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=23.8Mi, Sys=19.9Mi, NumGC=67","level":"stat"}
+{"@timestamp":"2022-08-02T09:10:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:11:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:11:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=23.9Mi, Sys=19.9Mi, NumGC=68","level":"stat"}
+{"@timestamp":"2022-08-02T09:11:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:12:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:12:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=24.0Mi, Sys=19.9Mi, NumGC=68","level":"stat"}
+{"@timestamp":"2022-08-02T09:12:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:13:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:13:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=24.1Mi, Sys=19.9Mi, NumGC=69","level":"stat"}
+{"@timestamp":"2022-08-02T09:13:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:14:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:14:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=24.2Mi, Sys=19.9Mi, NumGC=69","level":"stat"}
+{"@timestamp":"2022-08-02T09:14:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:15:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:15:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=24.4Mi, Sys=19.9Mi, NumGC=70","level":"stat"}
+{"@timestamp":"2022-08-02T09:15:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:16:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:16:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=24.4Mi, Sys=19.9Mi, NumGC=70","level":"stat"}
+{"@timestamp":"2022-08-02T09:16:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:17:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:17:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=24.5Mi, Sys=19.9Mi, NumGC=71","level":"stat"}
+{"@timestamp":"2022-08-02T09:17:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:18:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:18:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=24.6Mi, Sys=19.9Mi, NumGC=71","level":"stat"}
+{"@timestamp":"2022-08-02T09:18:44.308+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:19:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:19:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=24.7Mi, Sys=19.9Mi, NumGC=72","level":"stat"}
+{"@timestamp":"2022-08-02T09:19:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:20:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:20:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=24.9Mi, Sys=19.9Mi, NumGC=72","level":"stat"}
+{"@timestamp":"2022-08-02T09:20:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:21:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:21:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=25.0Mi, Sys=19.9Mi, NumGC=73","level":"stat"}
+{"@timestamp":"2022-08-02T09:21:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:22:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:22:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=25.1Mi, Sys=19.9Mi, NumGC=73","level":"stat"}
+{"@timestamp":"2022-08-02T09:22:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:23:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:23:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=25.2Mi, Sys=19.9Mi, NumGC=74","level":"stat"}
+{"@timestamp":"2022-08-02T09:23:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:24:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:24:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=25.2Mi, Sys=19.9Mi, NumGC=74","level":"stat"}
+{"@timestamp":"2022-08-02T09:24:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:25:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:25:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=25.4Mi, Sys=19.9Mi, NumGC=75","level":"stat"}
+{"@timestamp":"2022-08-02T09:25:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:26:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:26:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=25.5Mi, Sys=19.9Mi, NumGC=75","level":"stat"}
+{"@timestamp":"2022-08-02T09:26:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:27:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:27:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=25.6Mi, Sys=19.9Mi, NumGC=76","level":"stat"}
+{"@timestamp":"2022-08-02T09:27:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:28:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:28:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=25.7Mi, Sys=19.9Mi, NumGC=76","level":"stat"}
+{"@timestamp":"2022-08-02T09:28:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:29:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:29:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=25.8Mi, Sys=19.9Mi, NumGC=77","level":"stat"}
+{"@timestamp":"2022-08-02T09:29:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:30:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:30:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=26.0Mi, Sys=19.9Mi, NumGC=77","level":"stat"}
+{"@timestamp":"2022-08-02T09:30:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:31:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:31:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=26.0Mi, Sys=19.9Mi, NumGC=78","level":"stat"}
+{"@timestamp":"2022-08-02T09:31:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:32:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:32:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=26.1Mi, Sys=19.9Mi, NumGC=78","level":"stat"}
+{"@timestamp":"2022-08-02T09:32:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:33:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:33:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=26.2Mi, Sys=19.9Mi, NumGC=79","level":"stat"}
+{"@timestamp":"2022-08-02T09:33:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:34:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:34:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=26.3Mi, Sys=19.9Mi, NumGC=79","level":"stat"}
+{"@timestamp":"2022-08-02T09:34:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:35:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:35:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=26.5Mi, Sys=19.9Mi, NumGC=80","level":"stat"}
+{"@timestamp":"2022-08-02T09:35:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:36:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:36:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=26.6Mi, Sys=19.9Mi, NumGC=80","level":"stat"}
+{"@timestamp":"2022-08-02T09:36:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:37:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:37:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=26.7Mi, Sys=19.9Mi, NumGC=81","level":"stat"}
+{"@timestamp":"2022-08-02T09:37:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:38:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:38:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=26.7Mi, Sys=19.9Mi, NumGC=81","level":"stat"}
+{"@timestamp":"2022-08-02T09:38:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:39:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:39:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=26.8Mi, Sys=19.9Mi, NumGC=82","level":"stat"}
+{"@timestamp":"2022-08-02T09:39:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:40:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:40:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=27.0Mi, Sys=19.9Mi, NumGC=82","level":"stat"}
+{"@timestamp":"2022-08-02T09:40:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:41:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:41:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=27.1Mi, Sys=19.9Mi, NumGC=83","level":"stat"}
+{"@timestamp":"2022-08-02T09:41:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:42:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:42:44.267+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=27.2Mi, Sys=19.9Mi, NumGC=83","level":"stat"}
+{"@timestamp":"2022-08-02T09:42:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:43:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:43:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=27.3Mi, Sys=19.9Mi, NumGC=84","level":"stat"}
+{"@timestamp":"2022-08-02T09:43:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:44:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:44:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=27.4Mi, Sys=19.9Mi, NumGC=84","level":"stat"}
+{"@timestamp":"2022-08-02T09:44:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:45:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:45:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=27.6Mi, Sys=19.9Mi, NumGC=85","level":"stat"}
+{"@timestamp":"2022-08-02T09:45:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:46:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:46:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=27.6Mi, Sys=19.9Mi, NumGC=85","level":"stat"}
+{"@timestamp":"2022-08-02T09:46:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:47:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:47:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=27.7Mi, Sys=19.9Mi, NumGC=86","level":"stat"}
+{"@timestamp":"2022-08-02T09:47:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:48:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:48:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=27.8Mi, Sys=19.9Mi, NumGC=86","level":"stat"}
+{"@timestamp":"2022-08-02T09:48:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:49:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:49:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=27.9Mi, Sys=19.9Mi, NumGC=87","level":"stat"}
+{"@timestamp":"2022-08-02T09:49:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:50:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:50:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=28.1Mi, Sys=19.9Mi, NumGC=87","level":"stat"}
+{"@timestamp":"2022-08-02T09:50:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:51:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:51:44.267+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=28.2Mi, Sys=19.9Mi, NumGC=88","level":"stat"}
+{"@timestamp":"2022-08-02T09:51:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:52:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:52:44.283+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=28.3Mi, Sys=19.9Mi, NumGC=88","level":"stat"}
+{"@timestamp":"2022-08-02T09:52:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:53:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:53:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=28.3Mi, Sys=19.9Mi, NumGC=89","level":"stat"}
+{"@timestamp":"2022-08-02T09:53:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:54:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:54:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=28.4Mi, Sys=19.9Mi, NumGC=89","level":"stat"}
+{"@timestamp":"2022-08-02T09:54:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:55:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:55:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=28.6Mi, Sys=19.9Mi, NumGC=90","level":"stat"}
+{"@timestamp":"2022-08-02T09:55:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:56:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:56:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=28.7Mi, Sys=20.2Mi, NumGC=90","level":"stat"}
+{"@timestamp":"2022-08-02T09:56:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:57:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:57:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=28.8Mi, Sys=20.2Mi, NumGC=91","level":"stat"}
+{"@timestamp":"2022-08-02T09:57:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:58:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:58:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=28.9Mi, Sys=20.2Mi, NumGC=91","level":"stat"}
+{"@timestamp":"2022-08-02T09:58:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T09:59:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T09:59:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=29.0Mi, Sys=20.2Mi, NumGC=92","level":"stat"}
+{"@timestamp":"2022-08-02T09:59:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:00:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:00:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=29.2Mi, Sys=20.2Mi, NumGC=92","level":"stat"}
+{"@timestamp":"2022-08-02T10:00:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:01:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:01:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=29.3Mi, Sys=20.2Mi, NumGC=93","level":"stat"}
+{"@timestamp":"2022-08-02T10:01:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:02:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:02:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=29.3Mi, Sys=20.2Mi, NumGC=93","level":"stat"}
+{"@timestamp":"2022-08-02T10:02:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:03:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:03:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=29.4Mi, Sys=20.2Mi, NumGC=94","level":"stat"}
+{"@timestamp":"2022-08-02T10:03:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:04:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:04:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=29.5Mi, Sys=20.2Mi, NumGC=94","level":"stat"}
+{"@timestamp":"2022-08-02T10:04:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:05:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:05:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=29.7Mi, Sys=20.2Mi, NumGC=95","level":"stat"}
+{"@timestamp":"2022-08-02T10:05:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:06:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:06:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=29.8Mi, Sys=20.2Mi, NumGC=95","level":"stat"}
+{"@timestamp":"2022-08-02T10:06:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:07:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:07:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=29.9Mi, Sys=20.2Mi, NumGC=96","level":"stat"}
+{"@timestamp":"2022-08-02T10:07:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:08:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:08:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=30.0Mi, Sys=20.2Mi, NumGC=96","level":"stat"}
+{"@timestamp":"2022-08-02T10:08:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:09:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:09:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=30.0Mi, Sys=20.2Mi, NumGC=97","level":"stat"}
+{"@timestamp":"2022-08-02T10:09:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:10:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:10:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=30.2Mi, Sys=20.2Mi, NumGC=97","level":"stat"}
+{"@timestamp":"2022-08-02T10:10:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:11:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:11:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=30.3Mi, Sys=20.2Mi, NumGC=98","level":"stat"}
+{"@timestamp":"2022-08-02T10:11:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:12:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:12:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=30.4Mi, Sys=20.2Mi, NumGC=98","level":"stat"}
+{"@timestamp":"2022-08-02T10:12:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:13:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:13:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=30.5Mi, Sys=20.2Mi, NumGC=99","level":"stat"}
+{"@timestamp":"2022-08-02T10:13:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:14:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:14:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=30.6Mi, Sys=20.2Mi, NumGC=99","level":"stat"}
+{"@timestamp":"2022-08-02T10:14:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:15:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:15:44.283+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=30.8Mi, Sys=20.2Mi, NumGC=100","level":"stat"}
+{"@timestamp":"2022-08-02T10:15:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:16:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:16:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=30.9Mi, Sys=20.2Mi, NumGC=100","level":"stat"}
+{"@timestamp":"2022-08-02T10:16:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:17:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:17:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=30.9Mi, Sys=20.2Mi, NumGC=101","level":"stat"}
+{"@timestamp":"2022-08-02T10:17:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:18:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:18:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=31.0Mi, Sys=20.2Mi, NumGC=101","level":"stat"}
+{"@timestamp":"2022-08-02T10:18:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:19:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:19:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=31.1Mi, Sys=20.2Mi, NumGC=102","level":"stat"}
+{"@timestamp":"2022-08-02T10:19:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:20:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:20:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=31.3Mi, Sys=20.2Mi, NumGC=102","level":"stat"}
+{"@timestamp":"2022-08-02T10:20:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:21:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:21:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=31.4Mi, Sys=20.2Mi, NumGC=103","level":"stat"}
+{"@timestamp":"2022-08-02T10:21:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:22:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:22:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=31.5Mi, Sys=20.2Mi, NumGC=103","level":"stat"}
+{"@timestamp":"2022-08-02T10:22:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:23:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:23:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=31.6Mi, Sys=20.2Mi, NumGC=104","level":"stat"}
+{"@timestamp":"2022-08-02T10:23:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:24:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:24:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=31.7Mi, Sys=20.2Mi, NumGC=104","level":"stat"}
+{"@timestamp":"2022-08-02T10:24:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:25:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:25:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=31.9Mi, Sys=20.2Mi, NumGC=105","level":"stat"}
+{"@timestamp":"2022-08-02T10:25:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:26:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:26:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=31.9Mi, Sys=20.2Mi, NumGC=105","level":"stat"}
+{"@timestamp":"2022-08-02T10:26:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:27:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:27:44.267+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=32.0Mi, Sys=20.2Mi, NumGC=106","level":"stat"}
+{"@timestamp":"2022-08-02T10:27:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:28:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:28:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=32.1Mi, Sys=20.2Mi, NumGC=106","level":"stat"}
+{"@timestamp":"2022-08-02T10:28:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:29:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:29:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=32.2Mi, Sys=20.2Mi, NumGC=107","level":"stat"}
+{"@timestamp":"2022-08-02T10:29:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:30:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:30:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=32.4Mi, Sys=20.2Mi, NumGC=107","level":"stat"}
+{"@timestamp":"2022-08-02T10:30:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:31:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:31:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=32.5Mi, Sys=20.2Mi, NumGC=108","level":"stat"}
+{"@timestamp":"2022-08-02T10:31:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:32:20.418+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:32:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=32.6Mi, Sys=20.2Mi, NumGC=108","level":"stat"}
+{"@timestamp":"2022-08-02T10:32:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:33:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:33:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=32.7Mi, Sys=20.2Mi, NumGC=109","level":"stat"}
+{"@timestamp":"2022-08-02T10:33:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:34:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:34:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=32.7Mi, Sys=20.2Mi, NumGC=109","level":"stat"}
+{"@timestamp":"2022-08-02T10:34:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:35:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:35:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=32.9Mi, Sys=20.2Mi, NumGC=110","level":"stat"}
+{"@timestamp":"2022-08-02T10:35:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:36:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:36:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=33.0Mi, Sys=20.2Mi, NumGC=110","level":"stat"}
+{"@timestamp":"2022-08-02T10:36:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:37:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:37:44.267+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=33.1Mi, Sys=20.2Mi, NumGC=111","level":"stat"}
+{"@timestamp":"2022-08-02T10:37:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:38:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:38:44.267+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=33.2Mi, Sys=20.2Mi, NumGC=111","level":"stat"}
+{"@timestamp":"2022-08-02T10:38:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:39:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:39:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=33.3Mi, Sys=20.2Mi, NumGC=112","level":"stat"}
+{"@timestamp":"2022-08-02T10:39:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:40:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:40:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=33.5Mi, Sys=20.2Mi, NumGC=112","level":"stat"}
+{"@timestamp":"2022-08-02T10:40:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:41:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:41:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=33.6Mi, Sys=20.2Mi, NumGC=113","level":"stat"}
+{"@timestamp":"2022-08-02T10:41:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:42:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:42:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=33.7Mi, Sys=20.2Mi, NumGC=113","level":"stat"}
+{"@timestamp":"2022-08-02T10:42:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:43:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:43:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=33.7Mi, Sys=20.2Mi, NumGC=114","level":"stat"}
+{"@timestamp":"2022-08-02T10:43:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:44:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:44:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=33.8Mi, Sys=20.2Mi, NumGC=114","level":"stat"}
+{"@timestamp":"2022-08-02T10:44:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:45:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:45:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=34.0Mi, Sys=20.2Mi, NumGC=115","level":"stat"}
+{"@timestamp":"2022-08-02T10:45:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:46:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:46:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=34.1Mi, Sys=20.2Mi, NumGC=115","level":"stat"}
+{"@timestamp":"2022-08-02T10:46:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:47:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:47:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=34.2Mi, Sys=20.2Mi, NumGC=116","level":"stat"}
+{"@timestamp":"2022-08-02T10:47:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:48:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:48:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=34.3Mi, Sys=20.2Mi, NumGC=116","level":"stat"}
+{"@timestamp":"2022-08-02T10:48:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:49:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:49:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=34.4Mi, Sys=20.2Mi, NumGC=117","level":"stat"}
+{"@timestamp":"2022-08-02T10:49:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:50:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:50:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=34.6Mi, Sys=20.2Mi, NumGC=117","level":"stat"}
+{"@timestamp":"2022-08-02T10:50:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:51:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:51:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=34.7Mi, Sys=20.2Mi, NumGC=118","level":"stat"}
+{"@timestamp":"2022-08-02T10:51:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:52:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:52:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=34.7Mi, Sys=20.2Mi, NumGC=118","level":"stat"}
+{"@timestamp":"2022-08-02T10:52:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:53:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:53:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=34.8Mi, Sys=20.2Mi, NumGC=119","level":"stat"}
+{"@timestamp":"2022-08-02T10:53:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:54:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:54:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=34.9Mi, Sys=20.2Mi, NumGC=119","level":"stat"}
+{"@timestamp":"2022-08-02T10:54:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:55:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:55:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=35.1Mi, Sys=20.2Mi, NumGC=120","level":"stat"}
+{"@timestamp":"2022-08-02T10:55:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:56:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:56:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=35.2Mi, Sys=20.2Mi, NumGC=120","level":"stat"}
+{"@timestamp":"2022-08-02T10:56:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:57:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:57:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=35.3Mi, Sys=20.2Mi, NumGC=121","level":"stat"}
+{"@timestamp":"2022-08-02T10:57:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:58:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:58:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=35.4Mi, Sys=20.2Mi, NumGC=121","level":"stat"}
+{"@timestamp":"2022-08-02T10:58:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T10:59:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T10:59:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=35.5Mi, Sys=20.2Mi, NumGC=122","level":"stat"}
+{"@timestamp":"2022-08-02T10:59:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:00:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:00:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=35.7Mi, Sys=20.2Mi, NumGC=122","level":"stat"}
+{"@timestamp":"2022-08-02T11:00:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:01:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:01:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=35.8Mi, Sys=20.2Mi, NumGC=123","level":"stat"}
+{"@timestamp":"2022-08-02T11:01:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:02:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:02:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=35.8Mi, Sys=20.2Mi, NumGC=123","level":"stat"}
+{"@timestamp":"2022-08-02T11:02:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:03:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:03:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=35.9Mi, Sys=20.2Mi, NumGC=124","level":"stat"}
+{"@timestamp":"2022-08-02T11:03:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:04:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:04:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=36.0Mi, Sys=20.2Mi, NumGC=124","level":"stat"}
+{"@timestamp":"2022-08-02T11:04:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:05:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:05:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=36.2Mi, Sys=20.2Mi, NumGC=125","level":"stat"}
+{"@timestamp":"2022-08-02T11:05:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:06:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:06:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=36.3Mi, Sys=20.2Mi, NumGC=125","level":"stat"}
+{"@timestamp":"2022-08-02T11:06:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:07:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:07:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=36.4Mi, Sys=20.2Mi, NumGC=126","level":"stat"}
+{"@timestamp":"2022-08-02T11:07:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:08:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:08:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=36.5Mi, Sys=20.2Mi, NumGC=126","level":"stat"}
+{"@timestamp":"2022-08-02T11:08:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:09:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:09:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=36.6Mi, Sys=20.2Mi, NumGC=127","level":"stat"}
+{"@timestamp":"2022-08-02T11:09:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:10:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:10:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=36.8Mi, Sys=20.2Mi, NumGC=127","level":"stat"}
+{"@timestamp":"2022-08-02T11:10:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:11:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:11:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=36.8Mi, Sys=20.2Mi, NumGC=128","level":"stat"}
+{"@timestamp":"2022-08-02T11:11:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:12:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:12:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=36.9Mi, Sys=20.2Mi, NumGC=128","level":"stat"}
+{"@timestamp":"2022-08-02T11:12:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:13:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:13:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=37.0Mi, Sys=20.2Mi, NumGC=129","level":"stat"}
+{"@timestamp":"2022-08-02T11:13:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:14:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:14:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=37.1Mi, Sys=20.2Mi, NumGC=129","level":"stat"}
+{"@timestamp":"2022-08-02T11:14:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:15:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:15:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=37.3Mi, Sys=20.2Mi, NumGC=130","level":"stat"}
+{"@timestamp":"2022-08-02T11:15:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:16:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:16:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=37.4Mi, Sys=20.2Mi, NumGC=130","level":"stat"}
+{"@timestamp":"2022-08-02T11:16:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:17:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:17:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=37.5Mi, Sys=20.2Mi, NumGC=131","level":"stat"}
+{"@timestamp":"2022-08-02T11:17:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:18:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:18:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=37.6Mi, Sys=20.2Mi, NumGC=131","level":"stat"}
+{"@timestamp":"2022-08-02T11:18:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:19:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:19:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=37.6Mi, Sys=20.2Mi, NumGC=132","level":"stat"}
+{"@timestamp":"2022-08-02T11:19:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:20:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:20:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=37.8Mi, Sys=20.2Mi, NumGC=132","level":"stat"}
+{"@timestamp":"2022-08-02T11:20:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:21:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:21:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=37.9Mi, Sys=20.2Mi, NumGC=133","level":"stat"}
+{"@timestamp":"2022-08-02T11:21:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:22:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:22:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=38.0Mi, Sys=20.2Mi, NumGC=133","level":"stat"}
+{"@timestamp":"2022-08-02T11:22:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:23:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:23:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=38.1Mi, Sys=20.2Mi, NumGC=134","level":"stat"}
+{"@timestamp":"2022-08-02T11:23:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:24:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:24:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=38.2Mi, Sys=20.2Mi, NumGC=134","level":"stat"}
+{"@timestamp":"2022-08-02T11:24:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:25:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:25:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=38.4Mi, Sys=20.2Mi, NumGC=135","level":"stat"}
+{"@timestamp":"2022-08-02T11:25:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:26:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:26:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=38.5Mi, Sys=20.2Mi, NumGC=135","level":"stat"}
+{"@timestamp":"2022-08-02T11:26:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:27:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:27:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=38.6Mi, Sys=20.2Mi, NumGC=136","level":"stat"}
+{"@timestamp":"2022-08-02T11:27:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:28:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:28:44.267+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=38.6Mi, Sys=20.2Mi, NumGC=136","level":"stat"}
+{"@timestamp":"2022-08-02T11:28:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:29:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:29:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=38.7Mi, Sys=20.2Mi, NumGC=137","level":"stat"}
+{"@timestamp":"2022-08-02T11:29:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:30:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:30:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=38.9Mi, Sys=20.2Mi, NumGC=137","level":"stat"}
+{"@timestamp":"2022-08-02T11:30:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:31:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:31:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=39.0Mi, Sys=20.2Mi, NumGC=138","level":"stat"}
+{"@timestamp":"2022-08-02T11:31:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:32:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:32:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=39.1Mi, Sys=20.2Mi, NumGC=138","level":"stat"}
+{"@timestamp":"2022-08-02T11:32:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:33:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:33:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=39.2Mi, Sys=20.2Mi, NumGC=139","level":"stat"}
+{"@timestamp":"2022-08-02T11:33:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:34:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:34:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=39.3Mi, Sys=20.2Mi, NumGC=139","level":"stat"}
+{"@timestamp":"2022-08-02T11:34:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:35:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:35:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=39.5Mi, Sys=20.2Mi, NumGC=140","level":"stat"}
+{"@timestamp":"2022-08-02T11:35:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:36:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:36:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=39.6Mi, Sys=20.2Mi, NumGC=140","level":"stat"}
+{"@timestamp":"2022-08-02T11:36:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:37:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:37:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=39.6Mi, Sys=20.2Mi, NumGC=141","level":"stat"}
+{"@timestamp":"2022-08-02T11:37:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:38:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:38:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=39.7Mi, Sys=20.2Mi, NumGC=141","level":"stat"}
+{"@timestamp":"2022-08-02T11:38:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:39:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:39:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=39.8Mi, Sys=20.2Mi, NumGC=142","level":"stat"}
+{"@timestamp":"2022-08-02T11:39:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:40:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:40:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=40.0Mi, Sys=20.2Mi, NumGC=142","level":"stat"}
+{"@timestamp":"2022-08-02T11:40:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:41:20.402+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:41:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=40.1Mi, Sys=20.2Mi, NumGC=143","level":"stat"}
+{"@timestamp":"2022-08-02T11:41:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:42:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:42:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=40.2Mi, Sys=20.2Mi, NumGC=143","level":"stat"}
+{"@timestamp":"2022-08-02T11:42:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:43:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:43:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=40.3Mi, Sys=20.2Mi, NumGC=144","level":"stat"}
+{"@timestamp":"2022-08-02T11:43:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:44:20.418+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:44:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=40.4Mi, Sys=20.2Mi, NumGC=144","level":"stat"}
+{"@timestamp":"2022-08-02T11:44:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:45:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:45:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=40.6Mi, Sys=20.2Mi, NumGC=145","level":"stat"}
+{"@timestamp":"2022-08-02T11:45:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:46:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:46:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=40.6Mi, Sys=20.2Mi, NumGC=145","level":"stat"}
+{"@timestamp":"2022-08-02T11:46:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:47:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:47:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=40.7Mi, Sys=20.2Mi, NumGC=146","level":"stat"}
+{"@timestamp":"2022-08-02T11:47:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:48:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:48:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=40.8Mi, Sys=20.2Mi, NumGC=146","level":"stat"}
+{"@timestamp":"2022-08-02T11:48:44.307+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:49:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:49:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=40.9Mi, Sys=20.2Mi, NumGC=147","level":"stat"}
+{"@timestamp":"2022-08-02T11:49:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:50:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:50:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=41.1Mi, Sys=20.2Mi, NumGC=147","level":"stat"}
+{"@timestamp":"2022-08-02T11:50:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:51:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:51:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=41.2Mi, Sys=20.2Mi, NumGC=148","level":"stat"}
+{"@timestamp":"2022-08-02T11:51:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:52:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:52:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=41.3Mi, Sys=20.2Mi, NumGC=148","level":"stat"}
+{"@timestamp":"2022-08-02T11:52:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:53:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:53:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=41.3Mi, Sys=20.2Mi, NumGC=149","level":"stat"}
+{"@timestamp":"2022-08-02T11:53:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:54:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:54:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=41.4Mi, Sys=20.2Mi, NumGC=149","level":"stat"}
+{"@timestamp":"2022-08-02T11:54:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:55:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:55:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=41.6Mi, Sys=20.2Mi, NumGC=150","level":"stat"}
+{"@timestamp":"2022-08-02T11:55:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:56:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:56:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=41.7Mi, Sys=20.2Mi, NumGC=150","level":"stat"}
+{"@timestamp":"2022-08-02T11:56:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:57:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:57:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=41.8Mi, Sys=20.2Mi, NumGC=151","level":"stat"}
+{"@timestamp":"2022-08-02T11:57:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:58:20.402+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:58:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=41.9Mi, Sys=20.2Mi, NumGC=151","level":"stat"}
+{"@timestamp":"2022-08-02T11:58:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T11:59:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T11:59:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=42.0Mi, Sys=20.2Mi, NumGC=152","level":"stat"}
+{"@timestamp":"2022-08-02T11:59:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:00:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:00:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=42.2Mi, Sys=20.2Mi, NumGC=152","level":"stat"}
+{"@timestamp":"2022-08-02T12:00:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:01:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:01:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=42.3Mi, Sys=20.2Mi, NumGC=153","level":"stat"}
+{"@timestamp":"2022-08-02T12:01:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:02:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:02:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=42.3Mi, Sys=20.2Mi, NumGC=153","level":"stat"}
+{"@timestamp":"2022-08-02T12:02:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:03:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:03:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=42.4Mi, Sys=20.2Mi, NumGC=154","level":"stat"}
+{"@timestamp":"2022-08-02T12:03:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:04:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:04:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=42.5Mi, Sys=20.2Mi, NumGC=154","level":"stat"}
+{"@timestamp":"2022-08-02T12:04:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:05:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:05:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=42.7Mi, Sys=20.2Mi, NumGC=155","level":"stat"}
+{"@timestamp":"2022-08-02T12:05:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:06:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:06:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=42.8Mi, Sys=20.2Mi, NumGC=155","level":"stat"}
+{"@timestamp":"2022-08-02T12:06:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:07:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:07:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=42.9Mi, Sys=20.2Mi, NumGC=156","level":"stat"}
+{"@timestamp":"2022-08-02T12:07:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:08:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:08:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=43.0Mi, Sys=20.2Mi, NumGC=156","level":"stat"}
+{"@timestamp":"2022-08-02T12:08:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:09:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:09:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=43.1Mi, Sys=20.2Mi, NumGC=157","level":"stat"}
+{"@timestamp":"2022-08-02T12:09:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:10:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:10:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=43.3Mi, Sys=20.2Mi, NumGC=157","level":"stat"}
+{"@timestamp":"2022-08-02T12:10:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:11:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:11:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=43.3Mi, Sys=20.2Mi, NumGC=158","level":"stat"}
+{"@timestamp":"2022-08-02T12:11:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:12:20.402+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:12:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=43.4Mi, Sys=20.2Mi, NumGC=158","level":"stat"}
+{"@timestamp":"2022-08-02T12:12:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:13:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:13:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=43.5Mi, Sys=20.2Mi, NumGC=159","level":"stat"}
+{"@timestamp":"2022-08-02T12:13:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:14:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:14:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=43.6Mi, Sys=20.2Mi, NumGC=159","level":"stat"}
+{"@timestamp":"2022-08-02T12:14:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:15:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:15:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=43.8Mi, Sys=20.2Mi, NumGC=160","level":"stat"}
+{"@timestamp":"2022-08-02T12:15:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:16:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:16:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=43.9Mi, Sys=20.2Mi, NumGC=160","level":"stat"}
+{"@timestamp":"2022-08-02T12:16:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:17:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:17:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=44.0Mi, Sys=20.2Mi, NumGC=161","level":"stat"}
+{"@timestamp":"2022-08-02T12:17:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:18:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:18:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=44.1Mi, Sys=20.2Mi, NumGC=161","level":"stat"}
+{"@timestamp":"2022-08-02T12:18:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:19:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:19:44.283+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=44.2Mi, Sys=20.2Mi, NumGC=162","level":"stat"}
+{"@timestamp":"2022-08-02T12:19:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:20:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:20:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=44.3Mi, Sys=20.2Mi, NumGC=162","level":"stat"}
+{"@timestamp":"2022-08-02T12:20:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:21:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:21:44.267+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=44.4Mi, Sys=20.2Mi, NumGC=163","level":"stat"}
+{"@timestamp":"2022-08-02T12:21:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:22:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:22:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=44.5Mi, Sys=20.2Mi, NumGC=163","level":"stat"}
+{"@timestamp":"2022-08-02T12:22:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:23:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:23:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=44.6Mi, Sys=20.2Mi, NumGC=164","level":"stat"}
+{"@timestamp":"2022-08-02T12:23:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:24:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:24:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=44.7Mi, Sys=20.2Mi, NumGC=164","level":"stat"}
+{"@timestamp":"2022-08-02T12:24:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:25:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:25:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=44.9Mi, Sys=20.2Mi, NumGC=165","level":"stat"}
+{"@timestamp":"2022-08-02T12:25:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:26:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:26:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=45.0Mi, Sys=20.2Mi, NumGC=165","level":"stat"}
+{"@timestamp":"2022-08-02T12:26:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:27:20.402+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:27:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=45.1Mi, Sys=20.2Mi, NumGC=166","level":"stat"}
+{"@timestamp":"2022-08-02T12:27:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:28:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:28:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=45.2Mi, Sys=20.2Mi, NumGC=166","level":"stat"}
+{"@timestamp":"2022-08-02T12:28:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:29:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:29:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=45.2Mi, Sys=20.2Mi, NumGC=167","level":"stat"}
+{"@timestamp":"2022-08-02T12:29:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:30:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:30:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=45.4Mi, Sys=20.2Mi, NumGC=167","level":"stat"}
+{"@timestamp":"2022-08-02T12:30:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:31:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:31:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=45.5Mi, Sys=20.2Mi, NumGC=168","level":"stat"}
+{"@timestamp":"2022-08-02T12:31:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:32:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:32:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=45.6Mi, Sys=20.2Mi, NumGC=168","level":"stat"}
+{"@timestamp":"2022-08-02T12:32:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:33:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:33:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=45.7Mi, Sys=20.2Mi, NumGC=169","level":"stat"}
+{"@timestamp":"2022-08-02T12:33:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:34:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:34:44.283+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=45.8Mi, Sys=20.2Mi, NumGC=169","level":"stat"}
+{"@timestamp":"2022-08-02T12:34:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:35:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:35:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=46.0Mi, Sys=20.2Mi, NumGC=170","level":"stat"}
+{"@timestamp":"2022-08-02T12:35:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:36:20.402+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:36:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=46.1Mi, Sys=20.2Mi, NumGC=170","level":"stat"}
+{"@timestamp":"2022-08-02T12:36:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:37:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:37:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=46.2Mi, Sys=20.2Mi, NumGC=171","level":"stat"}
+{"@timestamp":"2022-08-02T12:37:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:38:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:38:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=46.2Mi, Sys=20.2Mi, NumGC=171","level":"stat"}
+{"@timestamp":"2022-08-02T12:38:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:39:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:39:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=46.3Mi, Sys=20.2Mi, NumGC=172","level":"stat"}
+{"@timestamp":"2022-08-02T12:39:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:40:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:40:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=46.5Mi, Sys=20.2Mi, NumGC=172","level":"stat"}
+{"@timestamp":"2022-08-02T12:40:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:41:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:41:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=46.6Mi, Sys=20.2Mi, NumGC=173","level":"stat"}
+{"@timestamp":"2022-08-02T12:41:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:42:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:42:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=46.7Mi, Sys=20.2Mi, NumGC=173","level":"stat"}
+{"@timestamp":"2022-08-02T12:42:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:43:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:43:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=46.8Mi, Sys=20.2Mi, NumGC=174","level":"stat"}
+{"@timestamp":"2022-08-02T12:43:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:44:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:44:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=46.9Mi, Sys=20.2Mi, NumGC=174","level":"stat"}
+{"@timestamp":"2022-08-02T12:44:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:45:20.402+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:45:44.267+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=47.1Mi, Sys=20.2Mi, NumGC=175","level":"stat"}
+{"@timestamp":"2022-08-02T12:45:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:46:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:46:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=47.2Mi, Sys=20.2Mi, NumGC=175","level":"stat"}
+{"@timestamp":"2022-08-02T12:46:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:47:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:47:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=47.3Mi, Sys=20.2Mi, NumGC=176","level":"stat"}
+{"@timestamp":"2022-08-02T12:47:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:48:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:48:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=47.3Mi, Sys=20.2Mi, NumGC=176","level":"stat"}
+{"@timestamp":"2022-08-02T12:48:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:49:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:49:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=47.4Mi, Sys=20.2Mi, NumGC=177","level":"stat"}
+{"@timestamp":"2022-08-02T12:49:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:50:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:50:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=47.6Mi, Sys=20.2Mi, NumGC=177","level":"stat"}
+{"@timestamp":"2022-08-02T12:50:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:51:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:51:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=47.7Mi, Sys=20.2Mi, NumGC=178","level":"stat"}
+{"@timestamp":"2022-08-02T12:51:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:52:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:52:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=47.8Mi, Sys=20.2Mi, NumGC=178","level":"stat"}
+{"@timestamp":"2022-08-02T12:52:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:53:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:53:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=47.9Mi, Sys=20.2Mi, NumGC=179","level":"stat"}
+{"@timestamp":"2022-08-02T12:53:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:54:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:54:44.267+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=48.0Mi, Sys=20.2Mi, NumGC=179","level":"stat"}
+{"@timestamp":"2022-08-02T12:54:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:55:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:55:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=48.2Mi, Sys=20.2Mi, NumGC=180","level":"stat"}
+{"@timestamp":"2022-08-02T12:55:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:56:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:56:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=48.2Mi, Sys=20.2Mi, NumGC=180","level":"stat"}
+{"@timestamp":"2022-08-02T12:56:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:57:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:57:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=48.3Mi, Sys=20.2Mi, NumGC=181","level":"stat"}
+{"@timestamp":"2022-08-02T12:57:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:58:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:58:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=48.4Mi, Sys=20.2Mi, NumGC=181","level":"stat"}
+{"@timestamp":"2022-08-02T12:58:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T12:59:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T12:59:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=48.5Mi, Sys=20.2Mi, NumGC=182","level":"stat"}
+{"@timestamp":"2022-08-02T12:59:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:00:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:00:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=48.7Mi, Sys=20.2Mi, NumGC=182","level":"stat"}
+{"@timestamp":"2022-08-02T13:00:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:01:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:01:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=48.8Mi, Sys=20.2Mi, NumGC=183","level":"stat"}
+{"@timestamp":"2022-08-02T13:01:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:02:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:02:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=48.9Mi, Sys=20.2Mi, NumGC=183","level":"stat"}
+{"@timestamp":"2022-08-02T13:02:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:03:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:03:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=49.0Mi, Sys=20.2Mi, NumGC=184","level":"stat"}
+{"@timestamp":"2022-08-02T13:03:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:04:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:04:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=49.0Mi, Sys=20.2Mi, NumGC=184","level":"stat"}
+{"@timestamp":"2022-08-02T13:04:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:05:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:05:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=49.2Mi, Sys=20.2Mi, NumGC=185","level":"stat"}
+{"@timestamp":"2022-08-02T13:05:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:06:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:06:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=49.3Mi, Sys=20.2Mi, NumGC=185","level":"stat"}
+{"@timestamp":"2022-08-02T13:06:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:07:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:07:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=49.4Mi, Sys=20.2Mi, NumGC=186","level":"stat"}
+{"@timestamp":"2022-08-02T13:07:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:08:20.418+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:08:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=49.5Mi, Sys=20.2Mi, NumGC=186","level":"stat"}
+{"@timestamp":"2022-08-02T13:08:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:09:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:09:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=49.6Mi, Sys=20.2Mi, NumGC=187","level":"stat"}
+{"@timestamp":"2022-08-02T13:09:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:10:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:10:44.289+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=49.8Mi, Sys=20.2Mi, NumGC=187","level":"stat"}
+{"@timestamp":"2022-08-02T13:10:44.341+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:11:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:11:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=49.9Mi, Sys=20.2Mi, NumGC=188","level":"stat"}
+{"@timestamp":"2022-08-02T13:11:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:12:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:12:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=49.9Mi, Sys=20.2Mi, NumGC=188","level":"stat"}
+{"@timestamp":"2022-08-02T13:12:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:13:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:13:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=50.0Mi, Sys=20.2Mi, NumGC=189","level":"stat"}
+{"@timestamp":"2022-08-02T13:13:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:14:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:14:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=50.1Mi, Sys=20.2Mi, NumGC=189","level":"stat"}
+{"@timestamp":"2022-08-02T13:14:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:15:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:15:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=50.3Mi, Sys=20.2Mi, NumGC=190","level":"stat"}
+{"@timestamp":"2022-08-02T13:15:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:16:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:16:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=50.4Mi, Sys=20.2Mi, NumGC=190","level":"stat"}
+{"@timestamp":"2022-08-02T13:16:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:17:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:17:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=50.5Mi, Sys=20.2Mi, NumGC=191","level":"stat"}
+{"@timestamp":"2022-08-02T13:17:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:18:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:18:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=50.6Mi, Sys=20.2Mi, NumGC=191","level":"stat"}
+{"@timestamp":"2022-08-02T13:18:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:19:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:19:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=50.7Mi, Sys=20.2Mi, NumGC=192","level":"stat"}
+{"@timestamp":"2022-08-02T13:19:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:20:20.418+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:20:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=50.9Mi, Sys=20.2Mi, NumGC=192","level":"stat"}
+{"@timestamp":"2022-08-02T13:20:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:21:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:21:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=50.9Mi, Sys=20.2Mi, NumGC=193","level":"stat"}
+{"@timestamp":"2022-08-02T13:21:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:22:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:22:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=51.0Mi, Sys=20.2Mi, NumGC=193","level":"stat"}
+{"@timestamp":"2022-08-02T13:22:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:23:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:23:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=51.1Mi, Sys=20.2Mi, NumGC=194","level":"stat"}
+{"@timestamp":"2022-08-02T13:23:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:24:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:24:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=51.2Mi, Sys=20.2Mi, NumGC=194","level":"stat"}
+{"@timestamp":"2022-08-02T13:24:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:25:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:25:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=51.4Mi, Sys=20.2Mi, NumGC=195","level":"stat"}
+{"@timestamp":"2022-08-02T13:25:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:26:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:26:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=51.5Mi, Sys=20.2Mi, NumGC=195","level":"stat"}
+{"@timestamp":"2022-08-02T13:26:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:27:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:27:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=51.6Mi, Sys=20.2Mi, NumGC=196","level":"stat"}
+{"@timestamp":"2022-08-02T13:27:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:28:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:28:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=51.7Mi, Sys=20.2Mi, NumGC=196","level":"stat"}
+{"@timestamp":"2022-08-02T13:28:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:29:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:29:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=51.8Mi, Sys=20.2Mi, NumGC=197","level":"stat"}
+{"@timestamp":"2022-08-02T13:29:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:30:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:30:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=51.9Mi, Sys=20.2Mi, NumGC=197","level":"stat"}
+{"@timestamp":"2022-08-02T13:30:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:31:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:31:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=52.0Mi, Sys=20.2Mi, NumGC=198","level":"stat"}
+{"@timestamp":"2022-08-02T13:31:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:32:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:32:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=52.1Mi, Sys=20.2Mi, NumGC=198","level":"stat"}
+{"@timestamp":"2022-08-02T13:32:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:33:20.402+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:33:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=52.2Mi, Sys=20.2Mi, NumGC=199","level":"stat"}
+{"@timestamp":"2022-08-02T13:33:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:34:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:34:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=52.3Mi, Sys=20.2Mi, NumGC=199","level":"stat"}
+{"@timestamp":"2022-08-02T13:34:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:35:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:35:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=52.5Mi, Sys=20.2Mi, NumGC=200","level":"stat"}
+{"@timestamp":"2022-08-02T13:35:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:36:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:36:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=52.6Mi, Sys=20.2Mi, NumGC=200","level":"stat"}
+{"@timestamp":"2022-08-02T13:36:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:37:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:37:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=52.7Mi, Sys=20.2Mi, NumGC=201","level":"stat"}
+{"@timestamp":"2022-08-02T13:37:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:38:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:38:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=52.8Mi, Sys=20.2Mi, NumGC=201","level":"stat"}
+{"@timestamp":"2022-08-02T13:38:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:39:20.402+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:39:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=52.8Mi, Sys=20.2Mi, NumGC=202","level":"stat"}
+{"@timestamp":"2022-08-02T13:39:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:40:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:40:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=53.0Mi, Sys=20.2Mi, NumGC=202","level":"stat"}
+{"@timestamp":"2022-08-02T13:40:44.307+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:41:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:41:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=53.1Mi, Sys=20.2Mi, NumGC=203","level":"stat"}
+{"@timestamp":"2022-08-02T13:41:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:42:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:42:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=53.2Mi, Sys=20.2Mi, NumGC=203","level":"stat"}
+{"@timestamp":"2022-08-02T13:42:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:43:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:43:44.267+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=53.3Mi, Sys=20.2Mi, NumGC=204","level":"stat"}
+{"@timestamp":"2022-08-02T13:43:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:44:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:44:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=53.4Mi, Sys=20.2Mi, NumGC=204","level":"stat"}
+{"@timestamp":"2022-08-02T13:44:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:45:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:45:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=53.6Mi, Sys=20.2Mi, NumGC=205","level":"stat"}
+{"@timestamp":"2022-08-02T13:45:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:46:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:46:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=53.7Mi, Sys=20.2Mi, NumGC=205","level":"stat"}
+{"@timestamp":"2022-08-02T13:46:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:47:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:47:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=53.8Mi, Sys=20.2Mi, NumGC=206","level":"stat"}
+{"@timestamp":"2022-08-02T13:47:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:48:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:48:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=54.0Mi, Sys=20.2Mi, NumGC=206","level":"stat"}
+{"@timestamp":"2022-08-02T13:48:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:49:20.662+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:49:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=54.3Mi, Sys=20.2Mi, NumGC=207","level":"stat"}
+{"@timestamp":"2022-08-02T13:49:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:50:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:50:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=54.3Mi, Sys=20.2Mi, NumGC=207","level":"stat"}
+{"@timestamp":"2022-08-02T13:50:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:51:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:51:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=54.7Mi, Sys=20.2Mi, NumGC=208","level":"stat"}
+{"@timestamp":"2022-08-02T13:51:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:52:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:52:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=54.8Mi, Sys=20.2Mi, NumGC=208","level":"stat"}
+{"@timestamp":"2022-08-02T13:52:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:53:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:53:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=54.8Mi, Sys=20.2Mi, NumGC=209","level":"stat"}
+{"@timestamp":"2022-08-02T13:53:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:54:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:54:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=54.9Mi, Sys=20.2Mi, NumGC=209","level":"stat"}
+{"@timestamp":"2022-08-02T13:54:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:55:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:55:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=55.0Mi, Sys=20.2Mi, NumGC=210","level":"stat"}
+{"@timestamp":"2022-08-02T13:55:44.307+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:56:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:56:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=55.2Mi, Sys=20.2Mi, NumGC=210","level":"stat"}
+{"@timestamp":"2022-08-02T13:56:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:57:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:57:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=55.3Mi, Sys=20.2Mi, NumGC=211","level":"stat"}
+{"@timestamp":"2022-08-02T13:57:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:58:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:58:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=55.4Mi, Sys=20.2Mi, NumGC=211","level":"stat"}
+{"@timestamp":"2022-08-02T13:58:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T13:59:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T13:59:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=55.5Mi, Sys=20.2Mi, NumGC=212","level":"stat"}
+{"@timestamp":"2022-08-02T13:59:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:00:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:00:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=55.6Mi, Sys=20.2Mi, NumGC=212","level":"stat"}
+{"@timestamp":"2022-08-02T14:00:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:01:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:01:44.283+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=55.8Mi, Sys=20.2Mi, NumGC=213","level":"stat"}
+{"@timestamp":"2022-08-02T14:01:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:02:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:02:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=55.8Mi, Sys=20.2Mi, NumGC=213","level":"stat"}
+{"@timestamp":"2022-08-02T14:02:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:03:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:03:44.267+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=55.9Mi, Sys=20.2Mi, NumGC=214","level":"stat"}
+{"@timestamp":"2022-08-02T14:03:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:04:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:04:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=56.0Mi, Sys=20.2Mi, NumGC=214","level":"stat"}
+{"@timestamp":"2022-08-02T14:04:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:05:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:05:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=56.1Mi, Sys=20.2Mi, NumGC=215","level":"stat"}
+{"@timestamp":"2022-08-02T14:05:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:06:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:06:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=56.3Mi, Sys=20.2Mi, NumGC=215","level":"stat"}
+{"@timestamp":"2022-08-02T14:06:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:07:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:07:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=56.4Mi, Sys=20.2Mi, NumGC=216","level":"stat"}
+{"@timestamp":"2022-08-02T14:07:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:08:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:08:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=56.5Mi, Sys=20.2Mi, NumGC=216","level":"stat"}
+{"@timestamp":"2022-08-02T14:08:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:09:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:09:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=56.6Mi, Sys=20.2Mi, NumGC=217","level":"stat"}
+{"@timestamp":"2022-08-02T14:09:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:10:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:10:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=56.6Mi, Sys=20.2Mi, NumGC=217","level":"stat"}
+{"@timestamp":"2022-08-02T14:10:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:11:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:11:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=56.8Mi, Sys=20.2Mi, NumGC=218","level":"stat"}
+{"@timestamp":"2022-08-02T14:11:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:12:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:12:44.267+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=56.9Mi, Sys=20.2Mi, NumGC=218","level":"stat"}
+{"@timestamp":"2022-08-02T14:12:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:13:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:13:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=57.0Mi, Sys=20.2Mi, NumGC=219","level":"stat"}
+{"@timestamp":"2022-08-02T14:13:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:14:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:14:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=57.1Mi, Sys=20.2Mi, NumGC=219","level":"stat"}
+{"@timestamp":"2022-08-02T14:14:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:15:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:15:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=57.2Mi, Sys=20.2Mi, NumGC=220","level":"stat"}
+{"@timestamp":"2022-08-02T14:15:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:16:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:16:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=57.4Mi, Sys=20.2Mi, NumGC=220","level":"stat"}
+{"@timestamp":"2022-08-02T14:16:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:17:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:17:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=57.5Mi, Sys=20.2Mi, NumGC=221","level":"stat"}
+{"@timestamp":"2022-08-02T14:17:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:18:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:18:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=57.6Mi, Sys=20.2Mi, NumGC=221","level":"stat"}
+{"@timestamp":"2022-08-02T14:18:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:19:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:19:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=57.6Mi, Sys=20.2Mi, NumGC=222","level":"stat"}
+{"@timestamp":"2022-08-02T14:19:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:20:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:20:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=57.7Mi, Sys=20.2Mi, NumGC=222","level":"stat"}
+{"@timestamp":"2022-08-02T14:20:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:21:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:21:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=57.9Mi, Sys=20.2Mi, NumGC=223","level":"stat"}
+{"@timestamp":"2022-08-02T14:21:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:22:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:22:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=58.0Mi, Sys=20.2Mi, NumGC=223","level":"stat"}
+{"@timestamp":"2022-08-02T14:22:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:23:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:23:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=58.1Mi, Sys=20.2Mi, NumGC=224","level":"stat"}
+{"@timestamp":"2022-08-02T14:23:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:24:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:24:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=58.2Mi, Sys=20.2Mi, NumGC=224","level":"stat"}
+{"@timestamp":"2022-08-02T14:24:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:25:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:25:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=58.3Mi, Sys=20.2Mi, NumGC=225","level":"stat"}
+{"@timestamp":"2022-08-02T14:25:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:26:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:26:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=58.5Mi, Sys=20.2Mi, NumGC=225","level":"stat"}
+{"@timestamp":"2022-08-02T14:26:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:27:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:27:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=58.6Mi, Sys=20.2Mi, NumGC=226","level":"stat"}
+{"@timestamp":"2022-08-02T14:27:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:28:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:28:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=58.6Mi, Sys=20.2Mi, NumGC=226","level":"stat"}
+{"@timestamp":"2022-08-02T14:28:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:29:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:29:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=58.7Mi, Sys=20.2Mi, NumGC=227","level":"stat"}
+{"@timestamp":"2022-08-02T14:29:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:30:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:30:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=58.8Mi, Sys=20.2Mi, NumGC=227","level":"stat"}
+{"@timestamp":"2022-08-02T14:30:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:31:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:31:44.283+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=59.0Mi, Sys=20.2Mi, NumGC=228","level":"stat"}
+{"@timestamp":"2022-08-02T14:31:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:32:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:32:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=59.1Mi, Sys=20.2Mi, NumGC=228","level":"stat"}
+{"@timestamp":"2022-08-02T14:32:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:33:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:33:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=59.2Mi, Sys=20.2Mi, NumGC=229","level":"stat"}
+{"@timestamp":"2022-08-02T14:33:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:34:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:34:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=59.3Mi, Sys=20.2Mi, NumGC=229","level":"stat"}
+{"@timestamp":"2022-08-02T14:34:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:35:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:35:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=59.4Mi, Sys=20.2Mi, NumGC=230","level":"stat"}
+{"@timestamp":"2022-08-02T14:35:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:36:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:36:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=59.6Mi, Sys=20.2Mi, NumGC=230","level":"stat"}
+{"@timestamp":"2022-08-02T14:36:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:37:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:37:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=59.6Mi, Sys=20.2Mi, NumGC=231","level":"stat"}
+{"@timestamp":"2022-08-02T14:37:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:38:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:38:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=59.7Mi, Sys=20.2Mi, NumGC=231","level":"stat"}
+{"@timestamp":"2022-08-02T14:38:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:39:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:39:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=59.8Mi, Sys=20.2Mi, NumGC=232","level":"stat"}
+{"@timestamp":"2022-08-02T14:39:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:40:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:40:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=59.9Mi, Sys=20.2Mi, NumGC=232","level":"stat"}
+{"@timestamp":"2022-08-02T14:40:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:41:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:41:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=60.1Mi, Sys=20.2Mi, NumGC=233","level":"stat"}
+{"@timestamp":"2022-08-02T14:41:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:42:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:42:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=60.2Mi, Sys=20.4Mi, NumGC=233","level":"stat"}
+{"@timestamp":"2022-08-02T14:42:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:43:20.402+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:43:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=60.3Mi, Sys=20.4Mi, NumGC=234","level":"stat"}
+{"@timestamp":"2022-08-02T14:43:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:44:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:44:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=60.4Mi, Sys=20.4Mi, NumGC=234","level":"stat"}
+{"@timestamp":"2022-08-02T14:44:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:45:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:45:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=60.4Mi, Sys=20.4Mi, NumGC=235","level":"stat"}
+{"@timestamp":"2022-08-02T14:45:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:46:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:46:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=60.6Mi, Sys=20.4Mi, NumGC=235","level":"stat"}
+{"@timestamp":"2022-08-02T14:46:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:47:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:47:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=60.7Mi, Sys=20.4Mi, NumGC=236","level":"stat"}
+{"@timestamp":"2022-08-02T14:47:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:48:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:48:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=60.8Mi, Sys=20.4Mi, NumGC=236","level":"stat"}
+{"@timestamp":"2022-08-02T14:48:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:49:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:49:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=60.9Mi, Sys=20.4Mi, NumGC=237","level":"stat"}
+{"@timestamp":"2022-08-02T14:49:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:50:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:50:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=61.0Mi, Sys=20.4Mi, NumGC=237","level":"stat"}
+{"@timestamp":"2022-08-02T14:50:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:51:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:51:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=61.2Mi, Sys=20.4Mi, NumGC=238","level":"stat"}
+{"@timestamp":"2022-08-02T14:51:44.307+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:52:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:52:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=61.3Mi, Sys=20.4Mi, NumGC=238","level":"stat"}
+{"@timestamp":"2022-08-02T14:52:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:53:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:53:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=61.3Mi, Sys=20.4Mi, NumGC=239","level":"stat"}
+{"@timestamp":"2022-08-02T14:53:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:54:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:54:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=61.4Mi, Sys=20.4Mi, NumGC=239","level":"stat"}
+{"@timestamp":"2022-08-02T14:54:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:55:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:55:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=61.5Mi, Sys=20.4Mi, NumGC=240","level":"stat"}
+{"@timestamp":"2022-08-02T14:55:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:56:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:56:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=61.7Mi, Sys=20.4Mi, NumGC=240","level":"stat"}
+{"@timestamp":"2022-08-02T14:56:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:57:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:57:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=61.8Mi, Sys=20.4Mi, NumGC=241","level":"stat"}
+{"@timestamp":"2022-08-02T14:57:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:58:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:58:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=61.9Mi, Sys=20.4Mi, NumGC=241","level":"stat"}
+{"@timestamp":"2022-08-02T14:58:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T14:59:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T14:59:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=62.0Mi, Sys=20.4Mi, NumGC=242","level":"stat"}
+{"@timestamp":"2022-08-02T14:59:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:00:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:00:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=62.1Mi, Sys=20.4Mi, NumGC=242","level":"stat"}
+{"@timestamp":"2022-08-02T15:00:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:01:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:01:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=62.3Mi, Sys=20.4Mi, NumGC=243","level":"stat"}
+{"@timestamp":"2022-08-02T15:01:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:02:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:02:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=62.3Mi, Sys=20.4Mi, NumGC=243","level":"stat"}
+{"@timestamp":"2022-08-02T15:02:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:03:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:03:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=62.4Mi, Sys=20.4Mi, NumGC=244","level":"stat"}
+{"@timestamp":"2022-08-02T15:03:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:04:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:04:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=62.5Mi, Sys=20.4Mi, NumGC=244","level":"stat"}
+{"@timestamp":"2022-08-02T15:04:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:05:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:05:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=62.6Mi, Sys=20.4Mi, NumGC=245","level":"stat"}
+{"@timestamp":"2022-08-02T15:05:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:06:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:06:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=62.8Mi, Sys=20.4Mi, NumGC=245","level":"stat"}
+{"@timestamp":"2022-08-02T15:06:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:07:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:07:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=62.9Mi, Sys=20.4Mi, NumGC=246","level":"stat"}
+{"@timestamp":"2022-08-02T15:07:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:08:20.402+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:08:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=63.0Mi, Sys=20.4Mi, NumGC=246","level":"stat"}
+{"@timestamp":"2022-08-02T15:08:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:09:20.418+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:09:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=63.1Mi, Sys=20.4Mi, NumGC=247","level":"stat"}
+{"@timestamp":"2022-08-02T15:09:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:10:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:10:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=63.1Mi, Sys=20.4Mi, NumGC=247","level":"stat"}
+{"@timestamp":"2022-08-02T15:10:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:11:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:11:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=63.3Mi, Sys=20.4Mi, NumGC=248","level":"stat"}
+{"@timestamp":"2022-08-02T15:11:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:12:20.402+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:12:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=63.4Mi, Sys=20.4Mi, NumGC=248","level":"stat"}
+{"@timestamp":"2022-08-02T15:12:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:13:20.418+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:13:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=63.5Mi, Sys=20.4Mi, NumGC=249","level":"stat"}
+{"@timestamp":"2022-08-02T15:13:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:14:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:14:44.267+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=63.6Mi, Sys=20.4Mi, NumGC=249","level":"stat"}
+{"@timestamp":"2022-08-02T15:14:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:15:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:15:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=63.7Mi, Sys=20.4Mi, NumGC=250","level":"stat"}
+{"@timestamp":"2022-08-02T15:15:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:16:20.402+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:16:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=63.9Mi, Sys=20.4Mi, NumGC=250","level":"stat"}
+{"@timestamp":"2022-08-02T15:16:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:17:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:17:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=64.0Mi, Sys=20.4Mi, NumGC=251","level":"stat"}
+{"@timestamp":"2022-08-02T15:17:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:18:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:18:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=64.0Mi, Sys=20.4Mi, NumGC=251","level":"stat"}
+{"@timestamp":"2022-08-02T15:18:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:19:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:19:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=64.1Mi, Sys=20.4Mi, NumGC=252","level":"stat"}
+{"@timestamp":"2022-08-02T15:19:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:20:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:20:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=64.2Mi, Sys=20.4Mi, NumGC=252","level":"stat"}
+{"@timestamp":"2022-08-02T15:20:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:21:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:21:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=64.4Mi, Sys=20.4Mi, NumGC=253","level":"stat"}
+{"@timestamp":"2022-08-02T15:21:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:22:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:22:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=64.5Mi, Sys=20.4Mi, NumGC=253","level":"stat"}
+{"@timestamp":"2022-08-02T15:22:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:23:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:23:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=64.6Mi, Sys=20.4Mi, NumGC=254","level":"stat"}
+{"@timestamp":"2022-08-02T15:23:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:24:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:24:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=64.7Mi, Sys=20.4Mi, NumGC=254","level":"stat"}
+{"@timestamp":"2022-08-02T15:24:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:25:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:25:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=64.8Mi, Sys=20.4Mi, NumGC=255","level":"stat"}
+{"@timestamp":"2022-08-02T15:25:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:26:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:26:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=65.0Mi, Sys=20.4Mi, NumGC=255","level":"stat"}
+{"@timestamp":"2022-08-02T15:26:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:27:20.402+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:27:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=65.0Mi, Sys=20.4Mi, NumGC=256","level":"stat"}
+{"@timestamp":"2022-08-02T15:27:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:28:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:28:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=65.1Mi, Sys=20.4Mi, NumGC=256","level":"stat"}
+{"@timestamp":"2022-08-02T15:28:44.291+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:29:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:29:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=65.2Mi, Sys=20.4Mi, NumGC=257","level":"stat"}
+{"@timestamp":"2022-08-02T15:29:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:30:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:30:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=65.3Mi, Sys=20.4Mi, NumGC=257","level":"stat"}
+{"@timestamp":"2022-08-02T15:30:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:31:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:31:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=65.5Mi, Sys=20.4Mi, NumGC=258","level":"stat"}
+{"@timestamp":"2022-08-02T15:31:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:32:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:32:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=65.6Mi, Sys=20.4Mi, NumGC=258","level":"stat"}
+{"@timestamp":"2022-08-02T15:32:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:33:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:33:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=65.7Mi, Sys=20.4Mi, NumGC=259","level":"stat"}
+{"@timestamp":"2022-08-02T15:33:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:34:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:34:44.283+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=65.8Mi, Sys=20.4Mi, NumGC=259","level":"stat"}
+{"@timestamp":"2022-08-02T15:34:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:35:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:35:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=65.9Mi, Sys=20.4Mi, NumGC=260","level":"stat"}
+{"@timestamp":"2022-08-02T15:35:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:36:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:36:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=66.0Mi, Sys=20.4Mi, NumGC=260","level":"stat"}
+{"@timestamp":"2022-08-02T15:36:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:37:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:37:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=66.1Mi, Sys=20.4Mi, NumGC=261","level":"stat"}
+{"@timestamp":"2022-08-02T15:37:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:38:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:38:44.283+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=66.2Mi, Sys=20.4Mi, NumGC=261","level":"stat"}
+{"@timestamp":"2022-08-02T15:38:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:39:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:39:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=66.3Mi, Sys=20.4Mi, NumGC=262","level":"stat"}
+{"@timestamp":"2022-08-02T15:39:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:40:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:40:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=66.4Mi, Sys=20.4Mi, NumGC=262","level":"stat"}
+{"@timestamp":"2022-08-02T15:40:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:41:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:41:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=66.6Mi, Sys=20.4Mi, NumGC=263","level":"stat"}
+{"@timestamp":"2022-08-02T15:41:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:42:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:42:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=66.7Mi, Sys=20.4Mi, NumGC=263","level":"stat"}
+{"@timestamp":"2022-08-02T15:42:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:43:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:43:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=66.8Mi, Sys=20.4Mi, NumGC=264","level":"stat"}
+{"@timestamp":"2022-08-02T15:43:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:44:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:44:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=66.8Mi, Sys=20.4Mi, NumGC=264","level":"stat"}
+{"@timestamp":"2022-08-02T15:44:44.307+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:45:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:45:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=66.9Mi, Sys=20.4Mi, NumGC=265","level":"stat"}
+{"@timestamp":"2022-08-02T15:45:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:46:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:46:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=67.1Mi, Sys=20.4Mi, NumGC=265","level":"stat"}
+{"@timestamp":"2022-08-02T15:46:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:47:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:47:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=67.2Mi, Sys=20.4Mi, NumGC=266","level":"stat"}
+{"@timestamp":"2022-08-02T15:47:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:48:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:48:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=67.3Mi, Sys=20.4Mi, NumGC=266","level":"stat"}
+{"@timestamp":"2022-08-02T15:48:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:49:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:49:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=67.4Mi, Sys=20.4Mi, NumGC=267","level":"stat"}
+{"@timestamp":"2022-08-02T15:49:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:50:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:50:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=67.5Mi, Sys=20.4Mi, NumGC=267","level":"stat"}
+{"@timestamp":"2022-08-02T15:50:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:51:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:51:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=67.7Mi, Sys=20.4Mi, NumGC=268","level":"stat"}
+{"@timestamp":"2022-08-02T15:51:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:52:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:52:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=67.8Mi, Sys=20.4Mi, NumGC=268","level":"stat"}
+{"@timestamp":"2022-08-02T15:52:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:53:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:53:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=67.8Mi, Sys=20.4Mi, NumGC=269","level":"stat"}
+{"@timestamp":"2022-08-02T15:53:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:54:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:54:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=67.9Mi, Sys=20.4Mi, NumGC=269","level":"stat"}
+{"@timestamp":"2022-08-02T15:54:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:55:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:55:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=68.0Mi, Sys=20.4Mi, NumGC=270","level":"stat"}
+{"@timestamp":"2022-08-02T15:55:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:56:20.418+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:56:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=68.2Mi, Sys=20.4Mi, NumGC=270","level":"stat"}
+{"@timestamp":"2022-08-02T15:56:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:57:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:57:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=68.3Mi, Sys=20.4Mi, NumGC=271","level":"stat"}
+{"@timestamp":"2022-08-02T15:57:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:58:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:58:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=68.4Mi, Sys=20.4Mi, NumGC=271","level":"stat"}
+{"@timestamp":"2022-08-02T15:58:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T15:59:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T15:59:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=68.5Mi, Sys=20.4Mi, NumGC=272","level":"stat"}
+{"@timestamp":"2022-08-02T15:59:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:00:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:00:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=68.5Mi, Sys=20.4Mi, NumGC=272","level":"stat"}
+{"@timestamp":"2022-08-02T16:00:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:01:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:01:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=68.7Mi, Sys=20.4Mi, NumGC=273","level":"stat"}
+{"@timestamp":"2022-08-02T16:01:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:02:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:02:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=68.8Mi, Sys=20.4Mi, NumGC=273","level":"stat"}
+{"@timestamp":"2022-08-02T16:02:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:03:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:03:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=68.9Mi, Sys=20.4Mi, NumGC=274","level":"stat"}
+{"@timestamp":"2022-08-02T16:03:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:04:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:04:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=69.0Mi, Sys=20.4Mi, NumGC=274","level":"stat"}
+{"@timestamp":"2022-08-02T16:04:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:05:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:05:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=69.1Mi, Sys=20.4Mi, NumGC=275","level":"stat"}
+{"@timestamp":"2022-08-02T16:05:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:06:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:06:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=69.3Mi, Sys=20.4Mi, NumGC=275","level":"stat"}
+{"@timestamp":"2022-08-02T16:06:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:07:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:07:44.283+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=69.4Mi, Sys=20.4Mi, NumGC=276","level":"stat"}
+{"@timestamp":"2022-08-02T16:07:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:08:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:08:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=69.5Mi, Sys=20.4Mi, NumGC=276","level":"stat"}
+{"@timestamp":"2022-08-02T16:08:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:09:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:09:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=69.5Mi, Sys=20.4Mi, NumGC=277","level":"stat"}
+{"@timestamp":"2022-08-02T16:09:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:10:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:10:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=69.6Mi, Sys=20.4Mi, NumGC=277","level":"stat"}
+{"@timestamp":"2022-08-02T16:10:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:11:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:11:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=69.8Mi, Sys=20.4Mi, NumGC=278","level":"stat"}
+{"@timestamp":"2022-08-02T16:11:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:12:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:12:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=69.9Mi, Sys=20.4Mi, NumGC=278","level":"stat"}
+{"@timestamp":"2022-08-02T16:12:44.307+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:13:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:13:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=70.0Mi, Sys=20.4Mi, NumGC=279","level":"stat"}
+{"@timestamp":"2022-08-02T16:13:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:14:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:14:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=70.1Mi, Sys=20.4Mi, NumGC=279","level":"stat"}
+{"@timestamp":"2022-08-02T16:14:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:15:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:15:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=70.3Mi, Sys=20.4Mi, NumGC=280","level":"stat"}
+{"@timestamp":"2022-08-02T16:15:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:16:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:16:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=70.4Mi, Sys=20.4Mi, NumGC=280","level":"stat"}
+{"@timestamp":"2022-08-02T16:16:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:17:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:17:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=70.5Mi, Sys=20.4Mi, NumGC=281","level":"stat"}
+{"@timestamp":"2022-08-02T16:17:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:18:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:18:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=70.6Mi, Sys=20.4Mi, NumGC=281","level":"stat"}
+{"@timestamp":"2022-08-02T16:18:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:19:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:19:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=70.7Mi, Sys=20.4Mi, NumGC=282","level":"stat"}
+{"@timestamp":"2022-08-02T16:19:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:20:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:20:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=70.9Mi, Sys=20.4Mi, NumGC=282","level":"stat"}
+{"@timestamp":"2022-08-02T16:20:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:21:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:21:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=71.0Mi, Sys=20.4Mi, NumGC=283","level":"stat"}
+{"@timestamp":"2022-08-02T16:21:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:22:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:22:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=71.0Mi, Sys=20.4Mi, NumGC=283","level":"stat"}
+{"@timestamp":"2022-08-02T16:22:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:23:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:23:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=71.1Mi, Sys=20.4Mi, NumGC=284","level":"stat"}
+{"@timestamp":"2022-08-02T16:23:44.307+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:24:20.418+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:24:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=71.2Mi, Sys=20.4Mi, NumGC=284","level":"stat"}
+{"@timestamp":"2022-08-02T16:24:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:25:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:25:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=71.4Mi, Sys=20.4Mi, NumGC=285","level":"stat"}
+{"@timestamp":"2022-08-02T16:25:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:26:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:26:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=71.5Mi, Sys=20.4Mi, NumGC=285","level":"stat"}
+{"@timestamp":"2022-08-02T16:26:44.307+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:27:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:27:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=71.6Mi, Sys=20.4Mi, NumGC=286","level":"stat"}
+{"@timestamp":"2022-08-02T16:27:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:28:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:28:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=71.7Mi, Sys=20.4Mi, NumGC=286","level":"stat"}
+{"@timestamp":"2022-08-02T16:28:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:29:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:29:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=71.8Mi, Sys=20.4Mi, NumGC=287","level":"stat"}
+{"@timestamp":"2022-08-02T16:29:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:30:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:30:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=72.0Mi, Sys=20.4Mi, NumGC=287","level":"stat"}
+{"@timestamp":"2022-08-02T16:30:44.307+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:31:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:31:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=72.0Mi, Sys=20.4Mi, NumGC=288","level":"stat"}
+{"@timestamp":"2022-08-02T16:31:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:32:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:32:44.267+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=72.1Mi, Sys=20.4Mi, NumGC=288","level":"stat"}
+{"@timestamp":"2022-08-02T16:32:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:33:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:33:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=72.2Mi, Sys=20.4Mi, NumGC=289","level":"stat"}
+{"@timestamp":"2022-08-02T16:33:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:34:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:34:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=72.3Mi, Sys=20.4Mi, NumGC=289","level":"stat"}
+{"@timestamp":"2022-08-02T16:34:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:35:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:35:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=72.5Mi, Sys=20.4Mi, NumGC=290","level":"stat"}
+{"@timestamp":"2022-08-02T16:35:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:36:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:36:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=72.6Mi, Sys=20.4Mi, NumGC=290","level":"stat"}
+{"@timestamp":"2022-08-02T16:36:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:37:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:37:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=72.7Mi, Sys=20.4Mi, NumGC=291","level":"stat"}
+{"@timestamp":"2022-08-02T16:37:44.293+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:38:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:38:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=72.8Mi, Sys=20.4Mi, NumGC=291","level":"stat"}
+{"@timestamp":"2022-08-02T16:38:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:39:20.402+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:39:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=72.9Mi, Sys=20.4Mi, NumGC=292","level":"stat"}
+{"@timestamp":"2022-08-02T16:39:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:40:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:40:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=73.0Mi, Sys=20.4Mi, NumGC=292","level":"stat"}
+{"@timestamp":"2022-08-02T16:40:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:41:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:41:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=73.1Mi, Sys=20.4Mi, NumGC=293","level":"stat"}
+{"@timestamp":"2022-08-02T16:41:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:42:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:42:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=73.2Mi, Sys=20.4Mi, NumGC=293","level":"stat"}
+{"@timestamp":"2022-08-02T16:42:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:43:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:43:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=73.3Mi, Sys=20.4Mi, NumGC=294","level":"stat"}
+{"@timestamp":"2022-08-02T16:43:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:44:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:44:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=73.4Mi, Sys=20.4Mi, NumGC=294","level":"stat"}
+{"@timestamp":"2022-08-02T16:44:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:45:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:45:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=73.6Mi, Sys=20.4Mi, NumGC=295","level":"stat"}
+{"@timestamp":"2022-08-02T16:45:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:46:20.402+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:46:44.269+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=73.7Mi, Sys=20.4Mi, NumGC=295","level":"stat"}
+{"@timestamp":"2022-08-02T16:46:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:47:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:47:44.267+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=73.8Mi, Sys=20.4Mi, NumGC=296","level":"stat"}
+{"@timestamp":"2022-08-02T16:47:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:48:20.408+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:48:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=73.8Mi, Sys=20.4Mi, NumGC=296","level":"stat"}
+{"@timestamp":"2022-08-02T16:48:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:49:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:49:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=73.9Mi, Sys=20.4Mi, NumGC=297","level":"stat"}
+{"@timestamp":"2022-08-02T16:49:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:50:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:50:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=74.1Mi, Sys=20.4Mi, NumGC=297","level":"stat"}
+{"@timestamp":"2022-08-02T16:50:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:51:20.402+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:51:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=74.2Mi, Sys=20.4Mi, NumGC=298","level":"stat"}
+{"@timestamp":"2022-08-02T16:51:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:52:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:52:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=74.3Mi, Sys=20.4Mi, NumGC=298","level":"stat"}
+{"@timestamp":"2022-08-02T16:52:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:53:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:53:44.280+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=74.4Mi, Sys=20.4Mi, NumGC=299","level":"stat"}
+{"@timestamp":"2022-08-02T16:53:44.295+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:54:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:54:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=74.5Mi, Sys=20.4Mi, NumGC=299","level":"stat"}
+{"@timestamp":"2022-08-02T16:54:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:55:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:55:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=74.7Mi, Sys=20.4Mi, NumGC=300","level":"stat"}
+{"@timestamp":"2022-08-02T16:55:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:56:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:56:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=74.8Mi, Sys=20.4Mi, NumGC=300","level":"stat"}
+{"@timestamp":"2022-08-02T16:56:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:57:20.412+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:57:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=74.9Mi, Sys=20.4Mi, NumGC=301","level":"stat"}
+{"@timestamp":"2022-08-02T16:57:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:58:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:58:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=74.9Mi, Sys=20.4Mi, NumGC=301","level":"stat"}
+{"@timestamp":"2022-08-02T16:58:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T16:59:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T16:59:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=75.0Mi, Sys=20.4Mi, NumGC=302","level":"stat"}
+{"@timestamp":"2022-08-02T16:59:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:00:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:00:44.276+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=75.2Mi, Sys=20.4Mi, NumGC=302","level":"stat"}
+{"@timestamp":"2022-08-02T17:00:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:01:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:01:44.277+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=75.3Mi, Sys=20.4Mi, NumGC=303","level":"stat"}
+{"@timestamp":"2022-08-02T17:01:44.292+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:02:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:02:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=75.4Mi, Sys=20.4Mi, NumGC=303","level":"stat"}
+{"@timestamp":"2022-08-02T17:02:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:03:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:03:44.273+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=75.5Mi, Sys=20.4Mi, NumGC=304","level":"stat"}
+{"@timestamp":"2022-08-02T17:03:44.304+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:04:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:04:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=75.6Mi, Sys=20.4Mi, NumGC=304","level":"stat"}
+{"@timestamp":"2022-08-02T17:04:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:05:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:05:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=75.8Mi, Sys=20.4Mi, NumGC=305","level":"stat"}
+{"@timestamp":"2022-08-02T17:05:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:06:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:06:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=75.8Mi, Sys=20.4Mi, NumGC=305","level":"stat"}
+{"@timestamp":"2022-08-02T17:06:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:07:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:07:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=75.9Mi, Sys=20.4Mi, NumGC=306","level":"stat"}
+{"@timestamp":"2022-08-02T17:07:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:08:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:08:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=76.0Mi, Sys=20.4Mi, NumGC=306","level":"stat"}
+{"@timestamp":"2022-08-02T17:08:44.298+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:09:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:09:44.278+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=76.1Mi, Sys=20.4Mi, NumGC=307","level":"stat"}
+{"@timestamp":"2022-08-02T17:09:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:10:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:10:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=76.3Mi, Sys=20.4Mi, NumGC=307","level":"stat"}
+{"@timestamp":"2022-08-02T17:10:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:11:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:11:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=76.4Mi, Sys=20.4Mi, NumGC=308","level":"stat"}
+{"@timestamp":"2022-08-02T17:11:44.296+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:12:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:12:44.268+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=76.5Mi, Sys=20.4Mi, NumGC=308","level":"stat"}
+{"@timestamp":"2022-08-02T17:12:44.299+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:13:20.410+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:13:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=76.6Mi, Sys=20.4Mi, NumGC=309","level":"stat"}
+{"@timestamp":"2022-08-02T17:13:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:14:20.413+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:14:44.267+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=76.6Mi, Sys=20.4Mi, NumGC=309","level":"stat"}
+{"@timestamp":"2022-08-02T17:14:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:15:20.414+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:15:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=76.8Mi, Sys=20.4Mi, NumGC=310","level":"stat"}
+{"@timestamp":"2022-08-02T17:15:44.307+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:16:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:16:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=76.9Mi, Sys=20.4Mi, NumGC=310","level":"stat"}
+{"@timestamp":"2022-08-02T17:16:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:17:20.407+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:17:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=77.0Mi, Sys=20.4Mi, NumGC=311","level":"stat"}
+{"@timestamp":"2022-08-02T17:17:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:18:20.417+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:18:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=77.1Mi, Sys=20.4Mi, NumGC=311","level":"stat"}
+{"@timestamp":"2022-08-02T17:18:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:19:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:19:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=77.2Mi, Sys=20.4Mi, NumGC=312","level":"stat"}
+{"@timestamp":"2022-08-02T17:19:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:20:20.405+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:20:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=77.4Mi, Sys=20.4Mi, NumGC=312","level":"stat"}
+{"@timestamp":"2022-08-02T17:20:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:21:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:21:44.271+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=77.5Mi, Sys=20.4Mi, NumGC=313","level":"stat"}
+{"@timestamp":"2022-08-02T17:21:44.302+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:22:20.406+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:22:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=77.5Mi, Sys=20.4Mi, NumGC=313","level":"stat"}
+{"@timestamp":"2022-08-02T17:22:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:23:20.416+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:23:44.282+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=77.6Mi, Sys=20.4Mi, NumGC=314","level":"stat"}
+{"@timestamp":"2022-08-02T17:23:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:24:20.402+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:24:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=77.7Mi, Sys=20.4Mi, NumGC=314","level":"stat"}
+{"@timestamp":"2022-08-02T17:24:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:25:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:25:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=77.9Mi, Sys=20.4Mi, NumGC=315","level":"stat"}
+{"@timestamp":"2022-08-02T17:25:44.301+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:26:20.418+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:26:44.274+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=78.0Mi, Sys=20.4Mi, NumGC=315","level":"stat"}
+{"@timestamp":"2022-08-02T17:26:44.305+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:27:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:27:44.272+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=78.1Mi, Sys=20.4Mi, NumGC=316","level":"stat"}
+{"@timestamp":"2022-08-02T17:27:44.303+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:28:20.415+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:28:44.270+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=78.2Mi, Sys=20.4Mi, NumGC=316","level":"stat"}
+{"@timestamp":"2022-08-02T17:28:44.300+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:29:20.404+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:29:44.281+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=78.3Mi, Sys=20.4Mi, NumGC=317","level":"stat"}
+{"@timestamp":"2022-08-02T17:29:44.297+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:30:20.409+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:30:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=78.5Mi, Sys=20.4Mi, NumGC=317","level":"stat"}
+{"@timestamp":"2022-08-02T17:30:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:31:20.403+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:31:44.275+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=78.5Mi, Sys=20.4Mi, NumGC=318","level":"stat"}
+{"@timestamp":"2022-08-02T17:31:44.306+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:32:20.411+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:32:44.279+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=78.6Mi, Sys=20.4Mi, NumGC=318","level":"stat"}
+{"@timestamp":"2022-08-02T17:32:44.294+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:33:59.151+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=8.1Mi, Sys=19.2Mi, NumGC=3","level":"stat"}
+{"@timestamp":"2022-08-02T17:33:59.183+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:34:59.146+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=8.3Mi, Sys=19.2Mi, NumGC=3","level":"stat"}
+{"@timestamp":"2022-08-02T17:34:59.178+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:35:59.141+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=8.4Mi, Sys=19.2Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-02T17:35:59.189+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:36:59.154+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=8.5Mi, Sys=19.2Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-02T17:36:59.185+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:37:59.148+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=8.5Mi, Sys=19.2Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-02T17:37:59.178+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:38:59.141+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=8.7Mi, Sys=19.2Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-02T17:38:59.189+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:39:59.150+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=8.8Mi, Sys=19.2Mi, NumGC=6","level":"stat"}
+{"@timestamp":"2022-08-02T17:39:59.181+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:40:59.149+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=8.9Mi, Sys=19.2Mi, NumGC=6","level":"stat"}
+{"@timestamp":"2022-08-02T17:40:59.179+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:41:59.143+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=9.0Mi, Sys=19.2Mi, NumGC=7","level":"stat"}
+{"@timestamp":"2022-08-02T17:41:59.190+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:42:59.152+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=9.1Mi, Sys=19.2Mi, NumGC=7","level":"stat"}
+{"@timestamp":"2022-08-02T17:42:59.178+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:43:59.148+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=9.3Mi, Sys=19.4Mi, NumGC=8","level":"stat"}
+{"@timestamp":"2022-08-02T17:43:59.180+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:46:06.556+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=8.1Mi, Sys=18.9Mi, NumGC=3","level":"stat"}
+{"@timestamp":"2022-08-02T17:46:06.571+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:47:06.541+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=8.3Mi, Sys=18.9Mi, NumGC=3","level":"stat"}
+{"@timestamp":"2022-08-02T17:47:06.571+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:48:06.543+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=8.4Mi, Sys=23.5Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-02T17:48:06.574+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:49:06.547+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=8.5Mi, Sys=23.5Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-02T17:49:06.578+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:50:06.555+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=8.6Mi, Sys=23.5Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-02T17:50:06.571+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:51:37.559+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=8.3Mi, Sys=19.2Mi, NumGC=3","level":"stat"}
+{"@timestamp":"2022-08-02T17:51:37.589+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:52:37.569+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=8.5Mi, Sys=19.2Mi, NumGC=3","level":"stat"}
+{"@timestamp":"2022-08-02T17:52:37.584+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:53:10.644+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 6930, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-02T17:53:37.563+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=8.9Mi, Sys=19.2Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-02T17:53:37.593+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:54:10.656+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 52.0ms, med: 53.0ms, 90th: 53.0ms, 99th: 53.0ms, 99.9th: 53.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:54:37.563+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=9.0Mi, Sys=19.2Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-02T17:54:37.594+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:55:10.660+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:55:42.868+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 10501, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-02T17:56:40.049+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=8.6Mi, Sys=19.4Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-02T17:56:40.065+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:56:42.887+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 116.0ms, med: 116.2ms, 90th: 116.2ms, 99th: 116.2ms, 99.9th: 116.2ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:57:40.054+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=8.8Mi, Sys=19.4Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-02T17:57:40.070+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:57:42.876+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:58:40.043+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=8.9Mi, Sys=19.7Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-02T17:58:40.075+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T17:58:42.878+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T17:59:02.907+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 9274, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-02T17:59:59.983+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=8.5Mi, Sys=19.4Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-02T18:00:00.013+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:00:02.913+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 91.0ms, med: 91.7ms, 90th: 91.7ms, 99th: 91.7ms, 99.9th: 91.7ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:00:59.997+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=8.7Mi, Sys=19.7Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-02T18:01:00.013+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:01:02.918+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:01:59.990+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=8.8Mi, Sys=19.7Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-02T18:02:00.021+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:02:02.915+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:02:59.985+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=8.9Mi, Sys=19.7Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-02T18:03:00.016+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:03:02.926+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:04:00.781+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 9447, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-02T18:04:52.754+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=8.6Mi, Sys=19.7Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-02T18:04:52.784+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:05:00.825+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 127.0ms, med: 127.9ms, 90th: 127.9ms, 99th: 127.9ms, 99.9th: 127.9ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:05:52.760+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=8.8Mi, Sys=19.7Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-02T18:05:52.775+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:06:00.819+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:06:52.753+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=8.9Mi, Sys=19.9Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-02T18:06:52.784+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:07:00.824+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:07:52.757+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=8.9Mi, Sys=19.9Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-02T18:07:52.788+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:08:00.832+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:08:52.754+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=9.0Mi, Sys=19.9Mi, NumGC=6","level":"stat"}
+{"@timestamp":"2022-08-02T18:08:52.785+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:09:00.823+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:09:09.542+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 8426, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-02T18:09:52.757+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=9.5Mi, Sys=19.9Mi, NumGC=6","level":"stat"}
+{"@timestamp":"2022-08-02T18:09:52.788+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 4, pass: 4, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:10:00.831+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.1/s, drops: 0, avg time: 77.2ms, med: 76.2ms, 90th: 114.1ms, 99th: 114.1ms, 99.9th: 114.1ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:10:52.764+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=9.5Mi, Sys=19.9Mi, NumGC=7","level":"stat"}
+{"@timestamp":"2022-08-02T18:10:52.779+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:11:00.827+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:11:52.751+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.6Mi, Sys=19.9Mi, NumGC=7","level":"stat"}
+{"@timestamp":"2022-08-02T18:11:52.782+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:12:00.819+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:12:52.755+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=9.7Mi, Sys=19.9Mi, NumGC=8","level":"stat"}
+{"@timestamp":"2022-08-02T18:12:52.786+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:13:00.827+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:13:08.709+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 7633, reqs: 4","level":"stat"}
+{"@timestamp":"2022-08-02T18:13:52.751+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.8Mi, Sys=19.9Mi, NumGC=8","level":"stat"}
+{"@timestamp":"2022-08-02T18:13:52.782+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:14:00.825+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 63.0ms, med: 63.1ms, 90th: 63.1ms, 99th: 63.1ms, 99.9th: 63.1ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:14:52.766+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=9.9Mi, Sys=19.9Mi, NumGC=9","level":"stat"}
+{"@timestamp":"2022-08-02T18:14:52.781+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:15:00.833+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:15:52.756+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.1Mi, Sys=19.9Mi, NumGC=9","level":"stat"}
+{"@timestamp":"2022-08-02T18:15:52.786+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:16:00.830+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:16:52.764+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=10.2Mi, Sys=19.9Mi, NumGC=10","level":"stat"}
+{"@timestamp":"2022-08-02T18:16:52.780+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:17:00.826+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:17:52.757+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=10.3Mi, Sys=19.9Mi, NumGC=10","level":"stat"}
+{"@timestamp":"2022-08-02T18:17:52.789+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:18:00.825+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:19:40.363+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 11940, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-02T18:19:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=8.5Mi, Sys=19.4Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-02T18:19:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:20:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 149.0ms, med: 149.1ms, 90th: 149.1ms, 99th: 149.1ms, 99.9th: 149.1ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:20:57.687+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=8.7Mi, Sys=19.4Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-02T18:20:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:21:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:21:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=8.8Mi, Sys=19.7Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-02T18:21:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:22:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:22:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=8.8Mi, Sys=19.7Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-02T18:22:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:23:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:23:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=8.9Mi, Sys=19.7Mi, NumGC=6","level":"stat"}
+{"@timestamp":"2022-08-02T18:23:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:24:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:24:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=9.2Mi, Sys=19.7Mi, NumGC=6","level":"stat"}
+{"@timestamp":"2022-08-02T18:24:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:25:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:25:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=9.3Mi, Sys=19.7Mi, NumGC=7","level":"stat"}
+{"@timestamp":"2022-08-02T18:25:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:26:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:26:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.5Mi, Sys=19.7Mi, NumGC=7","level":"stat"}
+{"@timestamp":"2022-08-02T18:26:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:27:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:27:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=9.6Mi, Sys=19.7Mi, NumGC=8","level":"stat"}
+{"@timestamp":"2022-08-02T18:27:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:28:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:28:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.7Mi, Sys=19.7Mi, NumGC=8","level":"stat"}
+{"@timestamp":"2022-08-02T18:28:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:29:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:29:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=9.9Mi, Sys=19.7Mi, NumGC=9","level":"stat"}
+{"@timestamp":"2022-08-02T18:29:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:30:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:30:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=10.0Mi, Sys=19.7Mi, NumGC=9","level":"stat"}
+{"@timestamp":"2022-08-02T18:30:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:31:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:31:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=10.2Mi, Sys=19.7Mi, NumGC=10","level":"stat"}
+{"@timestamp":"2022-08-02T18:31:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:32:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:32:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=10.3Mi, Sys=19.7Mi, NumGC=10","level":"stat"}
+{"@timestamp":"2022-08-02T18:32:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:33:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:33:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=10.4Mi, Sys=19.7Mi, NumGC=11","level":"stat"}
+{"@timestamp":"2022-08-02T18:33:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:34:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:34:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.6Mi, Sys=19.7Mi, NumGC=11","level":"stat"}
+{"@timestamp":"2022-08-02T18:34:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:35:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:35:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=10.6Mi, Sys=19.7Mi, NumGC=12","level":"stat"}
+{"@timestamp":"2022-08-02T18:35:57.710+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:36:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:36:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.8Mi, Sys=19.7Mi, NumGC=12","level":"stat"}
+{"@timestamp":"2022-08-02T18:36:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:37:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:37:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=10.9Mi, Sys=19.7Mi, NumGC=13","level":"stat"}
+{"@timestamp":"2022-08-02T18:37:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:38:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:38:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=11.0Mi, Sys=19.7Mi, NumGC=13","level":"stat"}
+{"@timestamp":"2022-08-02T18:38:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:39:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:39:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=11.2Mi, Sys=19.7Mi, NumGC=14","level":"stat"}
+{"@timestamp":"2022-08-02T18:39:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:40:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:40:57.688+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=11.3Mi, Sys=19.7Mi, NumGC=14","level":"stat"}
+{"@timestamp":"2022-08-02T18:40:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:41:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:41:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=11.5Mi, Sys=19.7Mi, NumGC=15","level":"stat"}
+{"@timestamp":"2022-08-02T18:41:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:42:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:42:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=11.6Mi, Sys=19.7Mi, NumGC=15","level":"stat"}
+{"@timestamp":"2022-08-02T18:42:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:43:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:43:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=11.6Mi, Sys=19.7Mi, NumGC=16","level":"stat"}
+{"@timestamp":"2022-08-02T18:43:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:44:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:44:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=11.8Mi, Sys=19.7Mi, NumGC=16","level":"stat"}
+{"@timestamp":"2022-08-02T18:44:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:45:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:45:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=11.9Mi, Sys=19.7Mi, NumGC=17","level":"stat"}
+{"@timestamp":"2022-08-02T18:45:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:46:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:46:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.1Mi, Sys=19.7Mi, NumGC=17","level":"stat"}
+{"@timestamp":"2022-08-02T18:46:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:47:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:47:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=12.2Mi, Sys=19.7Mi, NumGC=18","level":"stat"}
+{"@timestamp":"2022-08-02T18:47:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:48:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:48:57.687+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=12.3Mi, Sys=19.7Mi, NumGC=18","level":"stat"}
+{"@timestamp":"2022-08-02T18:48:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:49:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:49:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=12.5Mi, Sys=19.7Mi, NumGC=19","level":"stat"}
+{"@timestamp":"2022-08-02T18:49:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:50:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:50:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=12.6Mi, Sys=19.7Mi, NumGC=19","level":"stat"}
+{"@timestamp":"2022-08-02T18:50:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:51:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:51:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=12.7Mi, Sys=19.7Mi, NumGC=20","level":"stat"}
+{"@timestamp":"2022-08-02T18:51:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:52:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:52:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=12.8Mi, Sys=19.7Mi, NumGC=20","level":"stat"}
+{"@timestamp":"2022-08-02T18:52:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:53:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:53:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=12.9Mi, Sys=19.7Mi, NumGC=21","level":"stat"}
+{"@timestamp":"2022-08-02T18:53:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:54:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:54:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=13.1Mi, Sys=19.7Mi, NumGC=21","level":"stat"}
+{"@timestamp":"2022-08-02T18:54:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:55:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:55:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=13.2Mi, Sys=19.7Mi, NumGC=22","level":"stat"}
+{"@timestamp":"2022-08-02T18:55:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:56:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:56:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=13.4Mi, Sys=19.7Mi, NumGC=22","level":"stat"}
+{"@timestamp":"2022-08-02T18:56:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:57:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:57:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=13.5Mi, Sys=19.7Mi, NumGC=23","level":"stat"}
+{"@timestamp":"2022-08-02T18:57:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:58:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:58:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=13.6Mi, Sys=19.7Mi, NumGC=23","level":"stat"}
+{"@timestamp":"2022-08-02T18:58:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T18:59:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T18:59:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=13.7Mi, Sys=19.7Mi, NumGC=24","level":"stat"}
+{"@timestamp":"2022-08-02T18:59:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:00:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:00:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=13.8Mi, Sys=19.7Mi, NumGC=24","level":"stat"}
+{"@timestamp":"2022-08-02T19:00:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:01:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:01:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=14.0Mi, Sys=19.7Mi, NumGC=25","level":"stat"}
+{"@timestamp":"2022-08-02T19:01:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:02:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:02:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=14.1Mi, Sys=19.7Mi, NumGC=25","level":"stat"}
+{"@timestamp":"2022-08-02T19:02:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:03:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:03:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=14.2Mi, Sys=19.7Mi, NumGC=26","level":"stat"}
+{"@timestamp":"2022-08-02T19:03:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:04:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:04:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.4Mi, Sys=19.7Mi, NumGC=26","level":"stat"}
+{"@timestamp":"2022-08-02T19:04:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:05:40.385+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:05:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=14.5Mi, Sys=19.7Mi, NumGC=27","level":"stat"}
+{"@timestamp":"2022-08-02T19:05:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:06:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:06:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.7Mi, Sys=19.7Mi, NumGC=27","level":"stat"}
+{"@timestamp":"2022-08-02T19:06:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:07:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:07:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=14.8Mi, Sys=19.7Mi, NumGC=28","level":"stat"}
+{"@timestamp":"2022-08-02T19:07:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:08:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:08:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=14.8Mi, Sys=19.7Mi, NumGC=28","level":"stat"}
+{"@timestamp":"2022-08-02T19:08:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:09:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:09:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=15.0Mi, Sys=19.7Mi, NumGC=29","level":"stat"}
+{"@timestamp":"2022-08-02T19:09:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:10:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:10:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=15.1Mi, Sys=19.7Mi, NumGC=29","level":"stat"}
+{"@timestamp":"2022-08-02T19:10:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:11:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:11:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=15.3Mi, Sys=19.7Mi, NumGC=30","level":"stat"}
+{"@timestamp":"2022-08-02T19:11:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:12:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:12:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=15.4Mi, Sys=19.7Mi, NumGC=30","level":"stat"}
+{"@timestamp":"2022-08-02T19:12:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:13:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:13:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=15.5Mi, Sys=19.7Mi, NumGC=31","level":"stat"}
+{"@timestamp":"2022-08-02T19:13:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:14:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:14:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=15.7Mi, Sys=19.7Mi, NumGC=31","level":"stat"}
+{"@timestamp":"2022-08-02T19:14:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:15:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:15:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=15.7Mi, Sys=19.7Mi, NumGC=32","level":"stat"}
+{"@timestamp":"2022-08-02T19:15:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:16:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:16:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=15.9Mi, Sys=19.7Mi, NumGC=32","level":"stat"}
+{"@timestamp":"2022-08-02T19:16:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:17:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:17:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=16.0Mi, Sys=19.7Mi, NumGC=33","level":"stat"}
+{"@timestamp":"2022-08-02T19:17:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:18:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:18:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=16.1Mi, Sys=19.7Mi, NumGC=33","level":"stat"}
+{"@timestamp":"2022-08-02T19:18:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:19:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:19:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=16.3Mi, Sys=19.9Mi, NumGC=34","level":"stat"}
+{"@timestamp":"2022-08-02T19:19:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:20:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:20:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=16.4Mi, Sys=19.9Mi, NumGC=34","level":"stat"}
+{"@timestamp":"2022-08-02T19:20:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:21:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:21:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=16.6Mi, Sys=19.9Mi, NumGC=35","level":"stat"}
+{"@timestamp":"2022-08-02T19:21:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:22:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:22:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=16.7Mi, Sys=19.9Mi, NumGC=35","level":"stat"}
+{"@timestamp":"2022-08-02T19:22:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:23:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:23:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=16.8Mi, Sys=19.9Mi, NumGC=36","level":"stat"}
+{"@timestamp":"2022-08-02T19:23:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:24:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:24:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=16.9Mi, Sys=19.9Mi, NumGC=36","level":"stat"}
+{"@timestamp":"2022-08-02T19:24:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:25:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:25:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=17.0Mi, Sys=19.9Mi, NumGC=37","level":"stat"}
+{"@timestamp":"2022-08-02T19:25:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:26:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:26:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=17.2Mi, Sys=19.9Mi, NumGC=37","level":"stat"}
+{"@timestamp":"2022-08-02T19:26:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:27:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:27:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=17.3Mi, Sys=19.9Mi, NumGC=38","level":"stat"}
+{"@timestamp":"2022-08-02T19:27:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:28:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:28:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=17.4Mi, Sys=19.9Mi, NumGC=38","level":"stat"}
+{"@timestamp":"2022-08-02T19:28:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:29:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:29:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=17.8Mi, Sys=19.9Mi, NumGC=39","level":"stat"}
+{"@timestamp":"2022-08-02T19:29:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:30:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:30:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=18.0Mi, Sys=20.2Mi, NumGC=39","level":"stat"}
+{"@timestamp":"2022-08-02T19:30:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:31:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:31:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=18.2Mi, Sys=20.2Mi, NumGC=40","level":"stat"}
+{"@timestamp":"2022-08-02T19:31:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:32:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:32:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=18.3Mi, Sys=20.2Mi, NumGC=40","level":"stat"}
+{"@timestamp":"2022-08-02T19:32:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:33:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:33:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=18.4Mi, Sys=20.2Mi, NumGC=41","level":"stat"}
+{"@timestamp":"2022-08-02T19:33:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:34:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:34:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=18.6Mi, Sys=20.2Mi, NumGC=41","level":"stat"}
+{"@timestamp":"2022-08-02T19:34:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:35:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:35:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=18.7Mi, Sys=20.2Mi, NumGC=42","level":"stat"}
+{"@timestamp":"2022-08-02T19:35:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:36:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:36:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=18.8Mi, Sys=20.2Mi, NumGC=42","level":"stat"}
+{"@timestamp":"2022-08-02T19:36:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:37:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:37:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=18.9Mi, Sys=20.2Mi, NumGC=43","level":"stat"}
+{"@timestamp":"2022-08-02T19:37:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:38:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:38:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=19.0Mi, Sys=20.2Mi, NumGC=43","level":"stat"}
+{"@timestamp":"2022-08-02T19:38:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T19:39:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T19:39:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.5Mi, TotalAlloc=19.2Mi, Sys=20.2Mi, NumGC=44","level":"stat"}
+{"@timestamp":"2022-08-02T19:39:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T22:40:24.510+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-02T22:40:24.510+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-02T22:40:24.505+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.6Mi, TotalAlloc=19.2Mi, Sys=20.2Mi, NumGC=44","level":"stat"}

+ 2175 - 0
rpc/logs/stat.log-2022-08-03

@@ -0,0 +1,2175 @@
+{"@timestamp":"2022-08-03T08:39:24.530+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T08:39:25.370+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=19.5Mi, Sys=20.4Mi, NumGC=45","level":"stat"}
+{"@timestamp":"2022-08-03T08:39:25.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:39:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:39:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=19.8Mi, Sys=20.4Mi, NumGC=46","level":"stat"}
+{"@timestamp":"2022-08-03T08:39:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T08:40:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:40:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=19.9Mi, Sys=20.4Mi, NumGC=46","level":"stat"}
+{"@timestamp":"2022-08-03T08:40:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T08:41:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:41:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=20.2Mi, Sys=20.4Mi, NumGC=47","level":"stat"}
+{"@timestamp":"2022-08-03T08:41:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T08:42:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:42:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=20.6Mi, Sys=20.4Mi, NumGC=47","level":"stat"}
+{"@timestamp":"2022-08-03T08:42:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T08:43:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:43:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=20.7Mi, Sys=20.4Mi, NumGC=48","level":"stat"}
+{"@timestamp":"2022-08-03T08:43:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T08:44:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:44:57.687+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=20.8Mi, Sys=20.4Mi, NumGC=48","level":"stat"}
+{"@timestamp":"2022-08-03T08:44:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T08:45:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:45:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=20.9Mi, Sys=20.4Mi, NumGC=49","level":"stat"}
+{"@timestamp":"2022-08-03T08:45:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T08:46:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:46:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=21.0Mi, Sys=20.4Mi, NumGC=49","level":"stat"}
+{"@timestamp":"2022-08-03T08:46:57.710+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T08:47:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:47:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=21.2Mi, Sys=20.4Mi, NumGC=50","level":"stat"}
+{"@timestamp":"2022-08-03T08:47:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T08:48:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:48:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=21.3Mi, Sys=20.4Mi, NumGC=50","level":"stat"}
+{"@timestamp":"2022-08-03T08:48:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T08:49:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:49:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=21.5Mi, Sys=20.4Mi, NumGC=51","level":"stat"}
+{"@timestamp":"2022-08-03T08:49:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T08:50:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:50:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=21.6Mi, Sys=20.4Mi, NumGC=51","level":"stat"}
+{"@timestamp":"2022-08-03T08:50:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T08:51:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:51:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=21.7Mi, Sys=20.4Mi, NumGC=52","level":"stat"}
+{"@timestamp":"2022-08-03T08:51:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T08:52:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:52:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=21.9Mi, Sys=20.4Mi, NumGC=52","level":"stat"}
+{"@timestamp":"2022-08-03T08:52:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T08:53:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:53:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=22.0Mi, Sys=20.4Mi, NumGC=53","level":"stat"}
+{"@timestamp":"2022-08-03T08:53:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T08:54:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:54:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=22.1Mi, Sys=20.4Mi, NumGC=53","level":"stat"}
+{"@timestamp":"2022-08-03T08:54:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T08:55:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:55:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=22.2Mi, Sys=20.4Mi, NumGC=54","level":"stat"}
+{"@timestamp":"2022-08-03T08:55:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T08:56:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:56:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=22.3Mi, Sys=20.4Mi, NumGC=54","level":"stat"}
+{"@timestamp":"2022-08-03T08:56:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T08:57:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:57:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=22.5Mi, Sys=20.4Mi, NumGC=55","level":"stat"}
+{"@timestamp":"2022-08-03T08:57:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T08:58:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:58:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=22.6Mi, Sys=20.4Mi, NumGC=55","level":"stat"}
+{"@timestamp":"2022-08-03T08:58:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T08:59:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T08:59:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=22.8Mi, Sys=20.4Mi, NumGC=56","level":"stat"}
+{"@timestamp":"2022-08-03T08:59:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:00:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:00:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=22.9Mi, Sys=20.4Mi, NumGC=56","level":"stat"}
+{"@timestamp":"2022-08-03T09:00:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:01:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:01:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=23.0Mi, Sys=20.4Mi, NumGC=57","level":"stat"}
+{"@timestamp":"2022-08-03T09:01:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:02:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:02:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=23.2Mi, Sys=20.4Mi, NumGC=57","level":"stat"}
+{"@timestamp":"2022-08-03T09:02:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:03:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:03:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=23.2Mi, Sys=20.4Mi, NumGC=58","level":"stat"}
+{"@timestamp":"2022-08-03T09:03:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:04:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:04:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=23.4Mi, Sys=20.4Mi, NumGC=58","level":"stat"}
+{"@timestamp":"2022-08-03T09:04:57.694+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:05:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:05:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=23.5Mi, Sys=20.4Mi, NumGC=59","level":"stat"}
+{"@timestamp":"2022-08-03T09:05:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:06:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:06:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=23.8Mi, Sys=20.4Mi, NumGC=59","level":"stat"}
+{"@timestamp":"2022-08-03T09:06:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:07:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:07:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=23.8Mi, Sys=20.4Mi, NumGC=60","level":"stat"}
+{"@timestamp":"2022-08-03T09:07:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:08:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:08:57.696+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=23.9Mi, Sys=20.4Mi, NumGC=60","level":"stat"}
+{"@timestamp":"2022-08-03T09:08:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:09:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:09:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=24.1Mi, Sys=20.4Mi, NumGC=61","level":"stat"}
+{"@timestamp":"2022-08-03T09:09:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:10:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:10:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=24.2Mi, Sys=20.4Mi, NumGC=61","level":"stat"}
+{"@timestamp":"2022-08-03T09:10:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:11:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:11:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=24.4Mi, Sys=20.4Mi, NumGC=62","level":"stat"}
+{"@timestamp":"2022-08-03T09:11:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:12:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:12:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=24.5Mi, Sys=20.4Mi, NumGC=62","level":"stat"}
+{"@timestamp":"2022-08-03T09:12:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:13:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:13:57.687+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=24.6Mi, Sys=20.4Mi, NumGC=63","level":"stat"}
+{"@timestamp":"2022-08-03T09:13:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:14:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:14:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=24.8Mi, Sys=20.4Mi, NumGC=63","level":"stat"}
+{"@timestamp":"2022-08-03T09:14:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:15:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:15:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=24.8Mi, Sys=20.4Mi, NumGC=64","level":"stat"}
+{"@timestamp":"2022-08-03T09:15:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:16:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:16:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=25.0Mi, Sys=20.4Mi, NumGC=64","level":"stat"}
+{"@timestamp":"2022-08-03T09:16:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:17:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:17:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=25.1Mi, Sys=20.4Mi, NumGC=65","level":"stat"}
+{"@timestamp":"2022-08-03T09:17:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:18:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:18:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=25.2Mi, Sys=20.4Mi, NumGC=65","level":"stat"}
+{"@timestamp":"2022-08-03T09:18:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:19:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:19:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=25.4Mi, Sys=20.4Mi, NumGC=66","level":"stat"}
+{"@timestamp":"2022-08-03T09:19:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:20:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:20:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=25.5Mi, Sys=20.4Mi, NumGC=66","level":"stat"}
+{"@timestamp":"2022-08-03T09:20:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:21:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:21:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=25.7Mi, Sys=20.4Mi, NumGC=67","level":"stat"}
+{"@timestamp":"2022-08-03T09:21:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:22:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:22:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=25.8Mi, Sys=20.4Mi, NumGC=67","level":"stat"}
+{"@timestamp":"2022-08-03T09:22:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:23:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:23:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=25.8Mi, Sys=20.4Mi, NumGC=68","level":"stat"}
+{"@timestamp":"2022-08-03T09:23:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:24:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:24:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=26.0Mi, Sys=20.4Mi, NumGC=68","level":"stat"}
+{"@timestamp":"2022-08-03T09:24:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:25:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:25:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=26.1Mi, Sys=20.4Mi, NumGC=69","level":"stat"}
+{"@timestamp":"2022-08-03T09:25:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:26:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:26:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=26.3Mi, Sys=20.4Mi, NumGC=69","level":"stat"}
+{"@timestamp":"2022-08-03T09:26:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:27:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:27:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=26.4Mi, Sys=20.4Mi, NumGC=70","level":"stat"}
+{"@timestamp":"2022-08-03T09:27:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:28:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:28:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=26.5Mi, Sys=20.4Mi, NumGC=70","level":"stat"}
+{"@timestamp":"2022-08-03T09:28:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:29:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:29:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=26.7Mi, Sys=20.4Mi, NumGC=71","level":"stat"}
+{"@timestamp":"2022-08-03T09:29:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:30:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:30:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=26.7Mi, Sys=20.4Mi, NumGC=71","level":"stat"}
+{"@timestamp":"2022-08-03T09:30:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:31:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:31:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=26.9Mi, Sys=20.4Mi, NumGC=72","level":"stat"}
+{"@timestamp":"2022-08-03T09:31:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:32:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:32:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=27.0Mi, Sys=20.4Mi, NumGC=72","level":"stat"}
+{"@timestamp":"2022-08-03T09:32:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:33:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:33:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=27.1Mi, Sys=20.4Mi, NumGC=73","level":"stat"}
+{"@timestamp":"2022-08-03T09:33:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:34:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:34:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=27.3Mi, Sys=20.4Mi, NumGC=73","level":"stat"}
+{"@timestamp":"2022-08-03T09:34:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:35:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:35:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=27.4Mi, Sys=20.4Mi, NumGC=74","level":"stat"}
+{"@timestamp":"2022-08-03T09:35:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:36:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:36:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=27.6Mi, Sys=20.4Mi, NumGC=74","level":"stat"}
+{"@timestamp":"2022-08-03T09:36:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:37:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:37:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=27.7Mi, Sys=20.4Mi, NumGC=75","level":"stat"}
+{"@timestamp":"2022-08-03T09:37:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:38:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:38:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=27.7Mi, Sys=20.4Mi, NumGC=75","level":"stat"}
+{"@timestamp":"2022-08-03T09:38:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:39:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:39:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=27.9Mi, Sys=20.4Mi, NumGC=76","level":"stat"}
+{"@timestamp":"2022-08-03T09:39:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:40:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:40:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=28.0Mi, Sys=20.4Mi, NumGC=76","level":"stat"}
+{"@timestamp":"2022-08-03T09:40:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:41:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:41:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=28.2Mi, Sys=20.4Mi, NumGC=77","level":"stat"}
+{"@timestamp":"2022-08-03T09:41:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:42:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:42:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=28.3Mi, Sys=20.4Mi, NumGC=77","level":"stat"}
+{"@timestamp":"2022-08-03T09:42:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:43:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:43:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=28.4Mi, Sys=20.4Mi, NumGC=78","level":"stat"}
+{"@timestamp":"2022-08-03T09:43:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:44:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:44:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=28.6Mi, Sys=20.4Mi, NumGC=78","level":"stat"}
+{"@timestamp":"2022-08-03T09:44:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:45:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:45:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=28.6Mi, Sys=20.4Mi, NumGC=79","level":"stat"}
+{"@timestamp":"2022-08-03T09:45:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:46:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:46:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=28.8Mi, Sys=20.4Mi, NumGC=79","level":"stat"}
+{"@timestamp":"2022-08-03T09:46:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:47:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:47:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=28.9Mi, Sys=20.4Mi, NumGC=80","level":"stat"}
+{"@timestamp":"2022-08-03T09:47:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:48:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:48:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=29.0Mi, Sys=20.4Mi, NumGC=80","level":"stat"}
+{"@timestamp":"2022-08-03T09:48:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:49:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:49:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=29.2Mi, Sys=20.4Mi, NumGC=81","level":"stat"}
+{"@timestamp":"2022-08-03T09:49:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:50:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:50:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=29.3Mi, Sys=20.4Mi, NumGC=81","level":"stat"}
+{"@timestamp":"2022-08-03T09:50:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:51:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:51:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=29.5Mi, Sys=20.4Mi, NumGC=82","level":"stat"}
+{"@timestamp":"2022-08-03T09:51:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:52:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:52:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=29.6Mi, Sys=20.4Mi, NumGC=82","level":"stat"}
+{"@timestamp":"2022-08-03T09:52:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:53:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:53:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=29.7Mi, Sys=20.4Mi, NumGC=83","level":"stat"}
+{"@timestamp":"2022-08-03T09:53:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:54:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:54:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=29.8Mi, Sys=20.4Mi, NumGC=83","level":"stat"}
+{"@timestamp":"2022-08-03T09:54:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:55:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:55:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=29.9Mi, Sys=20.4Mi, NumGC=84","level":"stat"}
+{"@timestamp":"2022-08-03T09:55:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:56:40.385+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:56:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=30.1Mi, Sys=20.4Mi, NumGC=84","level":"stat"}
+{"@timestamp":"2022-08-03T09:56:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:57:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:57:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=30.2Mi, Sys=20.4Mi, NumGC=85","level":"stat"}
+{"@timestamp":"2022-08-03T09:57:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:58:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:58:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=30.3Mi, Sys=20.4Mi, NumGC=85","level":"stat"}
+{"@timestamp":"2022-08-03T09:58:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T09:59:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T09:59:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=30.5Mi, Sys=20.4Mi, NumGC=86","level":"stat"}
+{"@timestamp":"2022-08-03T09:59:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:00:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:00:57.687+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=30.6Mi, Sys=20.4Mi, NumGC=86","level":"stat"}
+{"@timestamp":"2022-08-03T10:00:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:01:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:01:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=30.8Mi, Sys=20.4Mi, NumGC=87","level":"stat"}
+{"@timestamp":"2022-08-03T10:01:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:02:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:02:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=30.8Mi, Sys=20.4Mi, NumGC=87","level":"stat"}
+{"@timestamp":"2022-08-03T10:02:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:03:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:03:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=30.9Mi, Sys=20.4Mi, NumGC=88","level":"stat"}
+{"@timestamp":"2022-08-03T10:03:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:04:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:04:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=31.1Mi, Sys=20.4Mi, NumGC=88","level":"stat"}
+{"@timestamp":"2022-08-03T10:04:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:05:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:05:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=31.2Mi, Sys=20.4Mi, NumGC=89","level":"stat"}
+{"@timestamp":"2022-08-03T10:05:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:06:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:06:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=31.4Mi, Sys=20.4Mi, NumGC=89","level":"stat"}
+{"@timestamp":"2022-08-03T10:06:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:07:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:07:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=31.5Mi, Sys=20.4Mi, NumGC=90","level":"stat"}
+{"@timestamp":"2022-08-03T10:07:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:08:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:08:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=31.6Mi, Sys=20.4Mi, NumGC=90","level":"stat"}
+{"@timestamp":"2022-08-03T10:08:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:09:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:09:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=31.7Mi, Sys=20.4Mi, NumGC=91","level":"stat"}
+{"@timestamp":"2022-08-03T10:09:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:10:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:10:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=31.8Mi, Sys=20.4Mi, NumGC=91","level":"stat"}
+{"@timestamp":"2022-08-03T10:10:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:11:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:11:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=32.0Mi, Sys=20.4Mi, NumGC=92","level":"stat"}
+{"@timestamp":"2022-08-03T10:11:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:12:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:12:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=32.1Mi, Sys=20.4Mi, NumGC=92","level":"stat"}
+{"@timestamp":"2022-08-03T10:12:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:13:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:13:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=32.2Mi, Sys=20.4Mi, NumGC=93","level":"stat"}
+{"@timestamp":"2022-08-03T10:13:57.694+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:14:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:14:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=32.4Mi, Sys=20.4Mi, NumGC=93","level":"stat"}
+{"@timestamp":"2022-08-03T10:14:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:15:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:15:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=32.5Mi, Sys=20.4Mi, NumGC=94","level":"stat"}
+{"@timestamp":"2022-08-03T10:15:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:16:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:16:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=32.6Mi, Sys=20.4Mi, NumGC=94","level":"stat"}
+{"@timestamp":"2022-08-03T10:16:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:17:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:17:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=32.7Mi, Sys=20.4Mi, NumGC=95","level":"stat"}
+{"@timestamp":"2022-08-03T10:17:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:18:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:18:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=32.8Mi, Sys=20.4Mi, NumGC=95","level":"stat"}
+{"@timestamp":"2022-08-03T10:18:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:19:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:19:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=33.0Mi, Sys=20.4Mi, NumGC=96","level":"stat"}
+{"@timestamp":"2022-08-03T10:19:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:20:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:20:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=33.1Mi, Sys=20.4Mi, NumGC=96","level":"stat"}
+{"@timestamp":"2022-08-03T10:20:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:21:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:21:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=33.3Mi, Sys=20.4Mi, NumGC=97","level":"stat"}
+{"@timestamp":"2022-08-03T10:21:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:22:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:22:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=33.4Mi, Sys=20.4Mi, NumGC=97","level":"stat"}
+{"@timestamp":"2022-08-03T10:22:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:23:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:23:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=33.5Mi, Sys=20.4Mi, NumGC=98","level":"stat"}
+{"@timestamp":"2022-08-03T10:23:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:24:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:24:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=33.6Mi, Sys=20.4Mi, NumGC=98","level":"stat"}
+{"@timestamp":"2022-08-03T10:24:57.694+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:25:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:25:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=33.7Mi, Sys=20.4Mi, NumGC=99","level":"stat"}
+{"@timestamp":"2022-08-03T10:25:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:26:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:26:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=33.9Mi, Sys=20.4Mi, NumGC=99","level":"stat"}
+{"@timestamp":"2022-08-03T10:26:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:27:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:27:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=34.0Mi, Sys=20.4Mi, NumGC=100","level":"stat"}
+{"@timestamp":"2022-08-03T10:27:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:28:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:28:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=34.1Mi, Sys=20.4Mi, NumGC=100","level":"stat"}
+{"@timestamp":"2022-08-03T10:28:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:29:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:29:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=34.3Mi, Sys=20.4Mi, NumGC=101","level":"stat"}
+{"@timestamp":"2022-08-03T10:29:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:30:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:30:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=34.4Mi, Sys=20.4Mi, NumGC=101","level":"stat"}
+{"@timestamp":"2022-08-03T10:30:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:31:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:31:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=34.6Mi, Sys=20.4Mi, NumGC=102","level":"stat"}
+{"@timestamp":"2022-08-03T10:31:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:32:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:32:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=34.6Mi, Sys=20.4Mi, NumGC=102","level":"stat"}
+{"@timestamp":"2022-08-03T10:32:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:33:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:33:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=34.7Mi, Sys=20.4Mi, NumGC=103","level":"stat"}
+{"@timestamp":"2022-08-03T10:33:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:34:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:34:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=34.9Mi, Sys=20.4Mi, NumGC=103","level":"stat"}
+{"@timestamp":"2022-08-03T10:34:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:35:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:35:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=35.0Mi, Sys=20.4Mi, NumGC=104","level":"stat"}
+{"@timestamp":"2022-08-03T10:35:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:36:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:36:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=35.2Mi, Sys=20.4Mi, NumGC=104","level":"stat"}
+{"@timestamp":"2022-08-03T10:36:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:37:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:37:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=35.3Mi, Sys=20.4Mi, NumGC=105","level":"stat"}
+{"@timestamp":"2022-08-03T10:37:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:38:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:38:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=35.4Mi, Sys=20.4Mi, NumGC=105","level":"stat"}
+{"@timestamp":"2022-08-03T10:38:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:39:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:39:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=35.5Mi, Sys=20.4Mi, NumGC=106","level":"stat"}
+{"@timestamp":"2022-08-03T10:39:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:40:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:40:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=35.6Mi, Sys=20.4Mi, NumGC=106","level":"stat"}
+{"@timestamp":"2022-08-03T10:40:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:41:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:41:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=35.8Mi, Sys=20.4Mi, NumGC=107","level":"stat"}
+{"@timestamp":"2022-08-03T10:41:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:42:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:42:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=35.9Mi, Sys=20.4Mi, NumGC=107","level":"stat"}
+{"@timestamp":"2022-08-03T10:42:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:43:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:43:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=36.0Mi, Sys=20.4Mi, NumGC=108","level":"stat"}
+{"@timestamp":"2022-08-03T10:43:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:44:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:44:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=36.2Mi, Sys=20.4Mi, NumGC=108","level":"stat"}
+{"@timestamp":"2022-08-03T10:44:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:45:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:45:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=36.3Mi, Sys=20.4Mi, NumGC=109","level":"stat"}
+{"@timestamp":"2022-08-03T10:45:57.694+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:46:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:46:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=36.5Mi, Sys=20.4Mi, NumGC=109","level":"stat"}
+{"@timestamp":"2022-08-03T10:46:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:47:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:47:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=36.6Mi, Sys=20.4Mi, NumGC=110","level":"stat"}
+{"@timestamp":"2022-08-03T10:47:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:48:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:48:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=36.6Mi, Sys=20.4Mi, NumGC=110","level":"stat"}
+{"@timestamp":"2022-08-03T10:48:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:49:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:49:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=36.8Mi, Sys=20.4Mi, NumGC=111","level":"stat"}
+{"@timestamp":"2022-08-03T10:49:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:50:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:50:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=36.9Mi, Sys=20.4Mi, NumGC=111","level":"stat"}
+{"@timestamp":"2022-08-03T10:50:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:51:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:51:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=37.1Mi, Sys=20.4Mi, NumGC=112","level":"stat"}
+{"@timestamp":"2022-08-03T10:51:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:52:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:52:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=37.2Mi, Sys=20.4Mi, NumGC=112","level":"stat"}
+{"@timestamp":"2022-08-03T10:52:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:53:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:53:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=37.3Mi, Sys=20.4Mi, NumGC=113","level":"stat"}
+{"@timestamp":"2022-08-03T10:53:57.710+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:54:40.385+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:54:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=37.4Mi, Sys=20.4Mi, NumGC=113","level":"stat"}
+{"@timestamp":"2022-08-03T10:54:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:55:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:55:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=37.5Mi, Sys=20.4Mi, NumGC=114","level":"stat"}
+{"@timestamp":"2022-08-03T10:55:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:56:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:56:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=37.7Mi, Sys=20.4Mi, NumGC=114","level":"stat"}
+{"@timestamp":"2022-08-03T10:56:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:57:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:57:57.687+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=37.8Mi, Sys=20.4Mi, NumGC=115","level":"stat"}
+{"@timestamp":"2022-08-03T10:57:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:58:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:58:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=37.9Mi, Sys=20.4Mi, NumGC=115","level":"stat"}
+{"@timestamp":"2022-08-03T10:58:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T10:59:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T10:59:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=38.1Mi, Sys=20.4Mi, NumGC=116","level":"stat"}
+{"@timestamp":"2022-08-03T10:59:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:00:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:00:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=38.2Mi, Sys=20.4Mi, NumGC=116","level":"stat"}
+{"@timestamp":"2022-08-03T11:00:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:01:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:01:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=38.4Mi, Sys=20.4Mi, NumGC=117","level":"stat"}
+{"@timestamp":"2022-08-03T11:01:57.694+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:02:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:02:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=38.4Mi, Sys=20.4Mi, NumGC=117","level":"stat"}
+{"@timestamp":"2022-08-03T11:02:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:03:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:03:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=38.5Mi, Sys=20.4Mi, NumGC=118","level":"stat"}
+{"@timestamp":"2022-08-03T11:03:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:04:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:04:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=38.7Mi, Sys=20.4Mi, NumGC=118","level":"stat"}
+{"@timestamp":"2022-08-03T11:04:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:05:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:05:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=38.8Mi, Sys=20.4Mi, NumGC=119","level":"stat"}
+{"@timestamp":"2022-08-03T11:05:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:06:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:06:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=39.0Mi, Sys=20.4Mi, NumGC=119","level":"stat"}
+{"@timestamp":"2022-08-03T11:06:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:07:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:07:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=39.1Mi, Sys=20.4Mi, NumGC=120","level":"stat"}
+{"@timestamp":"2022-08-03T11:07:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:08:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:08:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=39.2Mi, Sys=20.4Mi, NumGC=120","level":"stat"}
+{"@timestamp":"2022-08-03T11:08:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:09:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:09:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=39.4Mi, Sys=20.4Mi, NumGC=121","level":"stat"}
+{"@timestamp":"2022-08-03T11:09:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:10:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:10:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=39.4Mi, Sys=20.4Mi, NumGC=121","level":"stat"}
+{"@timestamp":"2022-08-03T11:10:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:11:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:11:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=39.6Mi, Sys=20.4Mi, NumGC=122","level":"stat"}
+{"@timestamp":"2022-08-03T11:11:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:12:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:12:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=39.7Mi, Sys=20.4Mi, NumGC=122","level":"stat"}
+{"@timestamp":"2022-08-03T11:12:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:13:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:13:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=39.8Mi, Sys=20.4Mi, NumGC=123","level":"stat"}
+{"@timestamp":"2022-08-03T11:13:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:14:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:14:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=40.0Mi, Sys=20.4Mi, NumGC=123","level":"stat"}
+{"@timestamp":"2022-08-03T11:14:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:15:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:15:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=40.1Mi, Sys=20.4Mi, NumGC=124","level":"stat"}
+{"@timestamp":"2022-08-03T11:15:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:16:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:16:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=40.3Mi, Sys=20.4Mi, NumGC=124","level":"stat"}
+{"@timestamp":"2022-08-03T11:16:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:17:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:17:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=40.4Mi, Sys=20.4Mi, NumGC=125","level":"stat"}
+{"@timestamp":"2022-08-03T11:17:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:18:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:18:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=40.4Mi, Sys=20.4Mi, NumGC=125","level":"stat"}
+{"@timestamp":"2022-08-03T11:18:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:19:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:19:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=40.6Mi, Sys=20.4Mi, NumGC=126","level":"stat"}
+{"@timestamp":"2022-08-03T11:19:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:20:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:20:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=40.7Mi, Sys=20.4Mi, NumGC=126","level":"stat"}
+{"@timestamp":"2022-08-03T11:20:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:21:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:21:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=40.9Mi, Sys=20.4Mi, NumGC=127","level":"stat"}
+{"@timestamp":"2022-08-03T11:21:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:22:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:22:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=41.0Mi, Sys=20.4Mi, NumGC=127","level":"stat"}
+{"@timestamp":"2022-08-03T11:22:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:23:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:23:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=41.1Mi, Sys=20.4Mi, NumGC=128","level":"stat"}
+{"@timestamp":"2022-08-03T11:23:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:24:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:24:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=41.3Mi, Sys=20.4Mi, NumGC=128","level":"stat"}
+{"@timestamp":"2022-08-03T11:24:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:25:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:25:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=41.3Mi, Sys=20.4Mi, NumGC=129","level":"stat"}
+{"@timestamp":"2022-08-03T11:25:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:26:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:26:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=41.5Mi, Sys=20.4Mi, NumGC=129","level":"stat"}
+{"@timestamp":"2022-08-03T11:26:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:27:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:27:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=41.6Mi, Sys=20.4Mi, NumGC=130","level":"stat"}
+{"@timestamp":"2022-08-03T11:27:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:28:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:28:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=41.7Mi, Sys=20.4Mi, NumGC=130","level":"stat"}
+{"@timestamp":"2022-08-03T11:28:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:29:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:29:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=41.9Mi, Sys=20.4Mi, NumGC=131","level":"stat"}
+{"@timestamp":"2022-08-03T11:29:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:30:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:30:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=42.0Mi, Sys=20.4Mi, NumGC=131","level":"stat"}
+{"@timestamp":"2022-08-03T11:30:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:31:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:31:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=42.2Mi, Sys=20.4Mi, NumGC=132","level":"stat"}
+{"@timestamp":"2022-08-03T11:31:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:32:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:32:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=42.3Mi, Sys=20.4Mi, NumGC=132","level":"stat"}
+{"@timestamp":"2022-08-03T11:32:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:33:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:33:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=42.4Mi, Sys=20.4Mi, NumGC=133","level":"stat"}
+{"@timestamp":"2022-08-03T11:33:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:34:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:34:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=42.5Mi, Sys=20.4Mi, NumGC=133","level":"stat"}
+{"@timestamp":"2022-08-03T11:34:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:35:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:35:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=42.6Mi, Sys=20.4Mi, NumGC=134","level":"stat"}
+{"@timestamp":"2022-08-03T11:35:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:36:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:36:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=42.8Mi, Sys=20.4Mi, NumGC=134","level":"stat"}
+{"@timestamp":"2022-08-03T11:36:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:37:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:37:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=42.9Mi, Sys=20.4Mi, NumGC=135","level":"stat"}
+{"@timestamp":"2022-08-03T11:37:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:38:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:38:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=43.0Mi, Sys=20.4Mi, NumGC=135","level":"stat"}
+{"@timestamp":"2022-08-03T11:38:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:39:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:39:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=43.2Mi, Sys=20.4Mi, NumGC=136","level":"stat"}
+{"@timestamp":"2022-08-03T11:39:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:40:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:40:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=43.3Mi, Sys=20.4Mi, NumGC=136","level":"stat"}
+{"@timestamp":"2022-08-03T11:40:57.694+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:41:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:41:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=43.5Mi, Sys=20.4Mi, NumGC=137","level":"stat"}
+{"@timestamp":"2022-08-03T11:41:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:42:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:42:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=43.5Mi, Sys=20.4Mi, NumGC=137","level":"stat"}
+{"@timestamp":"2022-08-03T11:42:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:43:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:43:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=43.6Mi, Sys=20.4Mi, NumGC=138","level":"stat"}
+{"@timestamp":"2022-08-03T11:43:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:44:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:44:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=43.8Mi, Sys=20.4Mi, NumGC=138","level":"stat"}
+{"@timestamp":"2022-08-03T11:44:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:45:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:45:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=43.9Mi, Sys=20.4Mi, NumGC=139","level":"stat"}
+{"@timestamp":"2022-08-03T11:45:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:46:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:46:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=44.1Mi, Sys=20.4Mi, NumGC=139","level":"stat"}
+{"@timestamp":"2022-08-03T11:46:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:47:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:47:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=44.2Mi, Sys=20.4Mi, NumGC=140","level":"stat"}
+{"@timestamp":"2022-08-03T11:47:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:48:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:48:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=44.3Mi, Sys=20.4Mi, NumGC=140","level":"stat"}
+{"@timestamp":"2022-08-03T11:48:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:49:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:49:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=44.5Mi, Sys=20.4Mi, NumGC=141","level":"stat"}
+{"@timestamp":"2022-08-03T11:49:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:50:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:50:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=44.5Mi, Sys=20.4Mi, NumGC=141","level":"stat"}
+{"@timestamp":"2022-08-03T11:50:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:51:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:51:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=44.7Mi, Sys=20.4Mi, NumGC=142","level":"stat"}
+{"@timestamp":"2022-08-03T11:51:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:52:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:52:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=44.8Mi, Sys=20.4Mi, NumGC=142","level":"stat"}
+{"@timestamp":"2022-08-03T11:52:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:53:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:53:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=44.9Mi, Sys=20.4Mi, NumGC=143","level":"stat"}
+{"@timestamp":"2022-08-03T11:53:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:54:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:54:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=45.1Mi, Sys=20.4Mi, NumGC=143","level":"stat"}
+{"@timestamp":"2022-08-03T11:54:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:55:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:55:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=45.2Mi, Sys=20.4Mi, NumGC=144","level":"stat"}
+{"@timestamp":"2022-08-03T11:55:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:56:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:56:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=45.4Mi, Sys=20.4Mi, NumGC=144","level":"stat"}
+{"@timestamp":"2022-08-03T11:56:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:57:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:57:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=45.5Mi, Sys=20.4Mi, NumGC=145","level":"stat"}
+{"@timestamp":"2022-08-03T11:57:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:58:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:58:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=45.5Mi, Sys=20.4Mi, NumGC=145","level":"stat"}
+{"@timestamp":"2022-08-03T11:58:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T11:59:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T11:59:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=45.7Mi, Sys=20.4Mi, NumGC=146","level":"stat"}
+{"@timestamp":"2022-08-03T11:59:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:00:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:00:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=45.8Mi, Sys=20.4Mi, NumGC=146","level":"stat"}
+{"@timestamp":"2022-08-03T12:00:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:01:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:01:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=46.0Mi, Sys=20.4Mi, NumGC=147","level":"stat"}
+{"@timestamp":"2022-08-03T12:01:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:02:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:02:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=46.1Mi, Sys=20.4Mi, NumGC=147","level":"stat"}
+{"@timestamp":"2022-08-03T12:02:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:03:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:03:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=46.2Mi, Sys=20.4Mi, NumGC=148","level":"stat"}
+{"@timestamp":"2022-08-03T12:03:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:04:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:04:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=46.4Mi, Sys=20.4Mi, NumGC=148","level":"stat"}
+{"@timestamp":"2022-08-03T12:04:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:05:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:05:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=46.5Mi, Sys=20.4Mi, NumGC=149","level":"stat"}
+{"@timestamp":"2022-08-03T12:05:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:06:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:06:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=46.6Mi, Sys=20.4Mi, NumGC=149","level":"stat"}
+{"@timestamp":"2022-08-03T12:06:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:07:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:07:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=46.7Mi, Sys=20.4Mi, NumGC=150","level":"stat"}
+{"@timestamp":"2022-08-03T12:07:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:08:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:08:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=46.8Mi, Sys=20.4Mi, NumGC=150","level":"stat"}
+{"@timestamp":"2022-08-03T12:08:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:09:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:09:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=47.0Mi, Sys=20.4Mi, NumGC=151","level":"stat"}
+{"@timestamp":"2022-08-03T12:09:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:10:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:10:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=47.1Mi, Sys=20.4Mi, NumGC=151","level":"stat"}
+{"@timestamp":"2022-08-03T12:10:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:11:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:11:57.687+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=47.3Mi, Sys=20.4Mi, NumGC=152","level":"stat"}
+{"@timestamp":"2022-08-03T12:11:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:12:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:12:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=47.4Mi, Sys=20.4Mi, NumGC=152","level":"stat"}
+{"@timestamp":"2022-08-03T12:12:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:13:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:13:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=47.5Mi, Sys=20.4Mi, NumGC=153","level":"stat"}
+{"@timestamp":"2022-08-03T12:13:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:14:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:14:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=47.6Mi, Sys=20.4Mi, NumGC=153","level":"stat"}
+{"@timestamp":"2022-08-03T12:14:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:15:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:15:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=47.7Mi, Sys=20.4Mi, NumGC=154","level":"stat"}
+{"@timestamp":"2022-08-03T12:15:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:16:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:16:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=47.9Mi, Sys=20.4Mi, NumGC=154","level":"stat"}
+{"@timestamp":"2022-08-03T12:16:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:17:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:17:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=48.0Mi, Sys=20.4Mi, NumGC=155","level":"stat"}
+{"@timestamp":"2022-08-03T12:17:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:18:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:18:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=48.1Mi, Sys=20.4Mi, NumGC=155","level":"stat"}
+{"@timestamp":"2022-08-03T12:18:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:19:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:19:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=48.3Mi, Sys=20.4Mi, NumGC=156","level":"stat"}
+{"@timestamp":"2022-08-03T12:19:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:20:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:20:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=48.4Mi, Sys=20.4Mi, NumGC=156","level":"stat"}
+{"@timestamp":"2022-08-03T12:20:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:21:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:21:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=48.6Mi, Sys=20.4Mi, NumGC=157","level":"stat"}
+{"@timestamp":"2022-08-03T12:21:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:22:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:22:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=48.6Mi, Sys=20.4Mi, NumGC=157","level":"stat"}
+{"@timestamp":"2022-08-03T12:22:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:23:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:23:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=48.7Mi, Sys=20.4Mi, NumGC=158","level":"stat"}
+{"@timestamp":"2022-08-03T12:23:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:24:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:24:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=48.9Mi, Sys=20.4Mi, NumGC=158","level":"stat"}
+{"@timestamp":"2022-08-03T12:24:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:25:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:25:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=49.0Mi, Sys=20.4Mi, NumGC=159","level":"stat"}
+{"@timestamp":"2022-08-03T12:25:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:26:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:26:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=49.2Mi, Sys=20.4Mi, NumGC=159","level":"stat"}
+{"@timestamp":"2022-08-03T12:26:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:27:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:27:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=49.3Mi, Sys=20.4Mi, NumGC=160","level":"stat"}
+{"@timestamp":"2022-08-03T12:27:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:28:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:28:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=49.4Mi, Sys=20.4Mi, NumGC=160","level":"stat"}
+{"@timestamp":"2022-08-03T12:28:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:29:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:29:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=49.5Mi, Sys=20.4Mi, NumGC=161","level":"stat"}
+{"@timestamp":"2022-08-03T12:29:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:30:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:30:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=49.6Mi, Sys=20.4Mi, NumGC=161","level":"stat"}
+{"@timestamp":"2022-08-03T12:30:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:31:40.385+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:31:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=49.8Mi, Sys=20.4Mi, NumGC=162","level":"stat"}
+{"@timestamp":"2022-08-03T12:31:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:32:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:32:57.687+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=49.9Mi, Sys=20.4Mi, NumGC=162","level":"stat"}
+{"@timestamp":"2022-08-03T12:32:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:33:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:33:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=50.0Mi, Sys=20.4Mi, NumGC=163","level":"stat"}
+{"@timestamp":"2022-08-03T12:33:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:34:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:34:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=50.2Mi, Sys=20.4Mi, NumGC=163","level":"stat"}
+{"@timestamp":"2022-08-03T12:34:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:35:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:35:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=50.3Mi, Sys=20.4Mi, NumGC=164","level":"stat"}
+{"@timestamp":"2022-08-03T12:35:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:36:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:36:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=50.5Mi, Sys=20.4Mi, NumGC=164","level":"stat"}
+{"@timestamp":"2022-08-03T12:36:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:37:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:37:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=50.5Mi, Sys=20.4Mi, NumGC=165","level":"stat"}
+{"@timestamp":"2022-08-03T12:37:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:38:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:38:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=50.6Mi, Sys=20.4Mi, NumGC=165","level":"stat"}
+{"@timestamp":"2022-08-03T12:38:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:39:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:39:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=50.8Mi, Sys=20.4Mi, NumGC=166","level":"stat"}
+{"@timestamp":"2022-08-03T12:39:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:40:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:40:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=50.9Mi, Sys=20.4Mi, NumGC=166","level":"stat"}
+{"@timestamp":"2022-08-03T12:40:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:41:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:41:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=51.1Mi, Sys=20.4Mi, NumGC=167","level":"stat"}
+{"@timestamp":"2022-08-03T12:41:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:42:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:42:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=51.2Mi, Sys=20.4Mi, NumGC=167","level":"stat"}
+{"@timestamp":"2022-08-03T12:42:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:43:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:43:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=51.3Mi, Sys=20.4Mi, NumGC=168","level":"stat"}
+{"@timestamp":"2022-08-03T12:43:57.694+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:44:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:44:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=51.4Mi, Sys=20.4Mi, NumGC=168","level":"stat"}
+{"@timestamp":"2022-08-03T12:44:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:45:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:45:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=51.5Mi, Sys=20.4Mi, NumGC=169","level":"stat"}
+{"@timestamp":"2022-08-03T12:45:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:46:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:46:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=51.7Mi, Sys=20.4Mi, NumGC=169","level":"stat"}
+{"@timestamp":"2022-08-03T12:46:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:47:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:47:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=51.8Mi, Sys=20.4Mi, NumGC=170","level":"stat"}
+{"@timestamp":"2022-08-03T12:47:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:48:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:48:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=51.9Mi, Sys=20.4Mi, NumGC=170","level":"stat"}
+{"@timestamp":"2022-08-03T12:48:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:49:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:49:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=52.1Mi, Sys=20.4Mi, NumGC=171","level":"stat"}
+{"@timestamp":"2022-08-03T12:49:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:50:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:50:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=52.2Mi, Sys=20.4Mi, NumGC=171","level":"stat"}
+{"@timestamp":"2022-08-03T12:50:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:51:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:51:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=52.4Mi, Sys=20.4Mi, NumGC=172","level":"stat"}
+{"@timestamp":"2022-08-03T12:51:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:52:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:52:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=52.4Mi, Sys=20.4Mi, NumGC=172","level":"stat"}
+{"@timestamp":"2022-08-03T12:52:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:53:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:53:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=52.5Mi, Sys=20.4Mi, NumGC=173","level":"stat"}
+{"@timestamp":"2022-08-03T12:53:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:54:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:54:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=52.7Mi, Sys=20.4Mi, NumGC=173","level":"stat"}
+{"@timestamp":"2022-08-03T12:54:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:55:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:55:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=52.8Mi, Sys=20.4Mi, NumGC=174","level":"stat"}
+{"@timestamp":"2022-08-03T12:55:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:56:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:56:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=53.0Mi, Sys=20.4Mi, NumGC=174","level":"stat"}
+{"@timestamp":"2022-08-03T12:56:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:57:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:57:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=53.1Mi, Sys=20.4Mi, NumGC=175","level":"stat"}
+{"@timestamp":"2022-08-03T12:57:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:58:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:58:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=53.2Mi, Sys=20.4Mi, NumGC=175","level":"stat"}
+{"@timestamp":"2022-08-03T12:58:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T12:59:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T12:59:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=53.3Mi, Sys=20.4Mi, NumGC=176","level":"stat"}
+{"@timestamp":"2022-08-03T12:59:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:00:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:00:57.687+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=53.4Mi, Sys=20.4Mi, NumGC=176","level":"stat"}
+{"@timestamp":"2022-08-03T13:00:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:01:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:01:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=53.6Mi, Sys=20.4Mi, NumGC=177","level":"stat"}
+{"@timestamp":"2022-08-03T13:01:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:02:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:02:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=53.7Mi, Sys=20.4Mi, NumGC=177","level":"stat"}
+{"@timestamp":"2022-08-03T13:02:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:03:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:03:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=53.8Mi, Sys=20.4Mi, NumGC=178","level":"stat"}
+{"@timestamp":"2022-08-03T13:03:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:04:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:04:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=54.0Mi, Sys=20.4Mi, NumGC=178","level":"stat"}
+{"@timestamp":"2022-08-03T13:04:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:05:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:05:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=54.1Mi, Sys=20.4Mi, NumGC=179","level":"stat"}
+{"@timestamp":"2022-08-03T13:05:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:06:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:06:57.687+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=54.3Mi, Sys=20.4Mi, NumGC=179","level":"stat"}
+{"@timestamp":"2022-08-03T13:06:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:07:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:07:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=54.3Mi, Sys=20.4Mi, NumGC=180","level":"stat"}
+{"@timestamp":"2022-08-03T13:07:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:08:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:08:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=54.4Mi, Sys=20.4Mi, NumGC=180","level":"stat"}
+{"@timestamp":"2022-08-03T13:08:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:09:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:09:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=54.6Mi, Sys=20.4Mi, NumGC=181","level":"stat"}
+{"@timestamp":"2022-08-03T13:09:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:10:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:10:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=54.7Mi, Sys=20.4Mi, NumGC=181","level":"stat"}
+{"@timestamp":"2022-08-03T13:10:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:11:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:11:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=54.9Mi, Sys=20.4Mi, NumGC=182","level":"stat"}
+{"@timestamp":"2022-08-03T13:11:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:12:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:12:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=55.0Mi, Sys=20.4Mi, NumGC=182","level":"stat"}
+{"@timestamp":"2022-08-03T13:12:57.694+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:13:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:13:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=55.1Mi, Sys=20.4Mi, NumGC=183","level":"stat"}
+{"@timestamp":"2022-08-03T13:13:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:14:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:14:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=55.3Mi, Sys=20.4Mi, NumGC=183","level":"stat"}
+{"@timestamp":"2022-08-03T13:14:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:15:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:15:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=55.3Mi, Sys=20.4Mi, NumGC=184","level":"stat"}
+{"@timestamp":"2022-08-03T13:15:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:16:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:16:57.687+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=55.5Mi, Sys=20.4Mi, NumGC=184","level":"stat"}
+{"@timestamp":"2022-08-03T13:16:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:17:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:17:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=55.6Mi, Sys=20.4Mi, NumGC=185","level":"stat"}
+{"@timestamp":"2022-08-03T13:17:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:18:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:18:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=55.7Mi, Sys=20.4Mi, NumGC=185","level":"stat"}
+{"@timestamp":"2022-08-03T13:18:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:19:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:19:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=55.9Mi, Sys=20.4Mi, NumGC=186","level":"stat"}
+{"@timestamp":"2022-08-03T13:19:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:20:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:20:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=56.0Mi, Sys=20.4Mi, NumGC=186","level":"stat"}
+{"@timestamp":"2022-08-03T13:20:57.694+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:21:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:21:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=56.2Mi, Sys=20.4Mi, NumGC=187","level":"stat"}
+{"@timestamp":"2022-08-03T13:21:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:22:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:22:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=56.3Mi, Sys=20.4Mi, NumGC=187","level":"stat"}
+{"@timestamp":"2022-08-03T13:22:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:23:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:23:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=56.3Mi, Sys=20.4Mi, NumGC=188","level":"stat"}
+{"@timestamp":"2022-08-03T13:23:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:24:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:24:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=56.5Mi, Sys=20.4Mi, NumGC=188","level":"stat"}
+{"@timestamp":"2022-08-03T13:24:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:25:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:25:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=56.6Mi, Sys=20.4Mi, NumGC=189","level":"stat"}
+{"@timestamp":"2022-08-03T13:25:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:26:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:26:57.687+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=56.8Mi, Sys=20.4Mi, NumGC=189","level":"stat"}
+{"@timestamp":"2022-08-03T13:26:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:27:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:27:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=56.9Mi, Sys=20.4Mi, NumGC=190","level":"stat"}
+{"@timestamp":"2022-08-03T13:27:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:28:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:28:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=57.0Mi, Sys=20.4Mi, NumGC=190","level":"stat"}
+{"@timestamp":"2022-08-03T13:28:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:29:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:29:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=57.2Mi, Sys=20.4Mi, NumGC=191","level":"stat"}
+{"@timestamp":"2022-08-03T13:29:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:30:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:30:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=57.2Mi, Sys=20.4Mi, NumGC=191","level":"stat"}
+{"@timestamp":"2022-08-03T13:30:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:31:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:31:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=57.4Mi, Sys=20.4Mi, NumGC=192","level":"stat"}
+{"@timestamp":"2022-08-03T13:31:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:32:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:32:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=57.5Mi, Sys=20.4Mi, NumGC=192","level":"stat"}
+{"@timestamp":"2022-08-03T13:32:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:33:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:33:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=57.6Mi, Sys=20.4Mi, NumGC=193","level":"stat"}
+{"@timestamp":"2022-08-03T13:33:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:34:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:34:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=57.8Mi, Sys=20.4Mi, NumGC=193","level":"stat"}
+{"@timestamp":"2022-08-03T13:34:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:35:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:35:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=57.9Mi, Sys=20.4Mi, NumGC=194","level":"stat"}
+{"@timestamp":"2022-08-03T13:35:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:36:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:36:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=58.1Mi, Sys=20.4Mi, NumGC=194","level":"stat"}
+{"@timestamp":"2022-08-03T13:36:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:37:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:37:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=58.2Mi, Sys=20.4Mi, NumGC=195","level":"stat"}
+{"@timestamp":"2022-08-03T13:37:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:38:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:38:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=58.3Mi, Sys=20.4Mi, NumGC=195","level":"stat"}
+{"@timestamp":"2022-08-03T13:38:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:39:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:39:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=58.4Mi, Sys=20.4Mi, NumGC=196","level":"stat"}
+{"@timestamp":"2022-08-03T13:39:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:40:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:40:57.687+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=58.5Mi, Sys=20.4Mi, NumGC=196","level":"stat"}
+{"@timestamp":"2022-08-03T13:40:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:41:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:41:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=58.7Mi, Sys=20.4Mi, NumGC=197","level":"stat"}
+{"@timestamp":"2022-08-03T13:41:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:42:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:42:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=58.8Mi, Sys=20.4Mi, NumGC=197","level":"stat"}
+{"@timestamp":"2022-08-03T13:42:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:43:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:43:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=58.9Mi, Sys=20.4Mi, NumGC=198","level":"stat"}
+{"@timestamp":"2022-08-03T13:43:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:44:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:44:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=59.1Mi, Sys=20.4Mi, NumGC=198","level":"stat"}
+{"@timestamp":"2022-08-03T13:44:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:45:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:45:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=59.2Mi, Sys=20.4Mi, NumGC=199","level":"stat"}
+{"@timestamp":"2022-08-03T13:45:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:46:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:46:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=59.4Mi, Sys=20.4Mi, NumGC=199","level":"stat"}
+{"@timestamp":"2022-08-03T13:46:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:47:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:47:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=59.5Mi, Sys=20.4Mi, NumGC=200","level":"stat"}
+{"@timestamp":"2022-08-03T13:47:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:48:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:48:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=59.5Mi, Sys=20.4Mi, NumGC=200","level":"stat"}
+{"@timestamp":"2022-08-03T13:48:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:49:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:49:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=59.7Mi, Sys=20.4Mi, NumGC=201","level":"stat"}
+{"@timestamp":"2022-08-03T13:49:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:50:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:50:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=59.8Mi, Sys=20.4Mi, NumGC=201","level":"stat"}
+{"@timestamp":"2022-08-03T13:50:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:51:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:51:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=60.0Mi, Sys=20.4Mi, NumGC=202","level":"stat"}
+{"@timestamp":"2022-08-03T13:51:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:52:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:52:57.687+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=60.1Mi, Sys=20.4Mi, NumGC=202","level":"stat"}
+{"@timestamp":"2022-08-03T13:52:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:53:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:53:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=60.2Mi, Sys=20.4Mi, NumGC=203","level":"stat"}
+{"@timestamp":"2022-08-03T13:53:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:54:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:54:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=60.3Mi, Sys=20.4Mi, NumGC=203","level":"stat"}
+{"@timestamp":"2022-08-03T13:54:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:55:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:55:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=60.4Mi, Sys=20.4Mi, NumGC=204","level":"stat"}
+{"@timestamp":"2022-08-03T13:55:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:56:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:56:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=60.6Mi, Sys=20.4Mi, NumGC=204","level":"stat"}
+{"@timestamp":"2022-08-03T13:56:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:57:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:57:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=60.7Mi, Sys=20.4Mi, NumGC=205","level":"stat"}
+{"@timestamp":"2022-08-03T13:57:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:58:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:58:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=60.8Mi, Sys=20.4Mi, NumGC=205","level":"stat"}
+{"@timestamp":"2022-08-03T13:58:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T13:59:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T13:59:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=61.0Mi, Sys=20.4Mi, NumGC=206","level":"stat"}
+{"@timestamp":"2022-08-03T13:59:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:00:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:00:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=61.1Mi, Sys=20.4Mi, NumGC=206","level":"stat"}
+{"@timestamp":"2022-08-03T14:00:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:01:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:01:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=61.3Mi, Sys=20.4Mi, NumGC=207","level":"stat"}
+{"@timestamp":"2022-08-03T14:01:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:02:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:02:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=61.3Mi, Sys=20.4Mi, NumGC=207","level":"stat"}
+{"@timestamp":"2022-08-03T14:02:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:03:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:03:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=61.4Mi, Sys=20.4Mi, NumGC=208","level":"stat"}
+{"@timestamp":"2022-08-03T14:03:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:04:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:04:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=61.6Mi, Sys=20.4Mi, NumGC=208","level":"stat"}
+{"@timestamp":"2022-08-03T14:04:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:05:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:05:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=61.7Mi, Sys=20.4Mi, NumGC=209","level":"stat"}
+{"@timestamp":"2022-08-03T14:05:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:06:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:06:57.687+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=61.9Mi, Sys=20.4Mi, NumGC=209","level":"stat"}
+{"@timestamp":"2022-08-03T14:06:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:07:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:07:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=62.0Mi, Sys=20.4Mi, NumGC=210","level":"stat"}
+{"@timestamp":"2022-08-03T14:07:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:08:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:08:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=62.1Mi, Sys=20.4Mi, NumGC=210","level":"stat"}
+{"@timestamp":"2022-08-03T14:08:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:09:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:09:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=62.3Mi, Sys=20.4Mi, NumGC=211","level":"stat"}
+{"@timestamp":"2022-08-03T14:09:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:10:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:10:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=62.3Mi, Sys=20.4Mi, NumGC=211","level":"stat"}
+{"@timestamp":"2022-08-03T14:10:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:11:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:11:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=62.5Mi, Sys=20.4Mi, NumGC=212","level":"stat"}
+{"@timestamp":"2022-08-03T14:11:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:12:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:12:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=62.6Mi, Sys=20.4Mi, NumGC=212","level":"stat"}
+{"@timestamp":"2022-08-03T14:12:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:13:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:13:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=62.7Mi, Sys=20.4Mi, NumGC=213","level":"stat"}
+{"@timestamp":"2022-08-03T14:13:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:14:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:14:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=62.9Mi, Sys=20.4Mi, NumGC=213","level":"stat"}
+{"@timestamp":"2022-08-03T14:14:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:15:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:15:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=63.0Mi, Sys=20.4Mi, NumGC=214","level":"stat"}
+{"@timestamp":"2022-08-03T14:15:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:16:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:16:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=63.2Mi, Sys=20.4Mi, NumGC=214","level":"stat"}
+{"@timestamp":"2022-08-03T14:16:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:17:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:17:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=63.2Mi, Sys=20.4Mi, NumGC=215","level":"stat"}
+{"@timestamp":"2022-08-03T14:17:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:18:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:18:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=63.3Mi, Sys=20.4Mi, NumGC=215","level":"stat"}
+{"@timestamp":"2022-08-03T14:18:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:19:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:19:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=63.5Mi, Sys=20.4Mi, NumGC=216","level":"stat"}
+{"@timestamp":"2022-08-03T14:19:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:20:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:20:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=63.6Mi, Sys=20.4Mi, NumGC=216","level":"stat"}
+{"@timestamp":"2022-08-03T14:20:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:21:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:21:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=63.8Mi, Sys=20.4Mi, NumGC=217","level":"stat"}
+{"@timestamp":"2022-08-03T14:21:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:22:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:22:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=63.9Mi, Sys=20.4Mi, NumGC=217","level":"stat"}
+{"@timestamp":"2022-08-03T14:22:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:23:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:23:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=64.0Mi, Sys=20.4Mi, NumGC=218","level":"stat"}
+{"@timestamp":"2022-08-03T14:23:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:24:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:24:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=64.1Mi, Sys=20.4Mi, NumGC=218","level":"stat"}
+{"@timestamp":"2022-08-03T14:24:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:25:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:25:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=64.2Mi, Sys=20.4Mi, NumGC=219","level":"stat"}
+{"@timestamp":"2022-08-03T14:25:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:26:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:26:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=64.4Mi, Sys=20.4Mi, NumGC=219","level":"stat"}
+{"@timestamp":"2022-08-03T14:26:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:27:40.385+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:27:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=64.5Mi, Sys=20.4Mi, NumGC=220","level":"stat"}
+{"@timestamp":"2022-08-03T14:27:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:28:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:28:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=64.6Mi, Sys=20.4Mi, NumGC=220","level":"stat"}
+{"@timestamp":"2022-08-03T14:28:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:29:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:29:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=64.8Mi, Sys=20.4Mi, NumGC=221","level":"stat"}
+{"@timestamp":"2022-08-03T14:29:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:30:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:30:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=64.9Mi, Sys=20.4Mi, NumGC=221","level":"stat"}
+{"@timestamp":"2022-08-03T14:30:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:31:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:31:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=65.1Mi, Sys=20.4Mi, NumGC=222","level":"stat"}
+{"@timestamp":"2022-08-03T14:31:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:32:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:32:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=65.1Mi, Sys=20.4Mi, NumGC=222","level":"stat"}
+{"@timestamp":"2022-08-03T14:32:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:33:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:33:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=65.2Mi, Sys=20.4Mi, NumGC=223","level":"stat"}
+{"@timestamp":"2022-08-03T14:33:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:34:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:34:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=65.4Mi, Sys=20.4Mi, NumGC=223","level":"stat"}
+{"@timestamp":"2022-08-03T14:34:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:35:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:35:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=65.5Mi, Sys=20.4Mi, NumGC=224","level":"stat"}
+{"@timestamp":"2022-08-03T14:35:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:36:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:36:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=65.7Mi, Sys=20.4Mi, NumGC=224","level":"stat"}
+{"@timestamp":"2022-08-03T14:36:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:37:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:37:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=65.8Mi, Sys=20.4Mi, NumGC=225","level":"stat"}
+{"@timestamp":"2022-08-03T14:37:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:38:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:38:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=65.9Mi, Sys=20.4Mi, NumGC=225","level":"stat"}
+{"@timestamp":"2022-08-03T14:38:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:39:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:39:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=66.0Mi, Sys=20.4Mi, NumGC=226","level":"stat"}
+{"@timestamp":"2022-08-03T14:39:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:40:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:40:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=66.1Mi, Sys=20.4Mi, NumGC=226","level":"stat"}
+{"@timestamp":"2022-08-03T14:40:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:41:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:41:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=66.3Mi, Sys=20.4Mi, NumGC=227","level":"stat"}
+{"@timestamp":"2022-08-03T14:41:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:42:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:42:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=66.4Mi, Sys=20.4Mi, NumGC=227","level":"stat"}
+{"@timestamp":"2022-08-03T14:42:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:43:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:43:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=66.5Mi, Sys=20.4Mi, NumGC=228","level":"stat"}
+{"@timestamp":"2022-08-03T14:43:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:44:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:44:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=66.7Mi, Sys=20.4Mi, NumGC=228","level":"stat"}
+{"@timestamp":"2022-08-03T14:44:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:45:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:45:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=66.8Mi, Sys=20.4Mi, NumGC=229","level":"stat"}
+{"@timestamp":"2022-08-03T14:45:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:46:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:46:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=66.9Mi, Sys=20.4Mi, NumGC=229","level":"stat"}
+{"@timestamp":"2022-08-03T14:46:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:47:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:47:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=67.0Mi, Sys=20.4Mi, NumGC=230","level":"stat"}
+{"@timestamp":"2022-08-03T14:47:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:48:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:48:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=67.1Mi, Sys=20.4Mi, NumGC=230","level":"stat"}
+{"@timestamp":"2022-08-03T14:48:57.694+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:49:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:49:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=67.3Mi, Sys=20.4Mi, NumGC=231","level":"stat"}
+{"@timestamp":"2022-08-03T14:49:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:50:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:50:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=67.4Mi, Sys=20.4Mi, NumGC=231","level":"stat"}
+{"@timestamp":"2022-08-03T14:50:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:51:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:51:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=67.6Mi, Sys=20.4Mi, NumGC=232","level":"stat"}
+{"@timestamp":"2022-08-03T14:51:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:52:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:52:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=67.7Mi, Sys=20.4Mi, NumGC=232","level":"stat"}
+{"@timestamp":"2022-08-03T14:52:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:53:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:53:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=67.8Mi, Sys=20.4Mi, NumGC=233","level":"stat"}
+{"@timestamp":"2022-08-03T14:53:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:54:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:54:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=67.9Mi, Sys=20.4Mi, NumGC=233","level":"stat"}
+{"@timestamp":"2022-08-03T14:54:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:55:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:55:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=68.0Mi, Sys=20.4Mi, NumGC=234","level":"stat"}
+{"@timestamp":"2022-08-03T14:55:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:56:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:56:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=68.2Mi, Sys=20.4Mi, NumGC=234","level":"stat"}
+{"@timestamp":"2022-08-03T14:56:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:57:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:57:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=68.3Mi, Sys=20.4Mi, NumGC=235","level":"stat"}
+{"@timestamp":"2022-08-03T14:57:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:58:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:58:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=68.4Mi, Sys=20.4Mi, NumGC=235","level":"stat"}
+{"@timestamp":"2022-08-03T14:58:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T14:59:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T14:59:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=68.6Mi, Sys=20.4Mi, NumGC=236","level":"stat"}
+{"@timestamp":"2022-08-03T14:59:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:00:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:00:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=68.7Mi, Sys=20.4Mi, NumGC=236","level":"stat"}
+{"@timestamp":"2022-08-03T15:00:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:01:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:01:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=68.9Mi, Sys=20.4Mi, NumGC=237","level":"stat"}
+{"@timestamp":"2022-08-03T15:01:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:02:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:02:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=68.9Mi, Sys=20.4Mi, NumGC=237","level":"stat"}
+{"@timestamp":"2022-08-03T15:02:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:03:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:03:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=69.0Mi, Sys=20.4Mi, NumGC=238","level":"stat"}
+{"@timestamp":"2022-08-03T15:03:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:04:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:04:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=69.2Mi, Sys=20.4Mi, NumGC=238","level":"stat"}
+{"@timestamp":"2022-08-03T15:04:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:05:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:05:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=69.3Mi, Sys=20.4Mi, NumGC=239","level":"stat"}
+{"@timestamp":"2022-08-03T15:05:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:06:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:06:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=69.5Mi, Sys=20.4Mi, NumGC=239","level":"stat"}
+{"@timestamp":"2022-08-03T15:06:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:07:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:07:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=69.6Mi, Sys=20.4Mi, NumGC=240","level":"stat"}
+{"@timestamp":"2022-08-03T15:07:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:08:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:08:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=69.6Mi, Sys=20.4Mi, NumGC=240","level":"stat"}
+{"@timestamp":"2022-08-03T15:08:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:09:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:09:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=69.8Mi, Sys=20.4Mi, NumGC=241","level":"stat"}
+{"@timestamp":"2022-08-03T15:09:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:10:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:10:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=69.9Mi, Sys=20.4Mi, NumGC=241","level":"stat"}
+{"@timestamp":"2022-08-03T15:10:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:11:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:11:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=70.1Mi, Sys=20.4Mi, NumGC=242","level":"stat"}
+{"@timestamp":"2022-08-03T15:11:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:12:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:12:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=70.2Mi, Sys=20.4Mi, NumGC=242","level":"stat"}
+{"@timestamp":"2022-08-03T15:12:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:13:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:13:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=70.3Mi, Sys=20.4Mi, NumGC=243","level":"stat"}
+{"@timestamp":"2022-08-03T15:13:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:14:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:14:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=70.5Mi, Sys=20.4Mi, NumGC=243","level":"stat"}
+{"@timestamp":"2022-08-03T15:14:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:15:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:15:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=70.6Mi, Sys=20.4Mi, NumGC=244","level":"stat"}
+{"@timestamp":"2022-08-03T15:15:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:16:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:16:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=70.7Mi, Sys=20.4Mi, NumGC=244","level":"stat"}
+{"@timestamp":"2022-08-03T15:16:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:17:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:17:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=70.8Mi, Sys=20.4Mi, NumGC=245","level":"stat"}
+{"@timestamp":"2022-08-03T15:17:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:18:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:18:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=70.9Mi, Sys=20.4Mi, NumGC=245","level":"stat"}
+{"@timestamp":"2022-08-03T15:18:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:19:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:19:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=71.1Mi, Sys=20.4Mi, NumGC=246","level":"stat"}
+{"@timestamp":"2022-08-03T15:19:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:20:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:20:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=71.2Mi, Sys=20.4Mi, NumGC=246","level":"stat"}
+{"@timestamp":"2022-08-03T15:20:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:21:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:21:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=71.4Mi, Sys=20.4Mi, NumGC=247","level":"stat"}
+{"@timestamp":"2022-08-03T15:21:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:22:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:22:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=71.5Mi, Sys=20.4Mi, NumGC=247","level":"stat"}
+{"@timestamp":"2022-08-03T15:22:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:23:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:23:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=71.6Mi, Sys=20.4Mi, NumGC=248","level":"stat"}
+{"@timestamp":"2022-08-03T15:23:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:24:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:24:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=71.7Mi, Sys=20.4Mi, NumGC=248","level":"stat"}
+{"@timestamp":"2022-08-03T15:24:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:25:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:25:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=71.8Mi, Sys=20.4Mi, NumGC=249","level":"stat"}
+{"@timestamp":"2022-08-03T15:25:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:26:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:26:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=72.0Mi, Sys=20.4Mi, NumGC=249","level":"stat"}
+{"@timestamp":"2022-08-03T15:26:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:27:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:27:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=72.1Mi, Sys=20.4Mi, NumGC=250","level":"stat"}
+{"@timestamp":"2022-08-03T15:27:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:28:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:28:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=72.2Mi, Sys=20.4Mi, NumGC=250","level":"stat"}
+{"@timestamp":"2022-08-03T15:28:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:29:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:29:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=72.4Mi, Sys=20.4Mi, NumGC=251","level":"stat"}
+{"@timestamp":"2022-08-03T15:29:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:30:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:30:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=72.5Mi, Sys=20.4Mi, NumGC=251","level":"stat"}
+{"@timestamp":"2022-08-03T15:30:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:31:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:31:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=72.7Mi, Sys=20.4Mi, NumGC=252","level":"stat"}
+{"@timestamp":"2022-08-03T15:31:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:32:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:32:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=72.7Mi, Sys=20.4Mi, NumGC=252","level":"stat"}
+{"@timestamp":"2022-08-03T15:32:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:33:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:33:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=72.8Mi, Sys=20.4Mi, NumGC=253","level":"stat"}
+{"@timestamp":"2022-08-03T15:33:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:34:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:34:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=73.0Mi, Sys=20.4Mi, NumGC=253","level":"stat"}
+{"@timestamp":"2022-08-03T15:34:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:35:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:35:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=73.1Mi, Sys=20.4Mi, NumGC=254","level":"stat"}
+{"@timestamp":"2022-08-03T15:35:57.694+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:36:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:36:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=73.3Mi, Sys=20.4Mi, NumGC=254","level":"stat"}
+{"@timestamp":"2022-08-03T15:36:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:37:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:37:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=73.4Mi, Sys=20.4Mi, NumGC=255","level":"stat"}
+{"@timestamp":"2022-08-03T15:37:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:38:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:38:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=73.5Mi, Sys=20.4Mi, NumGC=255","level":"stat"}
+{"@timestamp":"2022-08-03T15:38:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:39:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:39:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=73.6Mi, Sys=20.4Mi, NumGC=256","level":"stat"}
+{"@timestamp":"2022-08-03T15:39:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:40:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:40:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=73.7Mi, Sys=20.4Mi, NumGC=256","level":"stat"}
+{"@timestamp":"2022-08-03T15:40:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:41:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:41:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=73.9Mi, Sys=20.4Mi, NumGC=257","level":"stat"}
+{"@timestamp":"2022-08-03T15:41:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:42:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:42:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=74.0Mi, Sys=20.4Mi, NumGC=257","level":"stat"}
+{"@timestamp":"2022-08-03T15:42:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:43:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:43:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=74.1Mi, Sys=20.4Mi, NumGC=258","level":"stat"}
+{"@timestamp":"2022-08-03T15:43:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:44:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:44:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=74.3Mi, Sys=20.4Mi, NumGC=258","level":"stat"}
+{"@timestamp":"2022-08-03T15:44:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:45:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:45:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=74.4Mi, Sys=20.4Mi, NumGC=259","level":"stat"}
+{"@timestamp":"2022-08-03T15:45:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:46:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:46:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=74.6Mi, Sys=20.4Mi, NumGC=259","level":"stat"}
+{"@timestamp":"2022-08-03T15:46:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:47:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:47:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=74.7Mi, Sys=20.4Mi, NumGC=260","level":"stat"}
+{"@timestamp":"2022-08-03T15:47:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:48:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:48:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=74.7Mi, Sys=20.4Mi, NumGC=260","level":"stat"}
+{"@timestamp":"2022-08-03T15:48:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:49:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:49:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=74.9Mi, Sys=20.4Mi, NumGC=261","level":"stat"}
+{"@timestamp":"2022-08-03T15:49:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:50:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:50:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=75.0Mi, Sys=20.4Mi, NumGC=261","level":"stat"}
+{"@timestamp":"2022-08-03T15:50:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:51:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:51:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=75.2Mi, Sys=20.4Mi, NumGC=262","level":"stat"}
+{"@timestamp":"2022-08-03T15:51:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:52:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:52:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=75.3Mi, Sys=20.4Mi, NumGC=262","level":"stat"}
+{"@timestamp":"2022-08-03T15:52:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:53:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:53:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=75.4Mi, Sys=20.4Mi, NumGC=263","level":"stat"}
+{"@timestamp":"2022-08-03T15:53:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:54:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:54:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=75.5Mi, Sys=20.4Mi, NumGC=263","level":"stat"}
+{"@timestamp":"2022-08-03T15:54:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:55:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:55:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=75.6Mi, Sys=20.4Mi, NumGC=264","level":"stat"}
+{"@timestamp":"2022-08-03T15:55:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:56:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:56:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=75.8Mi, Sys=20.4Mi, NumGC=264","level":"stat"}
+{"@timestamp":"2022-08-03T15:56:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:57:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:57:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=75.9Mi, Sys=20.4Mi, NumGC=265","level":"stat"}
+{"@timestamp":"2022-08-03T15:57:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:58:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:58:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=76.0Mi, Sys=20.4Mi, NumGC=265","level":"stat"}
+{"@timestamp":"2022-08-03T15:58:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T15:59:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T15:59:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=76.2Mi, Sys=20.4Mi, NumGC=266","level":"stat"}
+{"@timestamp":"2022-08-03T15:59:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:00:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:00:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=76.3Mi, Sys=20.4Mi, NumGC=266","level":"stat"}
+{"@timestamp":"2022-08-03T16:00:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:01:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:01:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=76.5Mi, Sys=20.4Mi, NumGC=267","level":"stat"}
+{"@timestamp":"2022-08-03T16:01:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:02:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:02:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=76.6Mi, Sys=20.4Mi, NumGC=267","level":"stat"}
+{"@timestamp":"2022-08-03T16:02:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:03:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:03:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=76.7Mi, Sys=20.4Mi, NumGC=268","level":"stat"}
+{"@timestamp":"2022-08-03T16:03:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:04:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:04:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=76.8Mi, Sys=20.4Mi, NumGC=268","level":"stat"}
+{"@timestamp":"2022-08-03T16:04:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:05:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:05:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=76.9Mi, Sys=20.4Mi, NumGC=269","level":"stat"}
+{"@timestamp":"2022-08-03T16:05:57.694+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:06:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:06:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=77.1Mi, Sys=20.4Mi, NumGC=269","level":"stat"}
+{"@timestamp":"2022-08-03T16:06:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:07:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:07:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=77.2Mi, Sys=20.4Mi, NumGC=270","level":"stat"}
+{"@timestamp":"2022-08-03T16:07:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:08:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:08:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=77.3Mi, Sys=20.4Mi, NumGC=270","level":"stat"}
+{"@timestamp":"2022-08-03T16:08:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:09:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:09:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=77.5Mi, Sys=20.4Mi, NumGC=271","level":"stat"}
+{"@timestamp":"2022-08-03T16:09:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:10:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:10:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=77.6Mi, Sys=20.4Mi, NumGC=271","level":"stat"}
+{"@timestamp":"2022-08-03T16:10:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:11:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:11:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=77.8Mi, Sys=20.4Mi, NumGC=272","level":"stat"}
+{"@timestamp":"2022-08-03T16:11:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:12:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:12:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=77.8Mi, Sys=20.4Mi, NumGC=272","level":"stat"}
+{"@timestamp":"2022-08-03T16:12:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:13:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:13:57.687+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=77.9Mi, Sys=20.4Mi, NumGC=273","level":"stat"}
+{"@timestamp":"2022-08-03T16:13:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:14:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:14:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=78.1Mi, Sys=20.4Mi, NumGC=273","level":"stat"}
+{"@timestamp":"2022-08-03T16:14:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:15:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:15:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=78.2Mi, Sys=20.4Mi, NumGC=274","level":"stat"}
+{"@timestamp":"2022-08-03T16:15:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:16:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:16:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=78.4Mi, Sys=20.4Mi, NumGC=274","level":"stat"}
+{"@timestamp":"2022-08-03T16:16:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:17:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:17:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=78.5Mi, Sys=20.4Mi, NumGC=275","level":"stat"}
+{"@timestamp":"2022-08-03T16:17:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:18:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:18:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=78.5Mi, Sys=20.4Mi, NumGC=275","level":"stat"}
+{"@timestamp":"2022-08-03T16:18:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:19:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:19:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=78.7Mi, Sys=20.4Mi, NumGC=276","level":"stat"}
+{"@timestamp":"2022-08-03T16:19:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:20:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:20:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=78.8Mi, Sys=20.4Mi, NumGC=276","level":"stat"}
+{"@timestamp":"2022-08-03T16:20:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:21:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:21:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=79.0Mi, Sys=20.4Mi, NumGC=277","level":"stat"}
+{"@timestamp":"2022-08-03T16:21:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:22:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:22:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=79.1Mi, Sys=20.4Mi, NumGC=277","level":"stat"}
+{"@timestamp":"2022-08-03T16:22:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:23:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:23:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=79.2Mi, Sys=20.4Mi, NumGC=278","level":"stat"}
+{"@timestamp":"2022-08-03T16:23:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:24:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:24:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=79.4Mi, Sys=20.4Mi, NumGC=278","level":"stat"}
+{"@timestamp":"2022-08-03T16:24:57.694+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:25:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:25:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=79.5Mi, Sys=20.4Mi, NumGC=279","level":"stat"}
+{"@timestamp":"2022-08-03T16:25:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:26:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:26:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=79.6Mi, Sys=20.4Mi, NumGC=279","level":"stat"}
+{"@timestamp":"2022-08-03T16:26:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:27:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:27:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=79.7Mi, Sys=20.4Mi, NumGC=280","level":"stat"}
+{"@timestamp":"2022-08-03T16:27:57.694+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:28:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:28:57.687+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=79.8Mi, Sys=20.4Mi, NumGC=280","level":"stat"}
+{"@timestamp":"2022-08-03T16:28:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:29:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:29:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=80.0Mi, Sys=20.4Mi, NumGC=281","level":"stat"}
+{"@timestamp":"2022-08-03T16:29:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:30:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:30:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=80.1Mi, Sys=20.4Mi, NumGC=281","level":"stat"}
+{"@timestamp":"2022-08-03T16:30:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:31:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:31:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=80.3Mi, Sys=20.4Mi, NumGC=282","level":"stat"}
+{"@timestamp":"2022-08-03T16:31:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:32:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:32:57.687+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=80.4Mi, Sys=20.4Mi, NumGC=282","level":"stat"}
+{"@timestamp":"2022-08-03T16:32:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:33:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:33:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=80.5Mi, Sys=20.4Mi, NumGC=283","level":"stat"}
+{"@timestamp":"2022-08-03T16:33:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:34:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:34:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=80.6Mi, Sys=20.4Mi, NumGC=283","level":"stat"}
+{"@timestamp":"2022-08-03T16:34:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:35:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:35:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=80.7Mi, Sys=20.4Mi, NumGC=284","level":"stat"}
+{"@timestamp":"2022-08-03T16:35:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:36:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:36:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=80.9Mi, Sys=20.4Mi, NumGC=284","level":"stat"}
+{"@timestamp":"2022-08-03T16:36:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:37:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:37:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=81.0Mi, Sys=20.4Mi, NumGC=285","level":"stat"}
+{"@timestamp":"2022-08-03T16:37:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:38:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:38:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=81.1Mi, Sys=20.4Mi, NumGC=285","level":"stat"}
+{"@timestamp":"2022-08-03T16:38:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:39:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:39:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=81.3Mi, Sys=20.4Mi, NumGC=286","level":"stat"}
+{"@timestamp":"2022-08-03T16:39:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:40:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:40:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=81.3Mi, Sys=20.4Mi, NumGC=286","level":"stat"}
+{"@timestamp":"2022-08-03T16:40:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:41:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:41:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=81.6Mi, Sys=20.4Mi, NumGC=287","level":"stat"}
+{"@timestamp":"2022-08-03T16:41:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:42:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:42:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=81.6Mi, Sys=20.4Mi, NumGC=287","level":"stat"}
+{"@timestamp":"2022-08-03T16:42:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:43:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:43:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=81.7Mi, Sys=20.4Mi, NumGC=288","level":"stat"}
+{"@timestamp":"2022-08-03T16:43:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:44:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:44:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=81.9Mi, Sys=20.4Mi, NumGC=288","level":"stat"}
+{"@timestamp":"2022-08-03T16:44:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:45:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:45:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=82.0Mi, Sys=20.4Mi, NumGC=289","level":"stat"}
+{"@timestamp":"2022-08-03T16:45:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:46:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:46:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=82.2Mi, Sys=20.4Mi, NumGC=289","level":"stat"}
+{"@timestamp":"2022-08-03T16:46:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:47:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:47:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=82.3Mi, Sys=20.4Mi, NumGC=290","level":"stat"}
+{"@timestamp":"2022-08-03T16:47:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:48:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:48:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=82.4Mi, Sys=20.4Mi, NumGC=290","level":"stat"}
+{"@timestamp":"2022-08-03T16:48:57.694+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:49:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:49:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=82.6Mi, Sys=20.4Mi, NumGC=291","level":"stat"}
+{"@timestamp":"2022-08-03T16:49:57.694+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:50:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:50:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=82.6Mi, Sys=20.4Mi, NumGC=291","level":"stat"}
+{"@timestamp":"2022-08-03T16:50:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:51:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:51:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=82.8Mi, Sys=20.4Mi, NumGC=292","level":"stat"}
+{"@timestamp":"2022-08-03T16:51:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:52:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:52:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=82.9Mi, Sys=20.4Mi, NumGC=292","level":"stat"}
+{"@timestamp":"2022-08-03T16:52:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:53:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:53:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=83.0Mi, Sys=20.4Mi, NumGC=293","level":"stat"}
+{"@timestamp":"2022-08-03T16:53:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:54:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:54:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=83.2Mi, Sys=20.4Mi, NumGC=293","level":"stat"}
+{"@timestamp":"2022-08-03T16:54:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:55:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:55:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=83.3Mi, Sys=20.4Mi, NumGC=294","level":"stat"}
+{"@timestamp":"2022-08-03T16:55:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:56:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:56:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=83.5Mi, Sys=20.4Mi, NumGC=294","level":"stat"}
+{"@timestamp":"2022-08-03T16:56:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:57:40.385+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:57:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=83.6Mi, Sys=20.4Mi, NumGC=295","level":"stat"}
+{"@timestamp":"2022-08-03T16:57:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:58:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:58:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=83.6Mi, Sys=20.4Mi, NumGC=295","level":"stat"}
+{"@timestamp":"2022-08-03T16:58:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T16:59:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T16:59:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=83.8Mi, Sys=20.4Mi, NumGC=296","level":"stat"}
+{"@timestamp":"2022-08-03T16:59:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:00:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:00:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=83.9Mi, Sys=20.4Mi, NumGC=296","level":"stat"}
+{"@timestamp":"2022-08-03T17:00:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:01:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:01:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=84.1Mi, Sys=20.4Mi, NumGC=297","level":"stat"}
+{"@timestamp":"2022-08-03T17:01:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:02:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:02:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=84.2Mi, Sys=20.4Mi, NumGC=297","level":"stat"}
+{"@timestamp":"2022-08-03T17:02:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:03:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:03:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=84.3Mi, Sys=20.4Mi, NumGC=298","level":"stat"}
+{"@timestamp":"2022-08-03T17:03:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:04:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:04:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=84.4Mi, Sys=20.4Mi, NumGC=298","level":"stat"}
+{"@timestamp":"2022-08-03T17:04:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:05:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:05:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=84.5Mi, Sys=20.4Mi, NumGC=299","level":"stat"}
+{"@timestamp":"2022-08-03T17:05:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:06:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:06:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=84.7Mi, Sys=20.4Mi, NumGC=299","level":"stat"}
+{"@timestamp":"2022-08-03T17:06:57.694+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:07:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:07:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=84.8Mi, Sys=20.4Mi, NumGC=300","level":"stat"}
+{"@timestamp":"2022-08-03T17:07:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:08:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:08:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=84.9Mi, Sys=20.4Mi, NumGC=300","level":"stat"}
+{"@timestamp":"2022-08-03T17:08:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:09:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:09:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=85.1Mi, Sys=20.4Mi, NumGC=301","level":"stat"}
+{"@timestamp":"2022-08-03T17:09:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:10:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:10:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=85.2Mi, Sys=20.4Mi, NumGC=301","level":"stat"}
+{"@timestamp":"2022-08-03T17:10:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:11:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:11:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=85.4Mi, Sys=20.4Mi, NumGC=302","level":"stat"}
+{"@timestamp":"2022-08-03T17:11:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:12:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:12:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=85.4Mi, Sys=20.4Mi, NumGC=302","level":"stat"}
+{"@timestamp":"2022-08-03T17:12:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:13:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:13:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=85.5Mi, Sys=20.4Mi, NumGC=303","level":"stat"}
+{"@timestamp":"2022-08-03T17:13:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:14:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:14:57.671+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=85.7Mi, Sys=20.4Mi, NumGC=303","level":"stat"}
+{"@timestamp":"2022-08-03T17:14:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:15:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:15:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=85.8Mi, Sys=20.4Mi, NumGC=304","level":"stat"}
+{"@timestamp":"2022-08-03T17:15:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:16:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:16:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=86.0Mi, Sys=20.4Mi, NumGC=304","level":"stat"}
+{"@timestamp":"2022-08-03T17:16:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:17:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:17:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=86.1Mi, Sys=20.4Mi, NumGC=305","level":"stat"}
+{"@timestamp":"2022-08-03T17:17:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:18:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:18:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=86.2Mi, Sys=20.4Mi, NumGC=305","level":"stat"}
+{"@timestamp":"2022-08-03T17:18:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:19:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:19:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=86.4Mi, Sys=20.4Mi, NumGC=306","level":"stat"}
+{"@timestamp":"2022-08-03T17:19:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:20:40.377+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:20:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=86.4Mi, Sys=20.4Mi, NumGC=306","level":"stat"}
+{"@timestamp":"2022-08-03T17:20:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:21:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:21:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=86.6Mi, Sys=20.4Mi, NumGC=307","level":"stat"}
+{"@timestamp":"2022-08-03T17:21:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:22:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:22:57.684+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=86.7Mi, Sys=20.4Mi, NumGC=307","level":"stat"}
+{"@timestamp":"2022-08-03T17:22:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:23:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:23:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=86.8Mi, Sys=20.4Mi, NumGC=308","level":"stat"}
+{"@timestamp":"2022-08-03T17:23:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:24:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:24:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=87.0Mi, Sys=20.4Mi, NumGC=308","level":"stat"}
+{"@timestamp":"2022-08-03T17:24:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:25:40.375+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:25:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=87.1Mi, Sys=20.4Mi, NumGC=309","level":"stat"}
+{"@timestamp":"2022-08-03T17:25:57.694+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:26:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:26:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=87.3Mi, Sys=20.4Mi, NumGC=309","level":"stat"}
+{"@timestamp":"2022-08-03T17:26:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:27:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:27:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=87.4Mi, Sys=20.4Mi, NumGC=310","level":"stat"}
+{"@timestamp":"2022-08-03T17:27:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:28:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:28:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=87.4Mi, Sys=20.4Mi, NumGC=310","level":"stat"}
+{"@timestamp":"2022-08-03T17:28:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:29:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:29:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=87.6Mi, Sys=20.4Mi, NumGC=311","level":"stat"}
+{"@timestamp":"2022-08-03T17:29:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:30:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:30:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=87.7Mi, Sys=20.4Mi, NumGC=311","level":"stat"}
+{"@timestamp":"2022-08-03T17:30:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:31:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:31:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=87.9Mi, Sys=20.4Mi, NumGC=312","level":"stat"}
+{"@timestamp":"2022-08-03T17:31:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:32:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:32:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=88.0Mi, Sys=20.4Mi, NumGC=312","level":"stat"}
+{"@timestamp":"2022-08-03T17:32:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:33:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:33:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=88.1Mi, Sys=20.4Mi, NumGC=313","level":"stat"}
+{"@timestamp":"2022-08-03T17:33:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:34:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:34:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=88.3Mi, Sys=20.4Mi, NumGC=313","level":"stat"}
+{"@timestamp":"2022-08-03T17:34:57.710+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:35:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:35:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=88.3Mi, Sys=20.4Mi, NumGC=314","level":"stat"}
+{"@timestamp":"2022-08-03T17:35:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:36:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:36:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=88.5Mi, Sys=20.4Mi, NumGC=314","level":"stat"}
+{"@timestamp":"2022-08-03T17:36:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:37:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:37:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=88.6Mi, Sys=20.4Mi, NumGC=315","level":"stat"}
+{"@timestamp":"2022-08-03T17:37:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:38:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:38:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=88.7Mi, Sys=20.4Mi, NumGC=315","level":"stat"}
+{"@timestamp":"2022-08-03T17:38:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:39:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:39:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=88.9Mi, Sys=20.4Mi, NumGC=316","level":"stat"}
+{"@timestamp":"2022-08-03T17:39:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:40:40.369+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:40:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=89.0Mi, Sys=20.4Mi, NumGC=316","level":"stat"}
+{"@timestamp":"2022-08-03T17:40:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:41:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:41:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=89.2Mi, Sys=20.4Mi, NumGC=317","level":"stat"}
+{"@timestamp":"2022-08-03T17:41:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:42:40.370+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:42:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=89.3Mi, Sys=20.4Mi, NumGC=317","level":"stat"}
+{"@timestamp":"2022-08-03T17:42:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:43:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:43:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=89.3Mi, Sys=20.4Mi, NumGC=318","level":"stat"}
+{"@timestamp":"2022-08-03T17:43:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:44:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:44:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=89.5Mi, Sys=20.4Mi, NumGC=318","level":"stat"}
+{"@timestamp":"2022-08-03T17:44:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:45:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:45:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=89.6Mi, Sys=20.4Mi, NumGC=319","level":"stat"}
+{"@timestamp":"2022-08-03T17:45:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:46:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:46:57.682+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=89.8Mi, Sys=20.4Mi, NumGC=319","level":"stat"}
+{"@timestamp":"2022-08-03T17:46:57.698+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:47:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:47:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=89.9Mi, Sys=20.4Mi, NumGC=320","level":"stat"}
+{"@timestamp":"2022-08-03T17:47:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:48:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:48:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=90.2Mi, Sys=20.4Mi, NumGC=320","level":"stat"}
+{"@timestamp":"2022-08-03T17:48:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:49:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:49:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=90.4Mi, Sys=20.4Mi, NumGC=321","level":"stat"}
+{"@timestamp":"2022-08-03T17:49:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:50:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:50:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=90.5Mi, Sys=20.4Mi, NumGC=321","level":"stat"}
+{"@timestamp":"2022-08-03T17:50:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:51:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:51:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=90.6Mi, Sys=20.4Mi, NumGC=322","level":"stat"}
+{"@timestamp":"2022-08-03T17:51:57.700+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:52:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:52:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=90.7Mi, Sys=20.4Mi, NumGC=322","level":"stat"}
+{"@timestamp":"2022-08-03T17:52:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:53:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:53:57.678+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=90.9Mi, Sys=20.4Mi, NumGC=323","level":"stat"}
+{"@timestamp":"2022-08-03T17:53:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:54:40.380+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:54:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=91.1Mi, Sys=20.4Mi, NumGC=323","level":"stat"}
+{"@timestamp":"2022-08-03T17:54:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:55:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:55:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=91.2Mi, Sys=20.4Mi, NumGC=324","level":"stat"}
+{"@timestamp":"2022-08-03T17:55:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:56:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:56:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=91.2Mi, Sys=20.4Mi, NumGC=324","level":"stat"}
+{"@timestamp":"2022-08-03T17:56:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:57:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:57:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=91.3Mi, Sys=20.4Mi, NumGC=325","level":"stat"}
+{"@timestamp":"2022-08-03T17:57:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:58:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:58:57.686+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=91.5Mi, Sys=20.4Mi, NumGC=325","level":"stat"}
+{"@timestamp":"2022-08-03T17:58:57.702+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T17:59:40.379+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T17:59:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=91.7Mi, Sys=20.4Mi, NumGC=326","level":"stat"}
+{"@timestamp":"2022-08-03T17:59:57.694+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:00:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:00:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=91.8Mi, Sys=20.4Mi, NumGC=326","level":"stat"}
+{"@timestamp":"2022-08-03T18:00:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:01:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:01:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=91.9Mi, Sys=20.4Mi, NumGC=327","level":"stat"}
+{"@timestamp":"2022-08-03T18:01:57.695+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:02:40.371+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:02:57.687+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=92.0Mi, Sys=20.4Mi, NumGC=327","level":"stat"}
+{"@timestamp":"2022-08-03T18:02:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:03:40.378+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:03:57.681+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=92.2Mi, Sys=20.4Mi, NumGC=328","level":"stat"}
+{"@timestamp":"2022-08-03T18:03:57.697+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:04:40.384+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:04:57.679+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=92.3Mi, Sys=20.4Mi, NumGC=328","level":"stat"}
+{"@timestamp":"2022-08-03T18:04:57.694+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:05:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:05:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=92.4Mi, Sys=20.4Mi, NumGC=329","level":"stat"}
+{"@timestamp":"2022-08-03T18:05:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:06:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:06:57.672+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=92.5Mi, Sys=20.4Mi, NumGC=329","level":"stat"}
+{"@timestamp":"2022-08-03T18:06:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:07:40.374+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:07:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=92.6Mi, Sys=20.4Mi, NumGC=330","level":"stat"}
+{"@timestamp":"2022-08-03T18:07:57.709+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:08:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:08:57.680+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=92.8Mi, Sys=20.4Mi, NumGC=330","level":"stat"}
+{"@timestamp":"2022-08-03T18:08:57.696+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:09:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:09:57.674+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=93.0Mi, Sys=20.4Mi, NumGC=331","level":"stat"}
+{"@timestamp":"2022-08-03T18:09:57.705+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:10:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:10:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=93.1Mi, Sys=20.4Mi, NumGC=331","level":"stat"}
+{"@timestamp":"2022-08-03T18:10:57.707+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:11:40.372+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:11:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=93.2Mi, Sys=20.4Mi, NumGC=332","level":"stat"}
+{"@timestamp":"2022-08-03T18:11:57.704+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:12:40.373+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:12:57.675+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=93.2Mi, Sys=20.4Mi, NumGC=332","level":"stat"}
+{"@timestamp":"2022-08-03T18:12:57.706+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:13:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:13:57.673+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=93.4Mi, Sys=20.4Mi, NumGC=333","level":"stat"}
+{"@timestamp":"2022-08-03T18:13:57.703+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:14:40.383+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:14:57.683+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=93.6Mi, Sys=20.4Mi, NumGC=333","level":"stat"}
+{"@timestamp":"2022-08-03T18:14:57.699+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:15:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:15:57.677+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=93.7Mi, Sys=20.4Mi, NumGC=334","level":"stat"}
+{"@timestamp":"2022-08-03T18:15:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:16:40.382+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:16:57.676+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=93.9Mi, Sys=20.4Mi, NumGC=334","level":"stat"}
+{"@timestamp":"2022-08-03T18:16:57.708+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:17:40.376+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:17:57.685+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=94.0Mi, Sys=20.4Mi, NumGC=335","level":"stat"}
+{"@timestamp":"2022-08-03T18:17:57.701+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:18:40.381+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:19:42.123+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 7730, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-03T18:20:13.888+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.7Mi, TotalAlloc=8.6Mi, Sys=19.4Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-03T18:20:14.200+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:20:44.067+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 2004.0ms, med: 2004.0ms, 90th: 2004.0ms, 99th: 2004.0ms, 99.9th: 2004.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:21:13.897+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=8.8Mi, Sys=19.4Mi, NumGC=4","level":"stat"}
+{"@timestamp":"2022-08-03T18:21:14.205+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:21:44.078+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:22:13.902+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=8.9Mi, Sys=19.7Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-03T18:22:14.211+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:22:44.070+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:22:53.614+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 8197, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-03T18:23:13.897+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.0Mi, Sys=19.7Mi, NumGC=5","level":"stat"}
+{"@timestamp":"2022-08-03T18:23:14.210+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:23:44.081+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 2003.0ms, med: 2003.1ms, 90th: 2003.1ms, 99th: 2003.1ms, 99.9th: 2003.1ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:24:13.893+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.1Mi, Sys=19.7Mi, NumGC=6","level":"stat"}
+{"@timestamp":"2022-08-03T18:24:14.206+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:24:44.072+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:24:45.510+08:00","caller":"p2c/p2c.go:181","content":"p2c - conn: 192.168.3.240:8092, load: 9644, reqs: 1","level":"stat"}
+{"@timestamp":"2022-08-03T18:25:13.900+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.2Mi, Sys=19.7Mi, NumGC=6","level":"stat"}
+{"@timestamp":"2022-08-03T18:25:14.211+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 1, pass: 1, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:25:44.073+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 2008.0ms, med: 2008.7ms, 90th: 2008.7ms, 99th: 2008.7ms, 99.9th: 2008.7ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:26:13.896+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.3Mi, Sys=19.7Mi, NumGC=7","level":"stat"}
+{"@timestamp":"2022-08-03T18:26:14.208+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:26:44.077+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:27:13.893+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=9.4Mi, Sys=19.7Mi, NumGC=7","level":"stat"}
+{"@timestamp":"2022-08-03T18:27:14.202+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:27:44.076+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:28:13.889+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.8Mi, TotalAlloc=9.5Mi, Sys=19.7Mi, NumGC=8","level":"stat"}
+{"@timestamp":"2022-08-03T18:28:14.199+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:28:44.069+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:29:13.891+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=9.9Mi, Sys=19.7Mi, NumGC=8","level":"stat"}
+{"@timestamp":"2022-08-03T18:29:14.206+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:29:44.082+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:30:13.900+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.2Mi, TotalAlloc=10.2Mi, Sys=19.7Mi, NumGC=9","level":"stat"}
+{"@timestamp":"2022-08-03T18:30:14.213+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:30:44.072+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:31:13.888+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.5Mi, TotalAlloc=10.5Mi, Sys=19.7Mi, NumGC=9","level":"stat"}
+{"@timestamp":"2022-08-03T18:31:14.204+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:31:44.078+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:32:13.890+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=10.5Mi, Sys=19.7Mi, NumGC=10","level":"stat"}
+{"@timestamp":"2022-08-03T18:32:14.199+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:32:44.080+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:33:13.902+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=10.6Mi, Sys=19.7Mi, NumGC=10","level":"stat"}
+{"@timestamp":"2022-08-03T18:33:14.212+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:33:44.074+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:34:13.893+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=10.7Mi, Sys=19.7Mi, NumGC=11","level":"stat"}
+{"@timestamp":"2022-08-03T18:34:14.204+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:34:44.073+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:35:13.896+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=10.9Mi, Sys=19.7Mi, NumGC=11","level":"stat"}
+{"@timestamp":"2022-08-03T18:35:14.204+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:35:44.072+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:36:13.891+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=11.0Mi, Sys=19.7Mi, NumGC=12","level":"stat"}
+{"@timestamp":"2022-08-03T18:36:14.209+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:36:44.082+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:37:13.898+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=11.1Mi, Sys=19.7Mi, NumGC=12","level":"stat"}
+{"@timestamp":"2022-08-03T18:37:14.208+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:37:44.073+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:38:13.898+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=11.2Mi, Sys=19.7Mi, NumGC=13","level":"stat"}
+{"@timestamp":"2022-08-03T18:38:14.209+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:38:44.076+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:39:13.896+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=11.3Mi, Sys=19.7Mi, NumGC=13","level":"stat"}
+{"@timestamp":"2022-08-03T18:39:14.207+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:39:44.082+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:40:13.900+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=11.5Mi, Sys=19.7Mi, NumGC=14","level":"stat"}
+{"@timestamp":"2022-08-03T18:40:14.199+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:40:44.067+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:41:13.892+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=11.5Mi, Sys=19.7Mi, NumGC=14","level":"stat"}
+{"@timestamp":"2022-08-03T18:41:14.203+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:41:44.075+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:42:13.897+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=11.6Mi, Sys=19.7Mi, NumGC=15","level":"stat"}
+{"@timestamp":"2022-08-03T18:42:14.211+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:42:44.072+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:43:13.894+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=11.7Mi, Sys=19.7Mi, NumGC=15","level":"stat"}
+{"@timestamp":"2022-08-03T18:43:14.208+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:43:44.068+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:44:13.888+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=11.8Mi, Sys=19.7Mi, NumGC=16","level":"stat"}
+{"@timestamp":"2022-08-03T18:44:14.201+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:44:44.077+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:45:13.900+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=12.0Mi, Sys=19.7Mi, NumGC=16","level":"stat"}
+{"@timestamp":"2022-08-03T18:45:14.214+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:45:44.068+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:46:13.894+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.1Mi, Sys=19.7Mi, NumGC=17","level":"stat"}
+{"@timestamp":"2022-08-03T18:46:14.202+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:46:44.082+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:47:13.900+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.2Mi, Sys=19.7Mi, NumGC=17","level":"stat"}
+{"@timestamp":"2022-08-03T18:47:14.211+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:47:44.082+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:48:13.898+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.3Mi, Sys=19.7Mi, NumGC=18","level":"stat"}
+{"@timestamp":"2022-08-03T18:48:14.211+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:48:44.070+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:49:13.892+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.3Mi, Sys=19.7Mi, NumGC=18","level":"stat"}
+{"@timestamp":"2022-08-03T18:49:14.203+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:49:44.076+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:50:13.899+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=12.5Mi, Sys=19.7Mi, NumGC=19","level":"stat"}
+{"@timestamp":"2022-08-03T18:50:14.208+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:50:44.068+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:51:13.895+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=12.6Mi, Sys=19.7Mi, NumGC=19","level":"stat"}
+{"@timestamp":"2022-08-03T18:51:14.204+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:51:44.069+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:52:13.897+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.7Mi, Sys=19.7Mi, NumGC=20","level":"stat"}
+{"@timestamp":"2022-08-03T18:52:14.207+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:52:44.077+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:53:13.894+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.8Mi, Sys=19.7Mi, NumGC=20","level":"stat"}
+{"@timestamp":"2022-08-03T18:53:14.207+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:53:44.072+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:54:13.894+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=12.9Mi, Sys=19.7Mi, NumGC=21","level":"stat"}
+{"@timestamp":"2022-08-03T18:54:14.203+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:54:44.081+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:55:13.900+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=13.1Mi, Sys=19.7Mi, NumGC=21","level":"stat"}
+{"@timestamp":"2022-08-03T18:55:14.211+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:55:44.074+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:56:13.889+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=13.2Mi, Sys=19.7Mi, NumGC=22","level":"stat"}
+{"@timestamp":"2022-08-03T18:56:14.214+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:56:44.077+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:57:13.901+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=13.3Mi, Sys=19.7Mi, NumGC=22","level":"stat"}
+{"@timestamp":"2022-08-03T18:57:14.211+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:57:44.078+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:58:13.895+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=13.4Mi, Sys=19.7Mi, NumGC=23","level":"stat"}
+{"@timestamp":"2022-08-03T18:58:14.205+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:58:44.072+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T18:59:13.889+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=13.4Mi, Sys=19.7Mi, NumGC=23","level":"stat"}
+{"@timestamp":"2022-08-03T18:59:14.199+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T18:59:44.072+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:00:13.898+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=13.6Mi, Sys=19.7Mi, NumGC=24","level":"stat"}
+{"@timestamp":"2022-08-03T19:00:14.207+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:00:44.081+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:01:13.895+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=13.7Mi, Sys=19.7Mi, NumGC=24","level":"stat"}
+{"@timestamp":"2022-08-03T19:01:14.205+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:01:44.073+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:02:13.887+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=13.8Mi, Sys=19.7Mi, NumGC=25","level":"stat"}
+{"@timestamp":"2022-08-03T19:02:14.211+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:02:44.068+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:03:13.890+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=13.9Mi, Sys=19.7Mi, NumGC=25","level":"stat"}
+{"@timestamp":"2022-08-03T19:03:14.212+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:03:44.072+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:04:13.899+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.0Mi, Sys=19.7Mi, NumGC=26","level":"stat"}
+{"@timestamp":"2022-08-03T19:04:14.211+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:04:44.080+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:05:13.903+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=14.2Mi, Sys=19.7Mi, NumGC=26","level":"stat"}
+{"@timestamp":"2022-08-03T19:05:14.211+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:05:44.076+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:06:13.896+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.3Mi, Sys=19.7Mi, NumGC=27","level":"stat"}
+{"@timestamp":"2022-08-03T19:06:14.207+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:06:44.082+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:07:13.888+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.4Mi, Sys=19.7Mi, NumGC=27","level":"stat"}
+{"@timestamp":"2022-08-03T19:07:14.199+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:07:44.076+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:08:13.901+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.4Mi, Sys=19.7Mi, NumGC=28","level":"stat"}
+{"@timestamp":"2022-08-03T19:08:14.210+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:08:44.079+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:09:13.893+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.5Mi, Sys=19.7Mi, NumGC=28","level":"stat"}
+{"@timestamp":"2022-08-03T19:09:14.201+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:09:44.073+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:10:13.891+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=14.7Mi, Sys=19.7Mi, NumGC=29","level":"stat"}
+{"@timestamp":"2022-08-03T19:10:14.201+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:10:44.076+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:11:13.894+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=14.8Mi, Sys=19.7Mi, NumGC=29","level":"stat"}
+{"@timestamp":"2022-08-03T19:11:14.205+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:11:44.068+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:12:13.895+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=14.9Mi, Sys=19.7Mi, NumGC=30","level":"stat"}
+{"@timestamp":"2022-08-03T19:12:14.206+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:12:44.072+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:13:13.889+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=15.0Mi, Sys=19.7Mi, NumGC=30","level":"stat"}
+{"@timestamp":"2022-08-03T19:13:14.198+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:13:44.075+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:14:13.891+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=15.1Mi, Sys=19.7Mi, NumGC=31","level":"stat"}
+{"@timestamp":"2022-08-03T19:14:14.213+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:14:44.081+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:15:13.899+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=15.3Mi, Sys=19.7Mi, NumGC=31","level":"stat"}
+{"@timestamp":"2022-08-03T19:15:14.208+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:15:44.067+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:16:13.896+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=15.3Mi, Sys=19.7Mi, NumGC=32","level":"stat"}
+{"@timestamp":"2022-08-03T19:16:14.207+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:16:44.079+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:17:13.888+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=15.4Mi, Sys=19.7Mi, NumGC=32","level":"stat"}
+{"@timestamp":"2022-08-03T19:17:14.199+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:17:44.072+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:18:13.895+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=15.5Mi, Sys=19.7Mi, NumGC=33","level":"stat"}
+{"@timestamp":"2022-08-03T19:18:14.204+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:18:44.078+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:19:13.901+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=15.6Mi, Sys=19.7Mi, NumGC=33","level":"stat"}
+{"@timestamp":"2022-08-03T19:19:14.212+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:19:44.082+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:20:13.899+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=15.8Mi, Sys=19.7Mi, NumGC=34","level":"stat"}
+{"@timestamp":"2022-08-03T19:20:14.208+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:20:44.077+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:21:13.900+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=15.9Mi, Sys=19.7Mi, NumGC=34","level":"stat"}
+{"@timestamp":"2022-08-03T19:21:14.211+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:21:44.069+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:22:13.892+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=16.0Mi, Sys=19.7Mi, NumGC=35","level":"stat"}
+{"@timestamp":"2022-08-03T19:22:14.199+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:22:44.081+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:23:13.898+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=16.1Mi, Sys=19.7Mi, NumGC=35","level":"stat"}
+{"@timestamp":"2022-08-03T19:23:14.208+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:23:44.079+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:24:13.902+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=16.1Mi, Sys=19.7Mi, NumGC=36","level":"stat"}
+{"@timestamp":"2022-08-03T19:24:14.212+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:24:44.078+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:25:13.899+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=16.3Mi, Sys=19.7Mi, NumGC=36","level":"stat"}
+{"@timestamp":"2022-08-03T19:25:14.209+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:25:44.070+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:26:13.901+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=16.4Mi, Sys=19.7Mi, NumGC=37","level":"stat"}
+{"@timestamp":"2022-08-03T19:26:14.212+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:26:44.080+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:27:13.890+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=16.5Mi, Sys=19.7Mi, NumGC=37","level":"stat"}
+{"@timestamp":"2022-08-03T19:27:14.202+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:27:44.069+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:28:13.889+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=16.6Mi, Sys=19.7Mi, NumGC=38","level":"stat"}
+{"@timestamp":"2022-08-03T19:28:14.213+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:28:44.075+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:29:13.899+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=16.7Mi, Sys=19.7Mi, NumGC=38","level":"stat"}
+{"@timestamp":"2022-08-03T19:29:14.209+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:29:44.077+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:30:13.898+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=16.9Mi, Sys=19.7Mi, NumGC=39","level":"stat"}
+{"@timestamp":"2022-08-03T19:30:14.208+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:30:44.071+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:31:13.897+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=17.0Mi, Sys=19.7Mi, NumGC=39","level":"stat"}
+{"@timestamp":"2022-08-03T19:31:14.207+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:31:44.072+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:32:13.892+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=17.1Mi, Sys=19.7Mi, NumGC=40","level":"stat"}
+{"@timestamp":"2022-08-03T19:32:14.200+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:32:44.077+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:33:13.894+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=17.1Mi, Sys=19.7Mi, NumGC=40","level":"stat"}
+{"@timestamp":"2022-08-03T19:33:14.203+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:33:44.076+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:34:13.893+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=17.2Mi, Sys=19.7Mi, NumGC=41","level":"stat"}
+{"@timestamp":"2022-08-03T19:34:14.202+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:34:44.083+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:35:13.897+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=17.4Mi, Sys=19.7Mi, NumGC=41","level":"stat"}
+{"@timestamp":"2022-08-03T19:35:14.208+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:35:44.074+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:36:13.900+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=17.5Mi, Sys=19.7Mi, NumGC=42","level":"stat"}
+{"@timestamp":"2022-08-03T19:36:14.210+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:36:44.079+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:37:13.900+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=17.6Mi, Sys=19.7Mi, NumGC=42","level":"stat"}
+{"@timestamp":"2022-08-03T19:37:14.209+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:37:44.077+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:38:13.892+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=17.7Mi, Sys=19.7Mi, NumGC=43","level":"stat"}
+{"@timestamp":"2022-08-03T19:38:14.202+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:38:44.075+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:39:13.897+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=17.8Mi, Sys=19.7Mi, NumGC=43","level":"stat"}
+{"@timestamp":"2022-08-03T19:39:14.206+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:39:44.080+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:40:13.898+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=18.0Mi, Sys=19.7Mi, NumGC=44","level":"stat"}
+{"@timestamp":"2022-08-03T19:40:14.208+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:40:44.076+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:41:13.899+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=18.1Mi, Sys=19.7Mi, NumGC=44","level":"stat"}
+{"@timestamp":"2022-08-03T19:41:14.209+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:41:44.071+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:42:13.893+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=18.1Mi, Sys=19.7Mi, NumGC=45","level":"stat"}
+{"@timestamp":"2022-08-03T19:42:14.203+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:42:44.070+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:43:13.895+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=18.2Mi, Sys=19.7Mi, NumGC=45","level":"stat"}
+{"@timestamp":"2022-08-03T19:43:14.202+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:43:44.068+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:44:13.894+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=18.3Mi, Sys=19.7Mi, NumGC=46","level":"stat"}
+{"@timestamp":"2022-08-03T19:44:14.205+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:44:44.077+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:45:13.902+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=18.5Mi, Sys=19.7Mi, NumGC=46","level":"stat"}
+{"@timestamp":"2022-08-03T19:45:14.211+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:45:44.077+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:46:13.902+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=18.6Mi, Sys=19.7Mi, NumGC=47","level":"stat"}
+{"@timestamp":"2022-08-03T19:46:14.211+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:46:44.075+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:47:13.896+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=18.7Mi, Sys=19.7Mi, NumGC=47","level":"stat"}
+{"@timestamp":"2022-08-03T19:47:14.206+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:47:44.070+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:48:13.888+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=18.8Mi, Sys=19.7Mi, NumGC=48","level":"stat"}
+{"@timestamp":"2022-08-03T19:48:14.199+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:48:44.070+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:49:13.901+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=18.9Mi, Sys=19.7Mi, NumGC=48","level":"stat"}
+{"@timestamp":"2022-08-03T19:49:14.212+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:49:44.076+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:50:13.894+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=19.0Mi, Sys=19.7Mi, NumGC=49","level":"stat"}
+{"@timestamp":"2022-08-03T19:50:14.202+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:50:44.074+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:51:13.901+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=19.1Mi, Sys=19.7Mi, NumGC=49","level":"stat"}
+{"@timestamp":"2022-08-03T19:51:14.211+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:51:44.077+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:52:13.892+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=19.2Mi, Sys=19.7Mi, NumGC=50","level":"stat"}
+{"@timestamp":"2022-08-03T19:52:14.201+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:52:44.081+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:53:13.890+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=19.3Mi, Sys=19.7Mi, NumGC=50","level":"stat"}
+{"@timestamp":"2022-08-03T19:53:14.199+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:53:44.077+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:54:13.900+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=19.4Mi, Sys=19.7Mi, NumGC=51","level":"stat"}
+{"@timestamp":"2022-08-03T19:54:14.209+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:54:44.073+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:55:13.892+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=19.6Mi, Sys=19.7Mi, NumGC=51","level":"stat"}
+{"@timestamp":"2022-08-03T19:55:14.213+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:55:44.079+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:56:13.894+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=19.7Mi, Sys=19.7Mi, NumGC=52","level":"stat"}
+{"@timestamp":"2022-08-03T19:56:14.202+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:56:44.079+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:57:13.888+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=19.8Mi, Sys=19.7Mi, NumGC=52","level":"stat"}
+{"@timestamp":"2022-08-03T19:57:14.213+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:57:44.079+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:58:13.899+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=19.8Mi, Sys=19.7Mi, NumGC=53","level":"stat"}
+{"@timestamp":"2022-08-03T19:58:14.210+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:58:44.080+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T19:59:13.901+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=19.9Mi, Sys=19.7Mi, NumGC=53","level":"stat"}
+{"@timestamp":"2022-08-03T19:59:14.211+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T19:59:44.077+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:00:13.891+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=20.1Mi, Sys=19.7Mi, NumGC=54","level":"stat"}
+{"@timestamp":"2022-08-03T20:00:14.198+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:00:44.078+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:01:13.887+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=20.2Mi, Sys=19.7Mi, NumGC=54","level":"stat"}
+{"@timestamp":"2022-08-03T20:01:14.213+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:01:44.077+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:02:13.895+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=20.3Mi, Sys=19.7Mi, NumGC=55","level":"stat"}
+{"@timestamp":"2022-08-03T20:02:14.205+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:02:44.072+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:03:13.901+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=20.4Mi, Sys=19.7Mi, NumGC=55","level":"stat"}
+{"@timestamp":"2022-08-03T20:03:14.210+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:03:44.081+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:04:13.897+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=20.5Mi, Sys=19.7Mi, NumGC=56","level":"stat"}
+{"@timestamp":"2022-08-03T20:04:14.207+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:04:44.076+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:05:13.892+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=20.7Mi, Sys=19.7Mi, NumGC=56","level":"stat"}
+{"@timestamp":"2022-08-03T20:05:14.200+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:05:44.079+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:06:13.897+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=20.7Mi, Sys=19.7Mi, NumGC=57","level":"stat"}
+{"@timestamp":"2022-08-03T20:06:14.205+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:06:44.072+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:07:13.894+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=20.8Mi, Sys=19.7Mi, NumGC=57","level":"stat"}
+{"@timestamp":"2022-08-03T20:07:14.210+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:07:44.081+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:08:13.892+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=20.9Mi, Sys=19.7Mi, NumGC=58","level":"stat"}
+{"@timestamp":"2022-08-03T20:08:14.205+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:08:44.072+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:09:13.888+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=21.0Mi, Sys=19.7Mi, NumGC=58","level":"stat"}
+{"@timestamp":"2022-08-03T20:09:14.213+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:09:44.072+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:10:13.899+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=21.2Mi, Sys=19.7Mi, NumGC=59","level":"stat"}
+{"@timestamp":"2022-08-03T20:10:14.209+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:10:44.080+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:11:13.887+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=21.3Mi, Sys=19.7Mi, NumGC=59","level":"stat"}
+{"@timestamp":"2022-08-03T20:11:14.198+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:11:44.069+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:12:13.898+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=21.4Mi, Sys=19.7Mi, NumGC=60","level":"stat"}
+{"@timestamp":"2022-08-03T20:12:14.211+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:12:44.070+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:13:13.894+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=21.5Mi, Sys=19.7Mi, NumGC=60","level":"stat"}
+{"@timestamp":"2022-08-03T20:13:14.205+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:13:44.080+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:14:13.890+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=21.5Mi, Sys=19.7Mi, NumGC=61","level":"stat"}
+{"@timestamp":"2022-08-03T20:14:14.203+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:14:44.078+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:15:13.892+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=21.7Mi, Sys=19.7Mi, NumGC=61","level":"stat"}
+{"@timestamp":"2022-08-03T20:15:14.201+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:15:44.081+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:16:13.892+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=21.8Mi, Sys=19.7Mi, NumGC=62","level":"stat"}
+{"@timestamp":"2022-08-03T20:16:14.202+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:16:44.072+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:17:13.892+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=21.9Mi, Sys=19.7Mi, NumGC=62","level":"stat"}
+{"@timestamp":"2022-08-03T20:17:14.203+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:17:44.071+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:18:13.893+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=22.0Mi, Sys=19.7Mi, NumGC=63","level":"stat"}
+{"@timestamp":"2022-08-03T20:18:14.202+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:18:44.068+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:19:13.891+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=22.1Mi, Sys=19.7Mi, NumGC=63","level":"stat"}
+{"@timestamp":"2022-08-03T20:19:14.199+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:19:44.076+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:20:13.892+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=22.3Mi, Sys=19.7Mi, NumGC=64","level":"stat"}
+{"@timestamp":"2022-08-03T20:20:14.200+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:20:44.072+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:21:13.897+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=22.4Mi, Sys=19.7Mi, NumGC=64","level":"stat"}
+{"@timestamp":"2022-08-03T20:21:14.208+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:21:44.074+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:22:13.896+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=22.4Mi, Sys=19.7Mi, NumGC=65","level":"stat"}
+{"@timestamp":"2022-08-03T20:22:14.208+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:22:44.082+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:23:13.903+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=22.5Mi, Sys=19.7Mi, NumGC=65","level":"stat"}
+{"@timestamp":"2022-08-03T20:23:14.214+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:23:44.069+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:24:13.892+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=22.6Mi, Sys=19.7Mi, NumGC=66","level":"stat"}
+{"@timestamp":"2022-08-03T20:24:14.200+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:24:44.072+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:25:13.888+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=22.8Mi, Sys=19.7Mi, NumGC=66","level":"stat"}
+{"@timestamp":"2022-08-03T20:25:14.213+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:25:44.078+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:26:13.899+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=22.9Mi, Sys=19.9Mi, NumGC=67","level":"stat"}
+{"@timestamp":"2022-08-03T20:26:14.210+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:26:44.068+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:27:13.889+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=23.0Mi, Sys=19.9Mi, NumGC=67","level":"stat"}
+{"@timestamp":"2022-08-03T20:27:14.201+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:27:44.081+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:28:13.902+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=23.1Mi, Sys=19.9Mi, NumGC=68","level":"stat"}
+{"@timestamp":"2022-08-03T20:28:14.211+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:28:44.081+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:29:13.898+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=23.2Mi, Sys=19.9Mi, NumGC=68","level":"stat"}
+{"@timestamp":"2022-08-03T20:29:14.207+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:29:44.070+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:30:13.897+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=23.3Mi, Sys=19.9Mi, NumGC=69","level":"stat"}
+{"@timestamp":"2022-08-03T20:30:14.214+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:30:44.082+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:31:13.887+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=23.4Mi, Sys=19.9Mi, NumGC=69","level":"stat"}
+{"@timestamp":"2022-08-03T20:31:14.205+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:31:44.069+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:32:13.892+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=23.5Mi, Sys=19.9Mi, NumGC=70","level":"stat"}
+{"@timestamp":"2022-08-03T20:32:14.207+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:32:44.068+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:33:13.894+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=23.6Mi, Sys=19.9Mi, NumGC=70","level":"stat"}
+{"@timestamp":"2022-08-03T20:33:14.205+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:33:44.073+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:34:13.899+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=23.7Mi, Sys=19.9Mi, NumGC=71","level":"stat"}
+{"@timestamp":"2022-08-03T20:34:14.207+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:34:44.071+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:35:13.896+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=23.9Mi, Sys=19.9Mi, NumGC=71","level":"stat"}
+{"@timestamp":"2022-08-03T20:35:14.209+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:35:44.081+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:36:13.897+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=24.0Mi, Sys=19.9Mi, NumGC=72","level":"stat"}
+{"@timestamp":"2022-08-03T20:36:14.208+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:36:44.082+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:37:13.892+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=24.1Mi, Sys=19.9Mi, NumGC=72","level":"stat"}
+{"@timestamp":"2022-08-03T20:37:14.203+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:37:44.069+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:38:13.895+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=24.1Mi, Sys=19.9Mi, NumGC=73","level":"stat"}
+{"@timestamp":"2022-08-03T20:38:14.209+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:38:44.068+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:39:13.902+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=24.2Mi, Sys=19.9Mi, NumGC=73","level":"stat"}
+{"@timestamp":"2022-08-03T20:39:14.211+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:39:44.081+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:40:13.901+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=24.4Mi, Sys=19.9Mi, NumGC=74","level":"stat"}
+{"@timestamp":"2022-08-03T20:40:14.213+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:40:44.080+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T20:41:13.895+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.0Mi, TotalAlloc=24.5Mi, Sys=19.9Mi, NumGC=74","level":"stat"}
+{"@timestamp":"2022-08-03T20:41:14.202+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T20:41:44.070+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T23:42:10.538+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=4.9Mi, TotalAlloc=24.6Mi, Sys=19.9Mi, NumGC=75","level":"stat"}
+{"@timestamp":"2022-08-03T23:42:10.538+08:00","caller":"stat/metrics.go:210","content":"(marketing.rpc) - qps: 0.0/s, drops: 0, avg time: 0.0ms, med: 0.0ms, 90th: 0.0ms, 99th: 0.0ms, 99.9th: 0.0ms","level":"stat"}
+{"@timestamp":"2022-08-03T23:42:10.539+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T23:42:14.239+08:00","caller":"load/sheddingstat.go:61","content":"(rpc) shedding_stat [1m], cpu: 0, total: 0, pass: 0, drop: 0","level":"stat"}
+{"@timestamp":"2022-08-03T23:42:18.330+08:00","caller":"stat/usage.go:61","content":"CPU: 0m, MEMORY: Alloc=5.1Mi, TotalAlloc=24.9Mi, Sys=19.9Mi, NumGC=76","level":"stat"}

+ 11 - 1
rpc/marketing.proto

@@ -20,6 +20,7 @@ message AppointmentInfoReq{
 	int64 productId =1;
 	string appId=2;
 	string userId=3;
+	int64 useProductType =4; //商品类型0普通的1线上课程
 }
 
 message AppointmentInfoResp{
@@ -31,6 +32,15 @@ message AppointmentInfoResp{
 	int64 preheatStartTime=6;//预热开始时间
 	int64 preheatEndTime =7 ;//预热结束时间
 	int64 preheatStatus=8;//预约状态 1已预约 0未预约
+	string error_msg =9;
+	int64 error_code=10;
+	int64 stockNumber=11;//库存
+}
+
+message IsAppointmentReq{
+	string userId =1;
+	int64 activityId=2;
+	string appId=3;
 }
 
 
@@ -40,5 +50,5 @@ service marketing {
     //预热信息
     rpc AppointmentInfo(AppointmentInfoReq) returns(AppointmentInfoResp);
     //用户是否预约
-    rpc IsAppointment(AppointmentAddReq) returns(Resp);
+    rpc IsAppointment(IsAppointmentReq) returns(Resp);
 }

+ 3 - 2
rpc/marketing/marketing.go

@@ -16,6 +16,7 @@ type (
 	AppointmentAddReq   = pb.AppointmentAddReq
 	AppointmentInfoReq  = pb.AppointmentInfoReq
 	AppointmentInfoResp = pb.AppointmentInfoResp
+	IsAppointmentReq    = pb.IsAppointmentReq
 	Resp                = pb.Resp
 
 	Marketing interface {
@@ -24,7 +25,7 @@ type (
 		// 预热信息
 		AppointmentInfo(ctx context.Context, in *AppointmentInfoReq, opts ...grpc.CallOption) (*AppointmentInfoResp, error)
 		// 用户是否预约
-		IsAppointment(ctx context.Context, in *AppointmentAddReq, opts ...grpc.CallOption) (*Resp, error)
+		IsAppointment(ctx context.Context, in *IsAppointmentReq, opts ...grpc.CallOption) (*Resp, error)
 	}
 
 	defaultMarketing struct {
@@ -51,7 +52,7 @@ func (m *defaultMarketing) AppointmentInfo(ctx context.Context, in *AppointmentI
 }
 
 // 用户是否预约
-func (m *defaultMarketing) IsAppointment(ctx context.Context, in *AppointmentAddReq, opts ...grpc.CallOption) (*Resp, error) {
+func (m *defaultMarketing) IsAppointment(ctx context.Context, in *IsAppointmentReq, opts ...grpc.CallOption) (*Resp, error) {
 	client := pb.NewMarketingClient(m.cli.Conn())
 	return client.IsAppointment(ctx, in, opts...)
 }

+ 166 - 43
rpc/pb/marketing.pb.go

@@ -160,9 +160,10 @@ type AppointmentInfoReq struct {
 	sizeCache     protoimpl.SizeCache
 	unknownFields protoimpl.UnknownFields
 
-	ProductId int64  `protobuf:"varint,1,opt,name=productId,proto3" json:"productId,omitempty"`
-	AppId     string `protobuf:"bytes,2,opt,name=appId,proto3" json:"appId,omitempty"`
-	UserId    string `protobuf:"bytes,3,opt,name=userId,proto3" json:"userId,omitempty"`
+	ProductId      int64  `protobuf:"varint,1,opt,name=productId,proto3" json:"productId,omitempty"`
+	AppId          string `protobuf:"bytes,2,opt,name=appId,proto3" json:"appId,omitempty"`
+	UserId         string `protobuf:"bytes,3,opt,name=userId,proto3" json:"userId,omitempty"`
+	UseProductType int64  `protobuf:"varint,4,opt,name=useProductType,proto3" json:"useProductType,omitempty"` //商品类型0普通的1线上课程
 }
 
 func (x *AppointmentInfoReq) Reset() {
@@ -218,6 +219,13 @@ func (x *AppointmentInfoReq) GetUserId() string {
 	return ""
 }
 
+func (x *AppointmentInfoReq) GetUseProductType() int64 {
+	if x != nil {
+		return x.UseProductType
+	}
+	return 0
+}
+
 type AppointmentInfoResp struct {
 	state         protoimpl.MessageState
 	sizeCache     protoimpl.SizeCache
@@ -231,6 +239,9 @@ type AppointmentInfoResp struct {
 	PreheatStartTime int64  `protobuf:"varint,6,opt,name=preheatStartTime,proto3" json:"preheatStartTime,omitempty"` //预热开始时间
 	PreheatEndTime   int64  `protobuf:"varint,7,opt,name=preheatEndTime,proto3" json:"preheatEndTime,omitempty"`     //预热结束时间
 	PreheatStatus    int64  `protobuf:"varint,8,opt,name=preheatStatus,proto3" json:"preheatStatus,omitempty"`       //预约状态 1已预约 0未预约
+	ErrorMsg         string `protobuf:"bytes,9,opt,name=error_msg,json=errorMsg,proto3" json:"error_msg,omitempty"`
+	ErrorCode        int64  `protobuf:"varint,10,opt,name=error_code,json=errorCode,proto3" json:"error_code,omitempty"`
+	StockNumber      int64  `protobuf:"varint,11,opt,name=stockNumber,proto3" json:"stockNumber,omitempty"` //库存
 }
 
 func (x *AppointmentInfoResp) Reset() {
@@ -321,6 +332,90 @@ func (x *AppointmentInfoResp) GetPreheatStatus() int64 {
 	return 0
 }
 
+func (x *AppointmentInfoResp) GetErrorMsg() string {
+	if x != nil {
+		return x.ErrorMsg
+	}
+	return ""
+}
+
+func (x *AppointmentInfoResp) GetErrorCode() int64 {
+	if x != nil {
+		return x.ErrorCode
+	}
+	return 0
+}
+
+func (x *AppointmentInfoResp) GetStockNumber() int64 {
+	if x != nil {
+		return x.StockNumber
+	}
+	return 0
+}
+
+type IsAppointmentReq struct {
+	state         protoimpl.MessageState
+	sizeCache     protoimpl.SizeCache
+	unknownFields protoimpl.UnknownFields
+
+	UserId     string `protobuf:"bytes,1,opt,name=userId,proto3" json:"userId,omitempty"`
+	ActivityId int64  `protobuf:"varint,2,opt,name=activityId,proto3" json:"activityId,omitempty"`
+	AppId      string `protobuf:"bytes,3,opt,name=appId,proto3" json:"appId,omitempty"`
+}
+
+func (x *IsAppointmentReq) Reset() {
+	*x = IsAppointmentReq{}
+	if protoimpl.UnsafeEnabled {
+		mi := &file_marketing_proto_msgTypes[4]
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		ms.StoreMessageInfo(mi)
+	}
+}
+
+func (x *IsAppointmentReq) String() string {
+	return protoimpl.X.MessageStringOf(x)
+}
+
+func (*IsAppointmentReq) ProtoMessage() {}
+
+func (x *IsAppointmentReq) ProtoReflect() protoreflect.Message {
+	mi := &file_marketing_proto_msgTypes[4]
+	if protoimpl.UnsafeEnabled && x != nil {
+		ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
+		if ms.LoadMessageInfo() == nil {
+			ms.StoreMessageInfo(mi)
+		}
+		return ms
+	}
+	return mi.MessageOf(x)
+}
+
+// Deprecated: Use IsAppointmentReq.ProtoReflect.Descriptor instead.
+func (*IsAppointmentReq) Descriptor() ([]byte, []int) {
+	return file_marketing_proto_rawDescGZIP(), []int{4}
+}
+
+func (x *IsAppointmentReq) GetUserId() string {
+	if x != nil {
+		return x.UserId
+	}
+	return ""
+}
+
+func (x *IsAppointmentReq) GetActivityId() int64 {
+	if x != nil {
+		return x.ActivityId
+	}
+	return 0
+}
+
+func (x *IsAppointmentReq) GetAppId() string {
+	if x != nil {
+		return x.AppId
+	}
+	return ""
+}
+
 var File_marketing_proto protoreflect.FileDescriptor
 
 var file_marketing_proto_rawDesc = []byte{
@@ -339,43 +434,58 @@ var file_marketing_proto_rawDesc = []byte{
 	0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x12,
 	0x26, 0x0a, 0x0e, 0x75, 0x73, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70,
 	0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x75, 0x73, 0x65, 0x50, 0x72, 0x6f, 0x64,
-	0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x22, 0x60, 0x0a, 0x12, 0x41, 0x70, 0x70, 0x6f, 0x69,
-	0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x1c, 0x0a,
-	0x09, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03,
-	0x52, 0x09, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x61,
-	0x70, 0x70, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70, 0x49,
-	0x64, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
-	0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x22, 0xaf, 0x02, 0x0a, 0x13, 0x41, 0x70,
-	0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73,
-	0x70, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x01,
-	0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x73, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12,
-	0x18, 0x0a, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
-	0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x61, 0x63, 0x74,
-	0x69, 0x76, 0x69, 0x74, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52,
-	0x0c, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x22, 0x0a,
-	0x0c, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20,
-	0x01, 0x28, 0x03, 0x52, 0x0c, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x54, 0x79, 0x70,
-	0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x49, 0x64, 0x18,
-	0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x49,
-	0x64, 0x12, 0x2a, 0x0a, 0x10, 0x70, 0x72, 0x65, 0x68, 0x65, 0x61, 0x74, 0x53, 0x74, 0x61, 0x72,
-	0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x10, 0x70, 0x72, 0x65,
-	0x68, 0x65, 0x61, 0x74, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a,
-	0x0e, 0x70, 0x72, 0x65, 0x68, 0x65, 0x61, 0x74, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18,
-	0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x70, 0x72, 0x65, 0x68, 0x65, 0x61, 0x74, 0x45, 0x6e,
-	0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x24, 0x0a, 0x0d, 0x70, 0x72, 0x65, 0x68, 0x65, 0x61, 0x74,
-	0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x70, 0x72,
-	0x65, 0x68, 0x65, 0x61, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x32, 0xa2, 0x01, 0x0a, 0x09,
-	0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69, 0x6e, 0x67, 0x12, 0x2b, 0x0a, 0x0e, 0x41, 0x70, 0x70,
-	0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x64, 0x64, 0x12, 0x12, 0x2e, 0x41, 0x70,
-	0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x1a,
-	0x05, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x12, 0x3c, 0x0a, 0x0f, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e,
-	0x74, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x13, 0x2e, 0x41, 0x70, 0x70, 0x6f,
-	0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x14,
-	0x2e, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f,
-	0x52, 0x65, 0x73, 0x70, 0x12, 0x2a, 0x0a, 0x0d, 0x49, 0x73, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e,
-	0x74, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x12, 0x2e, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d,
-	0x65, 0x6e, 0x74, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x05, 0x2e, 0x52, 0x65, 0x73, 0x70,
-	0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
+	0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x22, 0x88, 0x01, 0x0a, 0x12, 0x41, 0x70, 0x70, 0x6f,
+	0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x12, 0x1c,
+	0x0a, 0x09, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
+	0x03, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x64, 0x12, 0x14, 0x0a, 0x05,
+	0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61, 0x70, 0x70,
+	0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01,
+	0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x73,
+	0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01,
+	0x28, 0x03, 0x52, 0x0e, 0x75, 0x73, 0x65, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x54, 0x79,
+	0x70, 0x65, 0x22, 0x8d, 0x03, 0x0a, 0x13, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65,
+	0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x74,
+	0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x73,
+	0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x65, 0x6e, 0x64, 0x54,
+	0x69, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69,
+	0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x4e, 0x61,
+	0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69,
+	0x74, 0x79, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x22, 0x0a, 0x0c, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69,
+	0x74, 0x79, 0x54, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x61, 0x63,
+	0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1e, 0x0a, 0x0a, 0x61, 0x63,
+	0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x49, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
+	0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x49, 0x64, 0x12, 0x2a, 0x0a, 0x10, 0x70, 0x72,
+	0x65, 0x68, 0x65, 0x61, 0x74, 0x53, 0x74, 0x61, 0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06,
+	0x20, 0x01, 0x28, 0x03, 0x52, 0x10, 0x70, 0x72, 0x65, 0x68, 0x65, 0x61, 0x74, 0x53, 0x74, 0x61,
+	0x72, 0x74, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x70, 0x72, 0x65, 0x68, 0x65, 0x61,
+	0x74, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e,
+	0x70, 0x72, 0x65, 0x68, 0x65, 0x61, 0x74, 0x45, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x24,
+	0x0a, 0x0d, 0x70, 0x72, 0x65, 0x68, 0x65, 0x61, 0x74, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
+	0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x70, 0x72, 0x65, 0x68, 0x65, 0x61, 0x74, 0x53, 0x74,
+	0x61, 0x74, 0x75, 0x73, 0x12, 0x1b, 0x0a, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x6d, 0x73,
+	0x67, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x4d, 0x73,
+	0x67, 0x12, 0x1d, 0x0a, 0x0a, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18,
+	0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x43, 0x6f, 0x64, 0x65,
+	0x12, 0x20, 0x0a, 0x0b, 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x4e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x18,
+	0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x73, 0x74, 0x6f, 0x63, 0x6b, 0x4e, 0x75, 0x6d, 0x62,
+	0x65, 0x72, 0x22, 0x60, 0x0a, 0x10, 0x49, 0x73, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d,
+	0x65, 0x6e, 0x74, 0x52, 0x65, 0x71, 0x12, 0x16, 0x0a, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64,
+	0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x75, 0x73, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1e,
+	0x0a, 0x0a, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x49, 0x64, 0x18, 0x02, 0x20, 0x01,
+	0x28, 0x03, 0x52, 0x0a, 0x61, 0x63, 0x74, 0x69, 0x76, 0x69, 0x74, 0x79, 0x49, 0x64, 0x12, 0x14,
+	0x0a, 0x05, 0x61, 0x70, 0x70, 0x49, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x61,
+	0x70, 0x70, 0x49, 0x64, 0x32, 0xa1, 0x01, 0x0a, 0x09, 0x6d, 0x61, 0x72, 0x6b, 0x65, 0x74, 0x69,
+	0x6e, 0x67, 0x12, 0x2b, 0x0a, 0x0e, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e,
+	0x74, 0x41, 0x64, 0x64, 0x12, 0x12, 0x2e, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65,
+	0x6e, 0x74, 0x41, 0x64, 0x64, 0x52, 0x65, 0x71, 0x1a, 0x05, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x12,
+	0x3c, 0x0a, 0x0f, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x6e,
+	0x66, 0x6f, 0x12, 0x13, 0x2e, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74,
+	0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x71, 0x1a, 0x14, 0x2e, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e,
+	0x74, 0x6d, 0x65, 0x6e, 0x74, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x65, 0x73, 0x70, 0x12, 0x29, 0x0a,
+	0x0d, 0x49, 0x73, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x12, 0x11,
+	0x2e, 0x49, 0x73, 0x41, 0x70, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x6d, 0x65, 0x6e, 0x74, 0x52, 0x65,
+	0x71, 0x1a, 0x05, 0x2e, 0x52, 0x65, 0x73, 0x70, 0x42, 0x06, 0x5a, 0x04, 0x2e, 0x2f, 0x70, 0x62,
+	0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
 }
 
 var (
@@ -390,17 +500,18 @@ func file_marketing_proto_rawDescGZIP() []byte {
 	return file_marketing_proto_rawDescData
 }
 
-var file_marketing_proto_msgTypes = make([]protoimpl.MessageInfo, 4)
+var file_marketing_proto_msgTypes = make([]protoimpl.MessageInfo, 5)
 var file_marketing_proto_goTypes = []interface{}{
 	(*Resp)(nil),                // 0: Resp
 	(*AppointmentAddReq)(nil),   // 1: AppointmentAddReq
 	(*AppointmentInfoReq)(nil),  // 2: AppointmentInfoReq
 	(*AppointmentInfoResp)(nil), // 3: AppointmentInfoResp
+	(*IsAppointmentReq)(nil),    // 4: IsAppointmentReq
 }
 var file_marketing_proto_depIdxs = []int32{
 	1, // 0: marketing.AppointmentAdd:input_type -> AppointmentAddReq
 	2, // 1: marketing.AppointmentInfo:input_type -> AppointmentInfoReq
-	1, // 2: marketing.IsAppointment:input_type -> AppointmentAddReq
+	4, // 2: marketing.IsAppointment:input_type -> IsAppointmentReq
 	0, // 3: marketing.AppointmentAdd:output_type -> Resp
 	3, // 4: marketing.AppointmentInfo:output_type -> AppointmentInfoResp
 	0, // 5: marketing.IsAppointment:output_type -> Resp
@@ -465,6 +576,18 @@ func file_marketing_proto_init() {
 				return nil
 			}
 		}
+		file_marketing_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
+			switch v := v.(*IsAppointmentReq); i {
+			case 0:
+				return &v.state
+			case 1:
+				return &v.sizeCache
+			case 2:
+				return &v.unknownFields
+			default:
+				return nil
+			}
+		}
 	}
 	type x struct{}
 	out := protoimpl.TypeBuilder{
@@ -472,7 +595,7 @@ func file_marketing_proto_init() {
 			GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
 			RawDescriptor: file_marketing_proto_rawDesc,
 			NumEnums:      0,
-			NumMessages:   4,
+			NumMessages:   5,
 			NumExtensions: 0,
 			NumServices:   1,
 		},

+ 6 - 6
rpc/pb/marketing_grpc.pb.go

@@ -27,7 +27,7 @@ type MarketingClient interface {
 	//预热信息
 	AppointmentInfo(ctx context.Context, in *AppointmentInfoReq, opts ...grpc.CallOption) (*AppointmentInfoResp, error)
 	//用户是否预约
-	IsAppointment(ctx context.Context, in *AppointmentAddReq, opts ...grpc.CallOption) (*Resp, error)
+	IsAppointment(ctx context.Context, in *IsAppointmentReq, opts ...grpc.CallOption) (*Resp, error)
 }
 
 type marketingClient struct {
@@ -56,7 +56,7 @@ func (c *marketingClient) AppointmentInfo(ctx context.Context, in *AppointmentIn
 	return out, nil
 }
 
-func (c *marketingClient) IsAppointment(ctx context.Context, in *AppointmentAddReq, opts ...grpc.CallOption) (*Resp, error) {
+func (c *marketingClient) IsAppointment(ctx context.Context, in *IsAppointmentReq, opts ...grpc.CallOption) (*Resp, error) {
 	out := new(Resp)
 	err := c.cc.Invoke(ctx, "/marketing/IsAppointment", in, out, opts...)
 	if err != nil {
@@ -74,7 +74,7 @@ type MarketingServer interface {
 	//预热信息
 	AppointmentInfo(context.Context, *AppointmentInfoReq) (*AppointmentInfoResp, error)
 	//用户是否预约
-	IsAppointment(context.Context, *AppointmentAddReq) (*Resp, error)
+	IsAppointment(context.Context, *IsAppointmentReq) (*Resp, error)
 	mustEmbedUnimplementedMarketingServer()
 }
 
@@ -88,7 +88,7 @@ func (UnimplementedMarketingServer) AppointmentAdd(context.Context, *Appointment
 func (UnimplementedMarketingServer) AppointmentInfo(context.Context, *AppointmentInfoReq) (*AppointmentInfoResp, error) {
 	return nil, status.Errorf(codes.Unimplemented, "method AppointmentInfo not implemented")
 }
-func (UnimplementedMarketingServer) IsAppointment(context.Context, *AppointmentAddReq) (*Resp, error) {
+func (UnimplementedMarketingServer) IsAppointment(context.Context, *IsAppointmentReq) (*Resp, error) {
 	return nil, status.Errorf(codes.Unimplemented, "method IsAppointment not implemented")
 }
 func (UnimplementedMarketingServer) mustEmbedUnimplementedMarketingServer() {}
@@ -141,7 +141,7 @@ func _Marketing_AppointmentInfo_Handler(srv interface{}, ctx context.Context, de
 }
 
 func _Marketing_IsAppointment_Handler(srv interface{}, ctx context.Context, dec func(interface{}) error, interceptor grpc.UnaryServerInterceptor) (interface{}, error) {
-	in := new(AppointmentAddReq)
+	in := new(IsAppointmentReq)
 	if err := dec(in); err != nil {
 		return nil, err
 	}
@@ -153,7 +153,7 @@ func _Marketing_IsAppointment_Handler(srv interface{}, ctx context.Context, dec
 		FullMethod: "/marketing/IsAppointment",
 	}
 	handler := func(ctx context.Context, req interface{}) (interface{}, error) {
-		return srv.(MarketingServer).IsAppointment(ctx, req.(*AppointmentAddReq))
+		return srv.(MarketingServer).IsAppointment(ctx, req.(*IsAppointmentReq))
 	}
 	return interceptor(ctx, in, info, handler)
 }

BIN
rpc/rpc


BIN
rpc/rpc.exe


+ 2 - 2
rpc/test/marketing_test.go

@@ -32,8 +32,8 @@ func TestAppointment(t *testing.T) {
 	FileSystem := marketing.NewMarketing(zrpc.MustNewClient(c.FileSystemConf))
 	req := &pb.AppointmentAddReq{
 		AppId:          "10000",
-		UserId:         "431r4ng93459jr2093",
-		ProductId:      101,
+		UserId:         "6103bb722abfa5f4d81bb1d1",
+		ProductId:      1012,
 		UseProductType: 0,
 	}
 	res, err := FileSystem.AppointmentAdd(ctx, req)

+ 1 - 2
rpc/timetask/timetask.go

@@ -7,7 +7,6 @@ import (
 	"log"
 	"net/http"
 
-	// "net/url"
 	"strconv"
 	"strings"
 	"time"
@@ -106,7 +105,7 @@ func formatUserId(useridArr []string) (userids string) {
 
 //站内信推送
 func stationMailPush(userid, activityName, pcLandingPage, wxLandingPage, appLandingPage string, idArr []int64) {
-	href := fmt.Sprintf("%s?_action=%s&userIds=%s&msgType=2&title=消息提醒&content=%s&link=%s&sendMode=2&sendTime=%s&androidUrl=%s&iosUrl=%s&weChatUrl=%s&_token=12311",
+	href := fmt.Sprintf("%s?_action=%s&userIds=%s&msgType=1&title=消息提醒&content=%s&link=%s&sendMode=2&sendTime=%s&androidUrl=%s&iosUrl=%s&weChatUrl=%s&_token=12311",
 		Pushcfg.StationMailHref, Pushcfg.StationMailAction, userid, fmt.Sprintf(Pushcfg.Content, activityName), pcLandingPage, date.NowFormat(date.Date_Short_Layout), appLandingPage, appLandingPage, wxLandingPage)
 	log.Println(href)
 	resp, err := http.Get(href)