diff --git a/.idea/.gitignore b/.idea/.gitignore new file mode 100644 index 0000000..13566b8 --- /dev/null +++ b/.idea/.gitignore @@ -0,0 +1,8 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ +# Datasource local storage ignored files +/dataSources/ +/dataSources.local.xml diff --git a/scripts/deploy_docker.sh b/scripts/deploy_docker.sh index f97ab11..623922e 100755 --- a/scripts/deploy_docker.sh +++ b/scripts/deploy_docker.sh @@ -6,23 +6,18 @@ IMAGE="marketing-system-data-tool" TAG="$ENV_NAME" PORT="${PORT:-8077}" cd "$ROOT_DIR" -FIXED_IMG_ID="254602263cd6" -if docker image inspect "$FIXED_IMG_ID" >/dev/null 2>&1; then - USE_IMAGE="$FIXED_IMG_ID" + +# 如果镜像存在,则直接使用;否则构建 +if docker image inspect "$IMAGE:$TAG" >/dev/null 2>&1; then + echo "镜像 $IMAGE:$TAG 已存在,跳过构建。" else - if docker image inspect "$IMAGE:$TAG" >/dev/null 2>&1; then - DOCKER_BUILDKIT=1 docker build \ - --build-arg BUILDKIT_INLINE_CACHE=1 \ - --build-arg GOPROXY="${GOPROXY:-https://goproxy.cn,direct}" \ - --cache-from "$IMAGE:$TAG" -t "$IMAGE:$TAG" -f Dockerfile . - else - DOCKER_BUILDKIT=1 docker build \ - --build-arg BUILDKIT_INLINE_CACHE=1 \ - --build-arg GOPROXY="${GOPROXY:-https://goproxy.cn,direct}" \ - -t "$IMAGE:$TAG" -f Dockerfile . - fi - USE_IMAGE="$IMAGE:$TAG" + DOCKER_BUILDKIT=1 docker build \ + --build-arg BUILDKIT_INLINE_CACHE=1 \ + --build-arg GOPROXY="${GOPROXY:-https://goproxy.cn,direct}" \ + -t "$IMAGE:$TAG" -f Dockerfile . fi +USE_IMAGE="$IMAGE:$TAG" + mkdir -p log storage/export CID_NAME="marketing-data-$ENV_NAME" RUNNING=$(docker inspect -f '{{.State.Running}}' "$CID_NAME" 2>/dev/null || echo false) diff --git a/server/internal/api/exports.go b/server/internal/api/exports.go index f5429a1..5a3a151 100644 --- a/server/internal/api/exports.go +++ b/server/internal/api/exports.go @@ -117,12 +117,56 @@ func (a *ExportsAPI) create(w http.ResponseWriter, r *http.Request) { } } if len(ids) > 0 { + // FORCE set creator_in if URL params are present, even if p.Filters had something else (which is unlikely if mergePermission worked, but let's be safe) + // Actually, we should probably append or merge? For now, let's assume URL overrides or merges if key missing. + // Logic before was: if _, exists := p.Filters["creator_in"]; !exists { ... } + // But if user passed userId in URL, they probably want it to be used. + // If p.Filters["creator_in"] came from `Permission`, it might be the logged-in user. + // If the user is an admin acting as another user (passed in URL), we should probably use the URL one? + // But `mergePermissionIntoFilters` logic is strict. + // Let's keep existing logic: if permission set it, don't override. + // Wait, if permission is empty (e.g. admin), then `creator_in` is missing. if _, exists := p.Filters["creator_in"]; !exists { p.Filters["creator_in"] = ids + } else { + // If it exists, should we merge? + // If the existing one is from permission, it's a boundary. + // If we are admin, permission might be empty. + // Let's trust `mergePermissionIntoFilters`. } } } } + // support multiple merchantId in query: e.g., merchantId=1,2,3 → filters.merchant_id_in + { + midStr := r.URL.Query().Get("merchantId") + if midStr != "" { + parts := strings.Split(midStr, ",") + ids := make([]interface{}, 0, len(parts)) + for _, s := range parts { + s = strings.TrimSpace(s) + if s == "" { + continue + } + if n, err := strconv.ParseUint(s, 10, 64); err == nil { + ids = append(ids, n) + } + } + if len(ids) > 0 { + if _, exists := p.Filters["merchant_id_in"]; !exists { + p.Filters["merchant_id_in"] = ids + } + } + } + } + + // DEBUG LOGGING + logging.JSON("INFO", map[string]interface{}{ + "event": "export_filters_debug", + "filters": p.Filters, + "has_creator_in": hasNonEmptyIDs(p.Filters["creator_in"]), + "has_merchant_id_in": hasNonEmptyIDs(p.Filters["merchant_id_in"]), + }) if ds == "marketing" && (main == "order" || main == "order_info") { if v, ok := p.Filters["create_time_between"]; ok { switch t := v.(type) { diff --git a/server/internal/exporter/sqlbuilder.go b/server/internal/exporter/sqlbuilder.go index b404f15..9eda4cd 100644 --- a/server/internal/exporter/sqlbuilder.go +++ b/server/internal/exporter/sqlbuilder.go @@ -178,29 +178,78 @@ func BuildSQL(req BuildRequest, whitelist map[string]bool) (string, []interface{ if _, ok := req.Filters["merchant_out_biz_no_eq"]; ok { need["merchant_key_send"] = true } + + // Handle creator_in and merchant_id_in with OR logic if both exist + var creatorArgs []interface{} + hasCreator := false if v, ok := req.Filters["creator_in"]; ok { - ids := []interface{}{} switch t := v.(type) { case []interface{}: - ids = t + creatorArgs = t case []int: for _, x := range t { - ids = append(ids, x) + creatorArgs = append(creatorArgs, x) } case []string: for _, x := range t { - ids = append(ids, x) + creatorArgs = append(creatorArgs, x) } } - if len(ids) > 0 { - ph := strings.Repeat("?,", len(ids)) - ph = strings.TrimSuffix(ph, ",") - if tbl, col, ok := sch.FilterColumn("creator_in"); ok { - where = append(where, fmt.Sprintf("`%s`.%s IN (%s)", sch.TableName(tbl), escape(col), ph)) - } - args = append(args, ids...) + if len(creatorArgs) > 0 { + hasCreator = true } } + + var merchantArgs []interface{} + hasMerchant := false + if v, ok := req.Filters["merchant_id_in"]; ok { + switch t := v.(type) { + case []interface{}: + merchantArgs = t + case []int: + for _, x := range t { + merchantArgs = append(merchantArgs, x) + } + case []string: + for _, x := range t { + merchantArgs = append(merchantArgs, x) + } + } + if len(merchantArgs) > 0 { + hasMerchant = true + } + } + + // Apply the logic: if both present, use OR. Else use individual. + if hasCreator && hasMerchant { + cTbl, cCol, cOk := sch.FilterColumn("creator_in") + mTbl, mCol, mOk := sch.FilterColumn("merchant_id_in") + if cOk && mOk { + cPh := strings.Repeat("?,", len(creatorArgs)) + cPh = strings.TrimSuffix(cPh, ",") + mPh := strings.Repeat("?,", len(merchantArgs)) + mPh = strings.TrimSuffix(mPh, ",") + where = append(where, fmt.Sprintf("(`%s`.%s IN (%s) OR `%s`.%s IN (%s))", + sch.TableName(cTbl), escape(cCol), cPh, + sch.TableName(mTbl), escape(mCol), mPh)) + args = append(args, creatorArgs...) + args = append(args, merchantArgs...) + } else if cOk { + // Fallback: only creator valid (e.g. marketing system) + ph := strings.Repeat("?,", len(creatorArgs)) + ph = strings.TrimSuffix(ph, ",") + where = append(where, fmt.Sprintf("`%s`.%s IN (%s)", sch.TableName(cTbl), escape(cCol), ph)) + args = append(args, creatorArgs...) + } + } else if hasCreator { + if tbl, col, ok := sch.FilterColumn("creator_in"); ok { + ph := strings.Repeat("?,", len(creatorArgs)) + ph = strings.TrimSuffix(ph, ",") + where = append(where, fmt.Sprintf("`%s`.%s IN (%s)", sch.TableName(tbl), escape(col), ph)) + args = append(args, creatorArgs...) + } + } + if v, ok := req.Filters["create_time_between"]; ok { var arr []interface{} b, _ := json.Marshal(v) @@ -281,7 +330,7 @@ func BuildSQL(req BuildRequest, whitelist map[string]bool) (string, []interface{ } if v, ok := req.Filters["plan_id_eq"]; ok { s := toString(v) - if s != "" { + if s != "" && s != "0" { if tbl, col, ok := sch.FilterColumn("plan_id_eq"); ok { where = append(where, fmt.Sprintf("`%s`.%s = ?", sch.TableName(tbl), escape(col))) } @@ -307,12 +356,16 @@ func BuildSQL(req BuildRequest, whitelist map[string]bool) (string, []interface{ } } if v, ok := req.Filters["reseller_id_eq"]; ok { - s := toString(v) - if s != "" { - if tbl, col, ok := sch.FilterColumn("reseller_id_eq"); ok { - where = append(where, fmt.Sprintf("`%s`.%s = ?", sch.TableName(tbl), escape(col))) + // If merchant_id_in is present, it handles the merchant_id logic (via OR condition), + // so we should skip this strict equality filter to avoid generating "AND merchant_id = '0'". + if _, hasIn := req.Filters["merchant_id_in"]; !hasIn { + s := toString(v) + if s != "" { + if tbl, col, ok := sch.FilterColumn("reseller_id_eq"); ok { + where = append(where, fmt.Sprintf("`%s`.%s = ?", sch.TableName(tbl), escape(col))) + } + args = append(args, s) } - args = append(args, s) } } if v, ok := req.Filters["code_batch_id_eq"]; ok { @@ -464,30 +517,90 @@ func BuildCountSQL(req BuildRequest, whitelist map[string]bool) (string, []inter need[tbl] = true } } - // build WHERE from filters + // Handle creator_in and merchant_id_in with OR logic if both exist + var creatorArgs []interface{} + hasCreator := false + if v, ok := req.Filters["creator_in"]; ok { + switch t := v.(type) { + case []interface{}: + creatorArgs = t + case []int: + for _, x := range t { + creatorArgs = append(creatorArgs, x) + } + case []string: + for _, x := range t { + creatorArgs = append(creatorArgs, x) + } + } + if len(creatorArgs) > 0 { + hasCreator = true + } + } + + var merchantArgs []interface{} + hasMerchant := false + if v, ok := req.Filters["merchant_id_in"]; ok { + switch t := v.(type) { + case []interface{}: + merchantArgs = t + case []int: + for _, x := range t { + merchantArgs = append(merchantArgs, x) + } + case []string: + for _, x := range t { + merchantArgs = append(merchantArgs, x) + } + } + if len(merchantArgs) > 0 { + hasMerchant = true + } + } + + if hasCreator && hasMerchant { + cTbl, cCol, cOk := sch.FilterColumn("creator_in") + mTbl, mCol, mOk := sch.FilterColumn("merchant_id_in") + if cOk && mOk { + cPh := strings.Repeat("?,", len(creatorArgs)) + cPh = strings.TrimSuffix(cPh, ",") + mPh := strings.Repeat("?,", len(merchantArgs)) + mPh = strings.TrimSuffix(mPh, ",") + where = append(where, fmt.Sprintf("(`%s`.%s IN (%s) OR `%s`.%s IN (%s))", + sch.TableName(cTbl), escape(cCol), cPh, + sch.TableName(mTbl), escape(mCol), mPh)) + args = append(args, creatorArgs...) + args = append(args, merchantArgs...) + } else if cOk { + ph := strings.Repeat("?,", len(creatorArgs)) + ph = strings.TrimSuffix(ph, ",") + where = append(where, fmt.Sprintf("`%s`.%s IN (%s)", sch.TableName(cTbl), escape(cCol), ph)) + args = append(args, creatorArgs...) + } + } else if hasCreator { + if tbl, col, ok := sch.FilterColumn("creator_in"); ok { + ph := strings.Repeat("?,", len(creatorArgs)) + ph = strings.TrimSuffix(ph, ",") + where = append(where, fmt.Sprintf("`%s`.%s IN (%s)", sch.TableName(tbl), escape(col), ph)) + args = append(args, creatorArgs...) + } + } + + // build WHERE from other filters for k, v := range req.Filters { + if k == "creator_in" || k == "merchant_id_in" { + continue + } + if k == "reseller_id_eq" { + if _, has := req.Filters["merchant_id_in"]; has { + continue + } + } + if k == "plan_id_eq" && toString(v) == "0" { + continue + } if tbl, col, ok := sch.FilterColumn(k); ok { switch k { - case "creator_in": - ids := []interface{}{} - switch t := v.(type) { - case []interface{}: - ids = t - case []int: - for _, x := range t { - ids = append(ids, x) - } - case []string: - for _, x := range t { - ids = append(ids, x) - } - } - if len(ids) > 0 { - ph := strings.Repeat("?,", len(ids)) - ph = strings.TrimSuffix(ph, ",") - where = append(where, fmt.Sprintf("`%s`.%s IN (%s)", sch.TableName(tbl), escape(col), ph)) - args = append(args, ids...) - } case "create_time_between": var arr []interface{} b, _ := json.Marshal(v) diff --git a/server/internal/schema/ymt.go b/server/internal/schema/ymt.go index cef6cf9..a39e9b5 100644 --- a/server/internal/schema/ymt.go +++ b/server/internal/schema/ymt.go @@ -3,81 +3,107 @@ package schema type ymtSchema struct{} func (ymtSchema) TableName(t string) string { - if t == "order" { - return "order_info" - } - return t + if t == "order" { + return "order_info" + } + return t } func (s ymtSchema) MapField(t, f string) (string, bool) { - if t == "order" { - switch f { - case "order_number": return "order_no", true - case "key": return "key_code", true - case "creator": return "user_id", true - case "out_trade_no": return "out_order_no", true - case "plan_id": return "activity_id", true - case "reseller_id": return "merchant_id", true - case "product_id": return "goods_id", true - case "pay_amount": return "pay_price", true - case "key_batch_id": return "key_batch_name", true - default: - return f, true - } - } - if t == "order_voucher" { - switch f { - case "channel_activity_id": return "channel_batch_no", true - case "overdue_time": return "expire_time", true - case "account_no": return "account", true - default: - return f, true - } - } - return f, true + if t == "order" { + switch f { + case "order_number": + return "order_no", true + case "key": + return "key_code", true + case "creator": + return "user_id", true + case "out_trade_no": + return "out_order_no", true + case "plan_id": + return "activity_id", true + case "reseller_id": + return "merchant_id", true + case "product_id": + return "goods_id", true + case "pay_amount": + return "pay_price", true + case "key_batch_id": + return "key_batch_name", true + default: + return f, true + } + } + if t == "order_voucher" { + switch f { + case "channel_activity_id": + return "channel_batch_no", true + case "overdue_time": + return "expire_time", true + case "account_no": + return "account", true + default: + return f, true + } + } + return f, true } func (s ymtSchema) BuildJoins(need map[string]bool, main string) []string { - out := []string{} - if need["order_cash"] { - out = append(out, " LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no") - } - if need["order_voucher"] { - out = append(out, " LEFT JOIN `order_voucher` ON `order_voucher`.order_no = `order_info`.order_no") - } - if need["order_digit"] { - out = append(out, " LEFT JOIN `order_digit` ON `order_digit`.order_no = `order_info`.order_no") - } - if need["goods_voucher_batch"] { - out = append(out, " LEFT JOIN `goods_voucher_batch` ON `goods_voucher_batch`.channel_batch_no = `order_voucher`.channel_batch_no") - } - if need["goods_voucher_subject_config"] { - out = append(out, " LEFT JOIN `goods_voucher_subject_config` ON `goods_voucher_subject_config`.id = `goods_voucher_batch`.voucher_subject_id") - } - if need["merchant"] { - out = append(out, " LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id") - } - if need["activity"] { - out = append(out, " LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id") - } - return out + out := []string{} + if need["order_cash"] { + out = append(out, " LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no") + } + if need["order_voucher"] { + out = append(out, " LEFT JOIN `order_voucher` ON `order_voucher`.order_no = `order_info`.order_no") + } + if need["order_digit"] { + out = append(out, " LEFT JOIN `order_digit` ON `order_digit`.order_no = `order_info`.order_no") + } + if need["goods_voucher_batch"] { + out = append(out, " LEFT JOIN `goods_voucher_batch` ON `goods_voucher_batch`.channel_batch_no = `order_voucher`.channel_batch_no") + } + if need["goods_voucher_subject_config"] { + out = append(out, " LEFT JOIN `goods_voucher_subject_config` ON `goods_voucher_subject_config`.id = `goods_voucher_batch`.voucher_subject_id") + } + if need["merchant"] { + out = append(out, " LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id") + } + if need["activity"] { + out = append(out, " LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id") + } + return out } func (s ymtSchema) FilterColumn(key string) (string, string, bool) { - switch key { - case "creator_in": return "order", "user_id", true - case "create_time_between": return "order", "create_time", true - case "type_eq": return "order", "type", true - case "out_trade_no_eq": return "order", "out_order_no", true - case "account_eq": return "order", "account", true - case "plan_id_eq": return "order", "activity_id", true - case "key_batch_id_eq": return "order", "key_batch_name", true - case "product_id_eq": return "order", "goods_id", true - case "reseller_id_eq": return "order", "merchant_id", true - case "code_batch_id_eq": return "order", "supplier_product_id", true - case "order_cash_cash_activity_id_eq": return "order_cash", "activity_id", true - case "order_voucher_channel_activity_id_eq": return "order_voucher", "channel_batch_no", true - default: - return "", "", false - } + switch key { + case "creator_in": + return "order", "user_id", true + case "merchant_id_in": + return "order", "merchant_id", true + case "create_time_between": + return "order", "create_time", true + case "type_eq": + return "order", "type", true + case "out_trade_no_eq": + return "order", "out_order_no", true + case "account_eq": + return "order", "account", true + case "plan_id_eq": + return "order", "activity_id", true + case "key_batch_id_eq": + return "order", "key_batch_name", true + case "product_id_eq": + return "order", "goods_id", true + case "reseller_id_eq": + return "order", "merchant_id", true + case "code_batch_id_eq": + return "order", "supplier_product_id", true + case "order_cash_cash_activity_id_eq": + return "order_cash", "activity_id", true + case "order_voucher_channel_activity_id_eq": + return "order_voucher", "channel_batch_no", true + default: + return "", "", false + } } diff --git a/server/server.log b/server/server.log new file mode 100644 index 0000000..f7c4334 --- /dev/null +++ b/server/server.log @@ -0,0 +1,1698 @@ +connecting YMT MySQL: 47.97.27.195:3306 db merketing user root +connecting Marketing MySQL: 192.168.6.92:3306 db market user root +connecting Meta MySQL (templates/jobs): 47.97.27.195:3306 db merketing user root +server listening on :8077 +{"bytes":2973,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:00+08:00"} +{"bytes":2973,"duration_ms":607,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:00+08:00"} +{"bytes":2973,"duration_ms":290,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:01+08:00"} +{"bytes":2973,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:01+08:00"} +{"bytes":2973,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:02+08:00"} +{"bytes":2973,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:02+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:03+08:00"} +{"bytes":2973,"duration_ms":239,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:03+08:00"} +{"bytes":2973,"duration_ms":246,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:04+08:00"} +{"bytes":2973,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:04+08:00"} +{"bytes":2973,"duration_ms":285,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:05+08:00"} +{"bytes":2973,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:05+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:06+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:06+08:00"} +{"bytes":2973,"duration_ms":269,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:07+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:07+08:00"} +{"bytes":2973,"duration_ms":245,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:08+08:00"} +{"bytes":2973,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:08+08:00"} +{"bytes":2973,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:09+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:09+08:00"} +{"bytes":2973,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:10+08:00"} +{"bytes":2973,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:10+08:00"} +{"bytes":2973,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:11+08:00"} +{"bytes":2973,"duration_ms":246,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:11+08:00"} +{"bytes":2973,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:12+08:00"} +{"bytes":2973,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:12+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:13+08:00"} +{"bytes":2973,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:13+08:00"} +{"bytes":2973,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:14+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:14+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:15+08:00"} +{"bytes":2973,"duration_ms":243,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:15+08:00"} +{"bytes":2973,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:16+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:16+08:00"} +{"bytes":2973,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:17+08:00"} +{"bytes":2973,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:17+08:00"} +{"bytes":2973,"duration_ms":273,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:18+08:00"} +{"bytes":2973,"duration_ms":279,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:18+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:19+08:00"} +{"bytes":2973,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:19+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:20+08:00"} +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:20+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:21+08:00"} +{"bytes":2973,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:21+08:00"} +{"bytes":2973,"duration_ms":241,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:22+08:00"} +{"bytes":2973,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:22+08:00"} +{"bytes":2973,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:23+08:00"} +{"bytes":2973,"duration_ms":243,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:23+08:00"} +{"bytes":2973,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:24+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:24+08:00"} +{"bytes":2973,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:25+08:00"} +{"bytes":2973,"duration_ms":245,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:25+08:00"} +{"bytes":2973,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:26+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:26+08:00"} +{"bytes":2973,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:27+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:27+08:00"} +{"bytes":2973,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:28+08:00"} +{"bytes":2973,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:28+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:29+08:00"} +{"bytes":2973,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:29+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:30+08:00"} +{"bytes":2973,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:30+08:00"} +{"bytes":2973,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:31+08:00"} +{"bytes":2973,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:31+08:00"} +{"bytes":2973,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:32+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:32+08:00"} +{"bytes":2973,"duration_ms":274,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:33+08:00"} +{"bytes":2973,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:33+08:00"} +{"bytes":2973,"duration_ms":283,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:34+08:00"} +{"bytes":2973,"duration_ms":275,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:34+08:00"} +{"bytes":2973,"duration_ms":278,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:35+08:00"} +{"bytes":2973,"duration_ms":272,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:35+08:00"} +{"bytes":2973,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:36+08:00"} +{"bytes":2973,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:36+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:37+08:00"} +{"bytes":2973,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:37+08:00"} +{"bytes":2973,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:38+08:00"} +{"bytes":2973,"duration_ms":285,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:38+08:00"} +{"bytes":2973,"duration_ms":309,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:39+08:00"} +{"bytes":2973,"duration_ms":299,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:39+08:00"} +{"bytes":2973,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:40+08:00"} +{"bytes":2973,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:40+08:00"} +{"bytes":2973,"duration_ms":291,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:41+08:00"} +{"bytes":2973,"duration_ms":287,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:41+08:00"} +{"bytes":2973,"duration_ms":244,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:42+08:00"} +{"bytes":2973,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:42+08:00"} +{"bytes":2973,"duration_ms":395,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:43+08:00"} +{"bytes":2973,"duration_ms":351,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:43+08:00"} +{"bytes":2973,"duration_ms":486,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:44+08:00"} +{"bytes":2973,"duration_ms":417,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:44+08:00"} +{"bytes":2973,"duration_ms":273,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:45+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:45+08:00"} +{"bytes":2973,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:46+08:00"} +{"bytes":2973,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:47+08:00"} +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:48+08:00"} +{"bytes":2973,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:49+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:50+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:51+08:00"} +{"bytes":2973,"duration_ms":282,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:52+08:00"} +{"bytes":2973,"duration_ms":317,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:52+08:00"} +{"bytes":2973,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:53+08:00"} +{"bytes":2973,"duration_ms":324,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:54+08:00"} +{"bytes":2973,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:55+08:00"} +{"bytes":2973,"duration_ms":281,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:56+08:00"} +{"bytes":2973,"duration_ms":326,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:57+08:00"} +{"bytes":2973,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:58+08:00"} +{"bytes":2973,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:10:59+08:00"} +{"bytes":2973,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:00+08:00"} +{"bytes":2973,"duration_ms":295,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:01+08:00"} +{"bytes":2973,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:02+08:00"} +{"bytes":2973,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:03+08:00"} +{"bytes":2973,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:04+08:00"} +{"bytes":2973,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:05+08:00"} +{"bytes":2973,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:06+08:00"} +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:07+08:00"} +{"bytes":2973,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:08+08:00"} +{"bytes":2973,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:09+08:00"} +{"bytes":2973,"duration_ms":326,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:10+08:00"} +{"bytes":2973,"duration_ms":273,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:11+08:00"} +{"bytes":2973,"duration_ms":304,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:12+08:00"} +{"bytes":2973,"duration_ms":282,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:13+08:00"} +{"bytes":2973,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:14+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:15+08:00"} +{"bytes":2973,"duration_ms":269,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:16+08:00"} +{"bytes":2973,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:17+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:18+08:00"} +{"bytes":2973,"duration_ms":289,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:19+08:00"} +{"bytes":2973,"duration_ms":287,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:20+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:21+08:00"} +{"bytes":2973,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:22+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:23+08:00"} +{"bytes":2973,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:24+08:00"} +{"bytes":2973,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:25+08:00"} +{"bytes":2973,"duration_ms":298,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:26+08:00"} +{"bytes":2973,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:27+08:00"} +{"bytes":2973,"duration_ms":272,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:28+08:00"} +{"bytes":2973,"duration_ms":284,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:29+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:30+08:00"} +{"bytes":2973,"duration_ms":276,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:31+08:00"} +{"bytes":2973,"duration_ms":287,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:32+08:00"} +{"bytes":2973,"duration_ms":287,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:33+08:00"} +{"bytes":2973,"duration_ms":322,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:34+08:00"} +{"bytes":2973,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:35+08:00"} +{"bytes":2973,"duration_ms":277,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:36+08:00"} +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:37+08:00"} +{"bytes":2973,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:38+08:00"} +{"bytes":2973,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:39+08:00"} +{"bytes":2973,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:40+08:00"} +{"bytes":2973,"duration_ms":272,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:41+08:00"} +{"bytes":2973,"duration_ms":309,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:42+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:43+08:00"} +{"bytes":2973,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:44+08:00"} +{"bytes":2973,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:45+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:46+08:00"} +{"bytes":2973,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:47+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:48+08:00"} +{"bytes":2973,"duration_ms":269,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:49+08:00"} +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:50+08:00"} +{"bytes":2973,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:51+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:52+08:00"} +{"bytes":2973,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:52+08:00"} +{"bytes":2973,"duration_ms":273,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:53+08:00"} +{"bytes":2973,"duration_ms":275,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:54+08:00"} +{"bytes":2973,"duration_ms":243,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:55+08:00"} +{"bytes":2973,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:56+08:00"} +{"bytes":2973,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:57+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:58+08:00"} +{"bytes":2973,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:11:59+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:00+08:00"} +{"bytes":2973,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:01+08:00"} +{"bytes":2973,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:02+08:00"} +{"bytes":2973,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:03+08:00"} +{"bytes":2973,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:04+08:00"} +{"bytes":2973,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:05+08:00"} +{"bytes":2973,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:06+08:00"} +{"bytes":2973,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:07+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:08+08:00"} +{"bytes":2973,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:09+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:10+08:00"} +{"bytes":2973,"duration_ms":298,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:11+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:12+08:00"} +{"bytes":2973,"duration_ms":246,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:13+08:00"} +{"bytes":2973,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:14+08:00"} +{"bytes":2973,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:15+08:00"} +{"bytes":2973,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:16+08:00"} +{"bytes":2973,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:17+08:00"} +{"bytes":2973,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:18+08:00"} +{"bytes":2973,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:19+08:00"} +{"bytes":2973,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:20+08:00"} +{"bytes":2973,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:21+08:00"} +{"bytes":2973,"duration_ms":244,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:22+08:00"} +{"bytes":2973,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:23+08:00"} +{"bytes":2973,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:24+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:25+08:00"} +{"bytes":2973,"duration_ms":245,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:26+08:00"} +{"bytes":2973,"duration_ms":246,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:27+08:00"} +{"bytes":2973,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:28+08:00"} +{"bytes":2973,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:29+08:00"} +{"bytes":2973,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:30+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:31+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:32+08:00"} +{"bytes":2973,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:33+08:00"} +{"bytes":2973,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:34+08:00"} +{"bytes":2973,"duration_ms":243,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:35+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:36+08:00"} +{"bytes":2973,"duration_ms":245,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:37+08:00"} +{"bytes":2973,"duration_ms":246,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:38+08:00"} +{"bytes":2973,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:39+08:00"} +{"bytes":2973,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:40+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:41+08:00"} +{"bytes":2973,"duration_ms":284,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:42+08:00"} +{"bytes":2973,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:43+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:45+08:00"} +{"bytes":2973,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:46+08:00"} +{"bytes":2973,"duration_ms":203,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:46+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:47+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:48+08:00"} +{"bytes":2973,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:49+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:50+08:00"} +{"bytes":2973,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:51+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:52+08:00"} +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:52+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:53+08:00"} +{"bytes":2973,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:54+08:00"} +{"bytes":2973,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:55+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:56+08:00"} +{"bytes":2973,"duration_ms":269,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:57+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:58+08:00"} +{"bytes":2973,"duration_ms":269,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:12:59+08:00"} +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:00+08:00"} +{"bytes":2973,"duration_ms":274,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:01+08:00"} +{"bytes":2973,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:02+08:00"} +{"bytes":2973,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:03+08:00"} +{"bytes":2973,"duration_ms":275,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:04+08:00"} +{"bytes":2973,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:05+08:00"} +{"bytes":2973,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:06+08:00"} +{"bytes":2973,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:07+08:00"} +{"bytes":2973,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:08+08:00"} +{"bytes":2973,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:09+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:10+08:00"} +{"bytes":2973,"duration_ms":275,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:11+08:00"} +{"bytes":2973,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:12+08:00"} +{"bytes":2973,"duration_ms":271,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:13+08:00"} +{"bytes":2973,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:14+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:15+08:00"} +{"bytes":2973,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:16+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:17+08:00"} +{"bytes":2973,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:18+08:00"} +{"bytes":2973,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:19+08:00"} +{"bytes":2973,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:20+08:00"} +{"bytes":2973,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:21+08:00"} +{"bytes":2973,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:22+08:00"} +{"bytes":2973,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:23+08:00"} +{"bytes":2973,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:24+08:00"} +{"bytes":2973,"duration_ms":283,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:25+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:26+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:27+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:28+08:00"} +{"bytes":2973,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:29+08:00"} +{"bytes":2973,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:30+08:00"} +{"bytes":2973,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:31+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:32+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:33+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:34+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:35+08:00"} +{"bytes":2973,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:36+08:00"} +{"bytes":2973,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:37+08:00"} +{"bytes":2973,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:38+08:00"} +{"bytes":2973,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:39+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:40+08:00"} +{"bytes":2973,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:41+08:00"} +{"bytes":2973,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:42+08:00"} +{"bytes":2973,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:43+08:00"} +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:44+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:45+08:00"} +{"bytes":2973,"duration_ms":291,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:46+08:00"} +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:47+08:00"} +{"bytes":2973,"duration_ms":442,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:48+08:00"} +{"bytes":2973,"duration_ms":277,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:49+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:50+08:00"} +{"bytes":2973,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:52+08:00"} +{"bytes":2973,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:52+08:00"} +{"bytes":2973,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:52+08:00"} +{"bytes":2973,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:53+08:00"} +{"bytes":2973,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:54+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:55+08:00"} +{"bytes":2973,"duration_ms":246,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:56+08:00"} +{"bytes":2973,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:57+08:00"} +{"bytes":2973,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:58+08:00"} +{"bytes":2973,"duration_ms":289,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:13:59+08:00"} +{"bytes":2973,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:00+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:01+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:02+08:00"} +{"bytes":2973,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:03+08:00"} +{"bytes":2973,"duration_ms":279,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:04+08:00"} +{"bytes":2973,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:05+08:00"} +{"bytes":2973,"duration_ms":276,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:06+08:00"} +{"bytes":2973,"duration_ms":246,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:07+08:00"} +{"bytes":2973,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:08+08:00"} +{"bytes":2973,"duration_ms":285,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:09+08:00"} +{"bytes":2973,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:10+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:11+08:00"} +{"bytes":2973,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:12+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:13+08:00"} +{"bytes":2973,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:14+08:00"} +{"bytes":2973,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:15+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:17+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:18+08:00"} +{"bytes":2973,"duration_ms":342,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:19+08:00"} +{"bytes":2973,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:20+08:00"} +{"bytes":2973,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:21+08:00"} +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:22+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:23+08:00"} +{"bytes":2973,"duration_ms":200,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:23+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:24+08:00"} +{"bytes":2973,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:25+08:00"} +{"bytes":2973,"duration_ms":246,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:26+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:28+08:00"} +{"bytes":2973,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:29+08:00"} +{"bytes":2973,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:30+08:00"} +{"bytes":2973,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:31+08:00"} +{"bytes":2973,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:32+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:33+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:34+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:35+08:00"} +{"bytes":2973,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:36+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:37+08:00"} +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:38+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:39+08:00"} +{"bytes":2973,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:40+08:00"} +{"bytes":2973,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:41+08:00"} +{"bytes":2973,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:42+08:00"} +{"bytes":2973,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:43+08:00"} +{"bytes":2973,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:44+08:00"} +{"bytes":2973,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:45+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:46+08:00"} +{"bytes":2973,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:47+08:00"} +{"bytes":2973,"duration_ms":609,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:48+08:00"} +{"bytes":2973,"duration_ms":299,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:49+08:00"} +{"bytes":2973,"duration_ms":309,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:50+08:00"} +{"bytes":2973,"duration_ms":305,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:51+08:00"} +{"bytes":2973,"duration_ms":305,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:52+08:00"} +{"bytes":2973,"duration_ms":275,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:52+08:00"} +{"bytes":2973,"duration_ms":282,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:53+08:00"} +{"bytes":2973,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:54+08:00"} +{"bytes":2973,"duration_ms":288,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:55+08:00"} +{"bytes":2973,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:56+08:00"} +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:57+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:58+08:00"} +{"bytes":2973,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:14:59+08:00"} +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:00+08:00"} +{"bytes":2973,"duration_ms":272,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:01+08:00"} +{"bytes":2973,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:02+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:03+08:00"} +{"bytes":2973,"duration_ms":281,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:04+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:05+08:00"} +{"bytes":2973,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:06+08:00"} +{"bytes":2973,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:07+08:00"} +{"bytes":2973,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:08+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:09+08:00"} +{"bytes":2973,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:10+08:00"} +{"bytes":2973,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:11+08:00"} +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:12+08:00"} +{"bytes":2973,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:13+08:00"} +{"bytes":2973,"duration_ms":277,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:14+08:00"} +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:15+08:00"} +{"bytes":2973,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:16+08:00"} +{"bytes":2973,"duration_ms":281,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:17+08:00"} +{"bytes":2973,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:18+08:00"} +{"bytes":2973,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:19+08:00"} +{"bytes":2973,"duration_ms":281,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:20+08:00"} +{"bytes":2973,"duration_ms":277,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:21+08:00"} +{"bytes":2973,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:22+08:00"} +{"bytes":2973,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:23+08:00"} +{"bytes":2973,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:24+08:00"} +{"bytes":2973,"duration_ms":283,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:25+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:26+08:00"} +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:49+08:00"} +{"bytes":2973,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:50+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:15:52+08:00"} +{"bytes":2973,"duration_ms":304,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:35+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:36+08:00"} +{"bytes":2973,"duration_ms":269,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:37+08:00"} +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:38+08:00"} +{"bytes":2973,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:39+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:40+08:00"} +{"bytes":2973,"duration_ms":276,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:41+08:00"} +{"bytes":1104,"duration_ms":100,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:44+08:00"} +{"bytes":856,"duration_ms":110,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:44+08:00"} +{"event":"export_filters_debug","filters":{"create_time_between":["2025-11-01 00:00:00","2025-11-30 23:59:59"],"type_eq":1},"has_creator_in":true,"has_merchant_id_in":true,"level":"INFO","ts":"2025-12-09T17:16:45+08:00"} +{"args":["2025-11-01 00:00:00","2025-11-30 23:59:59",1],"datasource":"ymt","event":"export_sql","file_format":"xlsx","final_sql":"SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN '2025-11-01 00:00:00' AND '2025-11-30 23:59:59' AND `order_info`.type = 1","level":"INFO","main_table":"order","sql":"SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN ? AND ? AND `order_info`.type = ?","ts":"2025-12-09T17:16:45+08:00"} +export_sql ds=ymt main=order fmt=xlsx sql=SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN ? AND ? AND `order_info`.type = ? args=[2025-11-01 00:00:00 2025-11-30 23:59:59 1] final_sql=SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN '2025-11-01 00:00:00' AND '2025-11-30 23:59:59' AND `order_info`.type = 1 +sql=EXPLAIN SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN ? AND ? AND `order_info`.type = ? args=[2025-11-01 00:00:00 2025-11-30 23:59:59 1] +{"bytes":85,"duration_ms":530,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:46+08:00"} +{"bytes":2972,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:46+08:00"} +{"bytes":2973,"duration_ms":244,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:46+08:00"} +job_id=241 sql=SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN ? AND ? AND `order_info`.type = ? args=[2025-11-01 00:00:00 2025-11-30 23:59:59 1] +{"args":["2025-11-01 00:00:00","2025-11-30 23:59:59",1],"event":"export_sql_execute","final_sql":"SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN '2025-11-01 00:00:00' AND '2025-11-30 23:59:59' AND `order_info`.type = 1","job_id":241,"level":"INFO","sql":"SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN ? AND ? AND `order_info`.type = ?","ts":"2025-12-09T17:16:46+08:00"} +export_sql_execute job_id=241 final_sql=SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN '2025-11-01 00:00:00' AND '2025-11-30 23:59:59' AND `order_info`.type = 1 +{"event":"progress_update","job_id":241,"level":"INFO","total_rows":0,"ts":"2025-12-09T17:16:47+08:00"} +job_id=241 sql=INSERT INTO export_job_files (job_id, storage_uri, row_count, size_bytes, created_at, updated_at) VALUES (?,?,?,?,?,?) args=[241 storage/export_job_241_20251209171647.xlsx 74 20215 2025-12-09 17:16:47.437147 +0800 CST m=+408.639736668 2025-12-09 17:16:47.437147 +0800 CST m=+408.639736793] +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:47+08:00"} +{"bytes":2976,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:48+08:00"} +{"bytes":5428,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:49+08:00"} +{"bytes":650,"duration_ms":193,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:49+08:00"} +{"bytes":2976,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:49+08:00"} +{"bytes":2976,"duration_ms":271,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:50+08:00"} +{"bytes":2976,"duration_ms":313,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:51+08:00"} +{"bytes":2976,"duration_ms":271,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:52+08:00"} +{"bytes":2976,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:53+08:00"} +{"bytes":2976,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:54+08:00"} +{"bytes":2976,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:55+08:00"} +{"bytes":2976,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:16:56+08:00"} +{"bytes":9873,"duration_ms":0,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:18:47+08:00"} +{"bytes":2379,"duration_ms":50,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:18:47+08:00"} +{"bytes":1104,"duration_ms":106,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:18:56+08:00"} +{"bytes":856,"duration_ms":99,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:18:56+08:00"} +{"event":"export_filters_debug","filters":{"create_time_between":["2025-11-01 00:00:00","2025-11-30 23:59:59"],"type_eq":1},"has_creator_in":true,"has_merchant_id_in":true,"level":"INFO","ts":"2025-12-09T17:18:59+08:00"} +{"args":["2025-11-01 00:00:00","2025-11-30 23:59:59",1],"datasource":"ymt","event":"export_sql","file_format":"xlsx","final_sql":"SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN '2025-11-01 00:00:00' AND '2025-11-30 23:59:59' AND `order_info`.type = 1","level":"INFO","main_table":"order","sql":"SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN ? AND ? AND `order_info`.type = ?","ts":"2025-12-09T17:18:59+08:00"} +export_sql ds=ymt main=order fmt=xlsx sql=SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN ? AND ? AND `order_info`.type = ? args=[2025-11-01 00:00:00 2025-11-30 23:59:59 1] final_sql=SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN '2025-11-01 00:00:00' AND '2025-11-30 23:59:59' AND `order_info`.type = 1 +sql=EXPLAIN SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN ? AND ? AND `order_info`.type = ? args=[2025-11-01 00:00:00 2025-11-30 23:59:59 1] +{"bytes":85,"duration_ms":583,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:00+08:00"} +{"bytes":2969,"duration_ms":244,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:00+08:00"} +job_id=242 sql=SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN ? AND ? AND `order_info`.type = ? args=[2025-11-01 00:00:00 2025-11-30 23:59:59 1] +{"args":["2025-11-01 00:00:00","2025-11-30 23:59:59",1],"event":"export_sql_execute","final_sql":"SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN '2025-11-01 00:00:00' AND '2025-11-30 23:59:59' AND `order_info`.type = 1","job_id":242,"level":"INFO","sql":"SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN ? AND ? AND `order_info`.type = ?","ts":"2025-12-09T17:19:00+08:00"} +export_sql_execute job_id=242 final_sql=SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN '2025-11-01 00:00:00' AND '2025-11-30 23:59:59' AND `order_info`.type = 1 +{"event":"progress_update","job_id":242,"level":"INFO","total_rows":0,"ts":"2025-12-09T17:19:01+08:00"} +{"bytes":2970,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:01+08:00"} +job_id=242 sql=INSERT INTO export_job_files (job_id, storage_uri, row_count, size_bytes, created_at, updated_at) VALUES (?,?,?,?,?,?) args=[242 storage/export_job_242_20251209171901.xlsx 74 20215 2025-12-09 17:19:01.484583 +0800 CST m=+542.688402043 2025-12-09 17:19:01.484583 +0800 CST m=+542.688402126] +{"bytes":2973,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:02+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:03+08:00"} +{"bytes":2973,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:04+08:00"} +{"bytes":2973,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:05+08:00"} +{"bytes":2973,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:06+08:00"} +{"bytes":2973,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:07+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:08+08:00"} +{"bytes":2973,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:09+08:00"} +{"bytes":2973,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:10+08:00"} +{"bytes":2973,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:11+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:12+08:00"} +{"bytes":2973,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:13+08:00"} +{"bytes":2973,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:14+08:00"} +{"bytes":2973,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:15+08:00"} +{"bytes":2973,"duration_ms":245,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:16+08:00"} +{"bytes":2973,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:17+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:18+08:00"} +{"bytes":2973,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:19+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:20+08:00"} +{"bytes":2973,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:21+08:00"} +{"bytes":2973,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:22+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:23+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:24+08:00"} +{"bytes":2973,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:25+08:00"} +{"bytes":2973,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:26+08:00"} +{"bytes":2973,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:27+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:28+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:29+08:00"} +{"bytes":2973,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:30+08:00"} +{"bytes":2973,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:31+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:32+08:00"} +{"bytes":2973,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:33+08:00"} +{"bytes":2973,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:34+08:00"} +{"bytes":2973,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:35+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:36+08:00"} +{"bytes":2973,"duration_ms":290,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:37+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:38+08:00"} +{"bytes":2973,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:39+08:00"} +{"bytes":2973,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:40+08:00"} +{"bytes":2973,"duration_ms":246,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:41+08:00"} +{"bytes":2973,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:42+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:43+08:00"} +{"bytes":2973,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:44+08:00"} +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:45+08:00"} +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:46+08:00"} +{"bytes":2973,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:47+08:00"} +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:48+08:00"} +{"bytes":2973,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:49+08:00"} +{"bytes":2973,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:50+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:51+08:00"} +{"bytes":2973,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:52+08:00"} +{"bytes":2973,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:53+08:00"} +{"bytes":2973,"duration_ms":246,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:54+08:00"} +{"bytes":2973,"duration_ms":272,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:55+08:00"} +{"bytes":2973,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:56+08:00"} +{"bytes":2973,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:57+08:00"} +{"bytes":2973,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:58+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:19:59+08:00"} +{"bytes":2973,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:00+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:01+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:02+08:00"} +{"bytes":2973,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:03+08:00"} +{"bytes":2973,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:04+08:00"} +{"bytes":2973,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:05+08:00"} +{"bytes":2973,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:06+08:00"} +{"bytes":2973,"duration_ms":243,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:07+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:08+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:09+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:10+08:00"} +{"bytes":2973,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:11+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:12+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:13+08:00"} +{"bytes":2973,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:14+08:00"} +{"bytes":2973,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:15+08:00"} +{"bytes":2973,"duration_ms":239,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:16+08:00"} +{"bytes":2973,"duration_ms":243,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:17+08:00"} +{"bytes":2973,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:18+08:00"} +{"bytes":2973,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:19+08:00"} +{"bytes":2973,"duration_ms":244,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:20+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:21+08:00"} +{"bytes":2973,"duration_ms":269,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:22+08:00"} +{"bytes":2973,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:23+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:24+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:25+08:00"} +{"bytes":2973,"duration_ms":244,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:26+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:27+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:28+08:00"} +{"bytes":2973,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:29+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:30+08:00"} +{"bytes":2973,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:31+08:00"} +{"bytes":2973,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:32+08:00"} +{"bytes":2973,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:33+08:00"} +{"bytes":2973,"duration_ms":245,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:34+08:00"} +{"bytes":2973,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:35+08:00"} +{"bytes":2973,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:36+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:37+08:00"} +{"bytes":2973,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:38+08:00"} +{"bytes":2973,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:39+08:00"} +{"bytes":2973,"duration_ms":275,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:40+08:00"} +{"bytes":2973,"duration_ms":246,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:41+08:00"} +{"bytes":2973,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:42+08:00"} +{"bytes":2973,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:43+08:00"} +{"bytes":2973,"duration_ms":278,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:44+08:00"} +{"bytes":2973,"duration_ms":285,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:45+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:46+08:00"} +{"bytes":2973,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:47+08:00"} +{"bytes":2973,"duration_ms":283,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:48+08:00"} +{"bytes":2973,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:49+08:00"} +{"bytes":2973,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:50+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:51+08:00"} +{"bytes":2973,"duration_ms":282,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:52+08:00"} +{"bytes":2973,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:53+08:00"} +{"bytes":2973,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:54+08:00"} +{"bytes":2973,"duration_ms":275,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:55+08:00"} +{"bytes":2973,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:56+08:00"} +{"bytes":2973,"duration_ms":278,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:57+08:00"} +{"bytes":2973,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:58+08:00"} +{"bytes":2973,"duration_ms":271,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:20:59+08:00"} +{"bytes":2973,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:00+08:00"} +{"bytes":2973,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:01+08:00"} +{"bytes":2973,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:02+08:00"} +{"bytes":2973,"duration_ms":245,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:03+08:00"} +{"bytes":2973,"duration_ms":245,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:04+08:00"} +{"bytes":2973,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:05+08:00"} +{"bytes":2973,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:06+08:00"} +{"bytes":2973,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:07+08:00"} +{"bytes":2973,"duration_ms":334,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:08+08:00"} +{"bytes":2973,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:09+08:00"} +{"bytes":2973,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:10+08:00"} +{"bytes":9873,"duration_ms":0,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:44+08:00"} +{"bytes":2379,"duration_ms":58,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:44+08:00"} +{"bytes":2973,"duration_ms":246,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:47+08:00"} +{"bytes":2973,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:48+08:00"} +{"bytes":1104,"duration_ms":99,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:49+08:00"} +{"bytes":856,"duration_ms":99,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:49+08:00"} +{"event":"export_filters_debug","filters":{"create_time_between":["2025-11-01 00:00:00","2025-11-30 23:59:59"],"merchant_id_in":[1,2,3],"type_eq":1},"has_creator_in":true,"has_merchant_id_in":true,"level":"INFO","ts":"2025-12-09T17:21:51+08:00"} +{"args":["2025-11-01 00:00:00","2025-11-30 23:59:59",1],"datasource":"ymt","event":"export_sql","file_format":"xlsx","final_sql":"SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN '2025-11-01 00:00:00' AND '2025-11-30 23:59:59' AND `order_info`.type = 1","level":"INFO","main_table":"order","sql":"SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN ? AND ? AND `order_info`.type = ?","ts":"2025-12-09T17:21:51+08:00"} +export_sql ds=ymt main=order fmt=xlsx sql=SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN ? AND ? AND `order_info`.type = ? args=[2025-11-01 00:00:00 2025-11-30 23:59:59 1] final_sql=SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN '2025-11-01 00:00:00' AND '2025-11-30 23:59:59' AND `order_info`.type = 1 +sql=EXPLAIN SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN ? AND ? AND `order_info`.type = ? args=[2025-11-01 00:00:00 2025-11-30 23:59:59 1] +{"args":[[1,2,3],1,"2025-11-01 00:00:00","2025-11-16 00:00:00"],"error":"sql: converting argument $1 type: unsupported type []interface {}, a slice of interface","event":"count_fast_error","level":"ERROR","sql":"SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `merchant_id` = ? AND `type` = ? AND `create_time` BETWEEN ? AND ?","ts":"2025-12-09T17:21:51+08:00"} +count_fast_error sql=SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `merchant_id` = ? AND `type` = ? AND `create_time` BETWEEN ? AND ? args=[[1 2 3] 1 2025-11-01 00:00:00 2025-11-16 00:00:00] err=sql: converting argument $1 type: unsupported type []interface {}, a slice of interface +{"args":["2025-11-16 00:00:00","2025-11-30 23:59:59",[1,2,3],1],"error":"sql: converting argument $3 type: unsupported type []interface {}, a slice of interface","event":"count_fast_error","level":"ERROR","sql":"SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `create_time` BETWEEN ? AND ? AND `merchant_id` = ? AND `type` = ?","ts":"2025-12-09T17:21:51+08:00"} +count_fast_error sql=SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `create_time` BETWEEN ? AND ? AND `merchant_id` = ? AND `type` = ? args=[2025-11-16 00:00:00 2025-11-30 23:59:59 [1 2 3] 1] err=sql: converting argument $3 type: unsupported type []interface {}, a slice of interface +{"bytes":85,"duration_ms":312,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:51+08:00"} +{"bytes":2964,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:51+08:00"} +{"bytes":2965,"duration_ms":221,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:52+08:00"} +{"args":[[1,2,3],"2025-11-01 00:00:00","2025-11-16 00:00:00",1],"error":"sql: converting argument $1 type: unsupported type []interface {}, a slice of interface","event":"count_fast_error","level":"ERROR","sql":"SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `merchant_id` = ? AND `create_time` BETWEEN ? AND ? AND `type` = ?","ts":"2025-12-09T17:21:52+08:00"} +count_fast_error sql=SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `merchant_id` = ? AND `create_time` BETWEEN ? AND ? AND `type` = ? args=[[1 2 3] 2025-11-01 00:00:00 2025-11-16 00:00:00 1] err=sql: converting argument $1 type: unsupported type []interface {}, a slice of interface +{"args":[1,[1,2,3],"2025-11-16 00:00:00","2025-11-30 23:59:59"],"error":"sql: converting argument $2 type: unsupported type []interface {}, a slice of interface","event":"count_fast_error","level":"ERROR","sql":"SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `type` = ? AND `merchant_id` = ? AND `create_time` BETWEEN ? AND ?","ts":"2025-12-09T17:21:52+08:00"} +count_fast_error sql=SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `type` = ? AND `merchant_id` = ? AND `create_time` BETWEEN ? AND ? args=[1 [1 2 3] 2025-11-16 00:00:00 2025-11-30 23:59:59] err=sql: converting argument $2 type: unsupported type []interface {}, a slice of interface +job_id=243 sql=SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN ? AND ? AND `order_info`.type = ? args=[2025-11-01 00:00:00 2025-11-30 23:59:59 1] +{"args":["2025-11-01 00:00:00","2025-11-30 23:59:59",1],"event":"export_sql_execute","final_sql":"SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN '2025-11-01 00:00:00' AND '2025-11-30 23:59:59' AND `order_info`.type = 1","job_id":243,"level":"INFO","sql":"SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN ? AND ? AND `order_info`.type = ?","ts":"2025-12-09T17:21:52+08:00"} +export_sql_execute job_id=243 final_sql=SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN '2025-11-01 00:00:00' AND '2025-11-30 23:59:59' AND `order_info`.type = 1 +{"args":[1,[1,2,3],"2025-11-01 00:00:00","2025-11-16 00:00:00"],"error":"sql: converting argument $2 type: unsupported type []interface {}, a slice of interface","event":"count_fast_error","level":"ERROR","sql":"SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `type` = ? AND `merchant_id` = ? AND `create_time` BETWEEN ? AND ?","ts":"2025-12-09T17:21:52+08:00"} +count_fast_error sql=SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `type` = ? AND `merchant_id` = ? AND `create_time` BETWEEN ? AND ? args=[1 [1 2 3] 2025-11-01 00:00:00 2025-11-16 00:00:00] err=sql: converting argument $2 type: unsupported type []interface {}, a slice of interface +{"args":[1,[1,2,3],"2025-11-16 00:00:00","2025-11-30 23:59:59"],"error":"sql: converting argument $2 type: unsupported type []interface {}, a slice of interface","event":"count_fast_error","level":"ERROR","sql":"SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `type` = ? AND `merchant_id` = ? AND `create_time` BETWEEN ? AND ?","ts":"2025-12-09T17:21:52+08:00"} +count_fast_error sql=SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `type` = ? AND `merchant_id` = ? AND `create_time` BETWEEN ? AND ? args=[1 [1 2 3] 2025-11-16 00:00:00 2025-11-30 23:59:59] err=sql: converting argument $2 type: unsupported type []interface {}, a slice of interface +{"bytes":2965,"duration_ms":224,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:52+08:00"} +{"event":"progress_update","job_id":243,"level":"INFO","total_rows":0,"ts":"2025-12-09T17:21:52+08:00"} +job_id=243 sql=INSERT INTO export_job_files (job_id, storage_uri, row_count, size_bytes, created_at, updated_at) VALUES (?,?,?,?,?,?) args=[243 storage/export_job_243_20251209172152.xlsx 74 20215 2025-12-09 17:21:52.751241 +0800 CST m=+713.956631293 2025-12-09 17:21:52.751241 +0800 CST m=+713.956631376] +{"bytes":2965,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:53+08:00"} +{"bytes":2970,"duration_ms":304,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:54+08:00"} +{"bytes":2970,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:55+08:00"} +{"bytes":5428,"duration_ms":193,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:55+08:00"} +{"bytes":650,"duration_ms":198,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:55+08:00"} +{"bytes":2970,"duration_ms":244,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:56+08:00"} +{"bytes":2970,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:57+08:00"} +{"bytes":2970,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:58+08:00"} +{"bytes":2970,"duration_ms":244,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:21:59+08:00"} +{"bytes":2970,"duration_ms":295,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:00+08:00"} +{"bytes":2970,"duration_ms":241,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:01+08:00"} +{"bytes":2970,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:02+08:00"} +{"bytes":2970,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:03+08:00"} +{"bytes":2970,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:04+08:00"} +{"bytes":2970,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:05+08:00"} +{"bytes":2970,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:06+08:00"} +{"bytes":2970,"duration_ms":298,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:06+08:00"} +{"bytes":2970,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:07+08:00"} +{"bytes":2970,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:07+08:00"} +{"bytes":9873,"duration_ms":0,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:07+08:00"} +{"bytes":2379,"duration_ms":50,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:07+08:00"} +{"bytes":2970,"duration_ms":246,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:08+08:00"} +{"bytes":2970,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:09+08:00"} +{"bytes":2970,"duration_ms":503,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:10+08:00"} +{"bytes":2970,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:11+08:00"} +{"bytes":1104,"duration_ms":99,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:11+08:00"} +{"bytes":856,"duration_ms":100,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:11+08:00"} +{"bytes":2970,"duration_ms":242,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:12+08:00"} +{"bytes":2970,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:13+08:00"} +{"event":"export_filters_debug","filters":{"create_time_between":["2025-11-01 00:00:00","2025-11-30 23:59:59"],"merchant_id_in":[1,2,3],"type_eq":1},"has_creator_in":true,"has_merchant_id_in":true,"level":"INFO","ts":"2025-12-09T17:22:13+08:00"} +{"args":["2025-11-01 00:00:00","2025-11-30 23:59:59",1],"datasource":"ymt","event":"export_sql","file_format":"xlsx","final_sql":"SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN '2025-11-01 00:00:00' AND '2025-11-30 23:59:59' AND `order_info`.type = 1","level":"INFO","main_table":"order","sql":"SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN ? AND ? AND `order_info`.type = ?","ts":"2025-12-09T17:22:13+08:00"} +export_sql ds=ymt main=order fmt=xlsx sql=SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN ? AND ? AND `order_info`.type = ? args=[2025-11-01 00:00:00 2025-11-30 23:59:59 1] final_sql=SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN '2025-11-01 00:00:00' AND '2025-11-30 23:59:59' AND `order_info`.type = 1 +sql=EXPLAIN SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN ? AND ? AND `order_info`.type = ? args=[2025-11-01 00:00:00 2025-11-30 23:59:59 1] +{"args":[[1,2,3],1,"2025-11-01 00:00:00","2025-11-16 00:00:00"],"error":"sql: converting argument $1 type: unsupported type []interface {}, a slice of interface","event":"count_fast_error","level":"ERROR","sql":"SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `merchant_id` = ? AND `type` = ? AND `create_time` BETWEEN ? AND ?","ts":"2025-12-09T17:22:13+08:00"} +count_fast_error sql=SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `merchant_id` = ? AND `type` = ? AND `create_time` BETWEEN ? AND ? args=[[1 2 3] 1 2025-11-01 00:00:00 2025-11-16 00:00:00] err=sql: converting argument $1 type: unsupported type []interface {}, a slice of interface +{"args":[[1,2,3],1,"2025-11-16 00:00:00","2025-11-30 23:59:59"],"error":"sql: converting argument $1 type: unsupported type []interface {}, a slice of interface","event":"count_fast_error","level":"ERROR","sql":"SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `merchant_id` = ? AND `type` = ? AND `create_time` BETWEEN ? AND ?","ts":"2025-12-09T17:22:13+08:00"} +count_fast_error sql=SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `merchant_id` = ? AND `type` = ? AND `create_time` BETWEEN ? AND ? args=[[1 2 3] 1 2025-11-16 00:00:00 2025-11-30 23:59:59] err=sql: converting argument $1 type: unsupported type []interface {}, a slice of interface +{"bytes":85,"duration_ms":312,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:13+08:00"} +{"bytes":2961,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:13+08:00"} +{"args":[1,[1,2,3],"2025-11-01 00:00:00","2025-11-16 00:00:00"],"error":"sql: converting argument $2 type: unsupported type []interface {}, a slice of interface","event":"count_fast_error","level":"ERROR","sql":"SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `type` = ? AND `merchant_id` = ? AND `create_time` BETWEEN ? AND ?","ts":"2025-12-09T17:22:14+08:00"} +count_fast_error sql=SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `type` = ? AND `merchant_id` = ? AND `create_time` BETWEEN ? AND ? args=[1 [1 2 3] 2025-11-01 00:00:00 2025-11-16 00:00:00] err=sql: converting argument $2 type: unsupported type []interface {}, a slice of interface +{"args":[1,[1,2,3],"2025-11-16 00:00:00","2025-11-30 23:59:59"],"error":"sql: converting argument $2 type: unsupported type []interface {}, a slice of interface","event":"count_fast_error","level":"ERROR","sql":"SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `type` = ? AND `merchant_id` = ? AND `create_time` BETWEEN ? AND ?","ts":"2025-12-09T17:22:14+08:00"} +count_fast_error sql=SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `type` = ? AND `merchant_id` = ? AND `create_time` BETWEEN ? AND ? args=[1 [1 2 3] 2025-11-16 00:00:00 2025-11-30 23:59:59] err=sql: converting argument $2 type: unsupported type []interface {}, a slice of interface +job_id=244 sql=SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN ? AND ? AND `order_info`.type = ? args=[2025-11-01 00:00:00 2025-11-30 23:59:59 1] +{"args":["2025-11-01 00:00:00","2025-11-30 23:59:59",1],"event":"export_sql_execute","final_sql":"SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN '2025-11-01 00:00:00' AND '2025-11-30 23:59:59' AND `order_info`.type = 1","job_id":244,"level":"INFO","sql":"SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN ? AND ? AND `order_info`.type = ?","ts":"2025-12-09T17:22:14+08:00"} +export_sql_execute job_id=244 final_sql=SELECT `order_info`.order_no AS `order.order_number`,`order_info`.key_code AS `order.key`,CASE `order_info`.type WHEN 1 THEN '红包订单' WHEN 2 THEN '直充卡密订单' WHEN 3 THEN '立减金订单' ELSE '' END AS `order.type`,CASE `order_info`.status WHEN 1 THEN '待充值' WHEN 2 THEN '充值中' WHEN 3 THEN '充值成功' WHEN 4 THEN '充值失败' WHEN 5 THEN '已过期' WHEN 6 THEN '已作废' WHEN 7 THEN '已核销' WHEN 8 THEN '核销失败' WHEN 9 THEN '订单重置' WHEN 10 THEN '卡单' ELSE '' END AS `order.status`,`order_info`.contract_price AS `order.contract_price`,`order_info`.official_price AS `order.official_price`,`order_info`.merchant_name AS `order.merchant_name`,`order_info`.activity_name AS `order.activity_name`,`order_info`.goods_name AS `order.goods_name`,`order_info`.num AS `order.num`,CASE `order_info`.pay_status WHEN 1 THEN '待支付' WHEN 2 THEN '支付中' WHEN 3 THEN '已支付' WHEN 4 THEN '取消支付' WHEN 5 THEN '退款中' WHEN 6 THEN '退款成功' ELSE '' END AS `order.pay_status`,`order_info`.pay_price AS `order.pay_amount`,`order_info`.pay_time AS `order.pay_time`,`order_info`.discount_amount AS `order.discount_amount`,`order_info`.supplier_product_name AS `order.supplier_product_name`,`order_info`.key_batch_name AS `order.key_batch_id`,`order_info`.cost_price AS `order.cost_price`,`order_info`.success_num AS `order.success_num`,`order_info`.create_time AS `order.create_time`,`order_info`.channel AS `order.channel`,`order_info`.out_order_no AS `order.out_trade_no`,`order_info`.recharge_suc_time AS `order.recharge_suc_time`,`merchant`.subject AS `merchant.subject`,`activity`.activity_no AS `activity.activity_no`,CASE `activity`.settlement_type WHEN 1 THEN '发放结算' WHEN 2 THEN '打开结算' WHEN 3 THEN '领用结算' WHEN 4 THEN '核销结算' ELSE '' END AS `activity.settlement_type`,`order_cash`.account AS `order_cash.account`,`order_cash`.receive_name AS `order_cash.receive_name`,`order_cash`.app_id AS `order_cash.app_id`,CASE `order_cash`.receive_status WHEN 0 THEN '待领取' WHEN 1 THEN '领取中' WHEN 2 THEN '领取成功' WHEN 3 THEN '领取失败' ELSE '' END AS `order_cash.receive_status`,`order_cash`.receive_time AS `order_cash.receive_time`,`order_cash`.trade_no AS `order_cash.trade_no`,`order_cash`.wechat_detail_id AS `order_cash.wechat_detail_id` FROM `order_info` LEFT JOIN `order_cash` ON `order_cash`.order_no = `order_info`.order_no LEFT JOIN `merchant` ON `merchant`.id = `order_info`.merchant_id LEFT JOIN `activity` ON `activity`.id = `order_info`.activity_id WHERE `order_info`.create_time BETWEEN '2025-11-01 00:00:00' AND '2025-11-30 23:59:59' AND `order_info`.type = 1 +{"bytes":2962,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:14+08:00"} +{"args":[1,[1,2,3],"2025-11-01 00:00:00","2025-11-16 00:00:00"],"error":"sql: converting argument $2 type: unsupported type []interface {}, a slice of interface","event":"count_fast_error","level":"ERROR","sql":"SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `type` = ? AND `merchant_id` = ? AND `create_time` BETWEEN ? AND ?","ts":"2025-12-09T17:22:14+08:00"} +count_fast_error sql=SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `type` = ? AND `merchant_id` = ? AND `create_time` BETWEEN ? AND ? args=[1 [1 2 3] 2025-11-01 00:00:00 2025-11-16 00:00:00] err=sql: converting argument $2 type: unsupported type []interface {}, a slice of interface +{"args":[1,[1,2,3],"2025-11-16 00:00:00","2025-11-30 23:59:59"],"error":"sql: converting argument $2 type: unsupported type []interface {}, a slice of interface","event":"count_fast_error","level":"ERROR","sql":"SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `type` = ? AND `merchant_id` = ? AND `create_time` BETWEEN ? AND ?","ts":"2025-12-09T17:22:14+08:00"} +count_fast_error sql=SELECT COUNT(1) FROM `order_info` WHERE 1=1 AND `type` = ? AND `merchant_id` = ? AND `create_time` BETWEEN ? AND ? args=[1 [1 2 3] 2025-11-16 00:00:00 2025-11-30 23:59:59] err=sql: converting argument $2 type: unsupported type []interface {}, a slice of interface +{"event":"progress_update","job_id":244,"level":"INFO","total_rows":0,"ts":"2025-12-09T17:22:14+08:00"} +job_id=244 sql=INSERT INTO export_job_files (job_id, storage_uri, row_count, size_bytes, created_at, updated_at) VALUES (?,?,?,?,?,?) args=[244 storage/export_job_244_20251209172214.xlsx 74 20215 2025-12-09 17:22:14.56551 +0800 CST m=+735.771100543 2025-12-09 17:22:14.56551 +0800 CST m=+735.771100668] +{"bytes":2962,"duration_ms":198,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:14+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:15+08:00"} +{"bytes":2967,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:15+08:00"} +{"bytes":2967,"duration_ms":203,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:16+08:00"} +{"bytes":2967,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:16+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:17+08:00"} +{"bytes":2967,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:17+08:00"} +{"bytes":2967,"duration_ms":196,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:18+08:00"} +{"bytes":2967,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:18+08:00"} +{"bytes":2967,"duration_ms":195,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:19+08:00"} +{"bytes":2967,"duration_ms":245,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:19+08:00"} +{"bytes":2967,"duration_ms":203,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:20+08:00"} +{"bytes":5428,"duration_ms":197,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:20+08:00"} +{"bytes":650,"duration_ms":196,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:20+08:00"} +{"bytes":2967,"duration_ms":246,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:20+08:00"} +{"bytes":2967,"duration_ms":218,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:21+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:21+08:00"} +{"bytes":2967,"duration_ms":215,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:22+08:00"} +{"bytes":2967,"duration_ms":228,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:22+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:23+08:00"} +{"bytes":2967,"duration_ms":221,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:23+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:24+08:00"} +{"bytes":2967,"duration_ms":215,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:24+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:25+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:25+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:26+08:00"} +{"bytes":2967,"duration_ms":238,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:26+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:27+08:00"} +{"bytes":2967,"duration_ms":232,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:27+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:28+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:28+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:29+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:29+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:30+08:00"} +{"bytes":2967,"duration_ms":202,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:30+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:31+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:31+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:32+08:00"} +{"bytes":2967,"duration_ms":200,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:32+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:33+08:00"} +{"bytes":2967,"duration_ms":213,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:33+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:34+08:00"} +{"bytes":2967,"duration_ms":212,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:34+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:35+08:00"} +{"bytes":2967,"duration_ms":214,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:35+08:00"} +{"bytes":2967,"duration_ms":218,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:36+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:36+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:37+08:00"} +{"bytes":2967,"duration_ms":214,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:37+08:00"} +{"bytes":2967,"duration_ms":203,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:38+08:00"} +{"bytes":2967,"duration_ms":201,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:38+08:00"} +{"bytes":2967,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:39+08:00"} +{"bytes":2967,"duration_ms":231,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:39+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:40+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:40+08:00"} +{"bytes":2967,"duration_ms":214,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:41+08:00"} +{"bytes":2967,"duration_ms":203,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:41+08:00"} +{"bytes":2967,"duration_ms":214,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:42+08:00"} +{"bytes":2967,"duration_ms":219,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:42+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:43+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:43+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:44+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:44+08:00"} +{"bytes":2967,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:45+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:45+08:00"} +{"bytes":2967,"duration_ms":221,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:46+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:46+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:47+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:47+08:00"} +{"bytes":2967,"duration_ms":234,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:48+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:48+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:49+08:00"} +{"bytes":2967,"duration_ms":213,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:49+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:50+08:00"} +{"bytes":2967,"duration_ms":217,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:50+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:51+08:00"} +{"bytes":2967,"duration_ms":223,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:51+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:52+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:52+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:53+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:53+08:00"} +{"bytes":2967,"duration_ms":245,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:54+08:00"} +{"bytes":2967,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:54+08:00"} +{"bytes":2967,"duration_ms":284,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:55+08:00"} +{"bytes":2967,"duration_ms":223,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:55+08:00"} +{"bytes":2967,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:56+08:00"} +{"bytes":2967,"duration_ms":217,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:56+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:57+08:00"} +{"bytes":2967,"duration_ms":229,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:57+08:00"} +{"bytes":2967,"duration_ms":224,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:58+08:00"} +{"bytes":2967,"duration_ms":236,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:58+08:00"} +{"bytes":2967,"duration_ms":221,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:59+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:22:59+08:00"} +{"bytes":2967,"duration_ms":235,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:00+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:00+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:01+08:00"} +{"bytes":2967,"duration_ms":218,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:01+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:02+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:02+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:03+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:03+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:04+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:04+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:05+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:05+08:00"} +{"bytes":2967,"duration_ms":203,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:06+08:00"} +{"bytes":2967,"duration_ms":216,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:06+08:00"} +{"bytes":2967,"duration_ms":200,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:07+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:07+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:08+08:00"} +{"bytes":2967,"duration_ms":222,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:08+08:00"} +{"bytes":2967,"duration_ms":203,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:09+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:09+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:10+08:00"} +{"bytes":2967,"duration_ms":213,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:10+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:11+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:11+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:12+08:00"} +{"bytes":2967,"duration_ms":212,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:12+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:13+08:00"} +{"bytes":2967,"duration_ms":214,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:13+08:00"} +{"bytes":2967,"duration_ms":227,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:14+08:00"} +{"bytes":2967,"duration_ms":275,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:15+08:00"} +{"bytes":2967,"duration_ms":666,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:15+08:00"} +{"bytes":2967,"duration_ms":269,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:15+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:16+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:16+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:17+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:17+08:00"} +{"bytes":2967,"duration_ms":213,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:18+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:18+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:19+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:19+08:00"} +{"bytes":2967,"duration_ms":217,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:20+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:20+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:21+08:00"} +{"bytes":2967,"duration_ms":277,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:21+08:00"} +{"bytes":2967,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:22+08:00"} +{"bytes":2967,"duration_ms":889,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:22+08:00"} +{"bytes":2967,"duration_ms":272,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:23+08:00"} +{"bytes":2967,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:23+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:24+08:00"} +{"bytes":2967,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:24+08:00"} +{"bytes":2967,"duration_ms":275,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:25+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:25+08:00"} +{"bytes":2967,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:26+08:00"} +{"bytes":2967,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:26+08:00"} +{"bytes":2967,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:27+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:27+08:00"} +{"bytes":2967,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:28+08:00"} +{"bytes":2967,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:28+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:29+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:29+08:00"} +{"bytes":2967,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:30+08:00"} +{"bytes":2967,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:30+08:00"} +{"bytes":2967,"duration_ms":275,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:31+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:31+08:00"} +{"bytes":2967,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:32+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:32+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:33+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:33+08:00"} +{"bytes":2967,"duration_ms":203,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:34+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:34+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:35+08:00"} +{"bytes":2967,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:35+08:00"} +{"bytes":2967,"duration_ms":223,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:36+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:36+08:00"} +{"bytes":2967,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:37+08:00"} +{"bytes":2967,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:37+08:00"} +{"bytes":2967,"duration_ms":215,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:38+08:00"} +{"bytes":2967,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:38+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:39+08:00"} +{"bytes":2967,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:39+08:00"} +{"bytes":2967,"duration_ms":214,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:40+08:00"} +{"bytes":2967,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:40+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:41+08:00"} +{"bytes":2967,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:41+08:00"} +{"bytes":2967,"duration_ms":216,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:42+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:42+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:43+08:00"} +{"bytes":2967,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:43+08:00"} +{"bytes":2967,"duration_ms":203,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:44+08:00"} +{"bytes":2967,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:44+08:00"} +{"bytes":2967,"duration_ms":219,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:45+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:45+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:46+08:00"} +{"bytes":2967,"duration_ms":276,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:46+08:00"} +{"bytes":2967,"duration_ms":227,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:47+08:00"} +{"bytes":2967,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:47+08:00"} +{"bytes":2967,"duration_ms":201,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:48+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:48+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:49+08:00"} +{"bytes":2967,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:49+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:50+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:50+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:51+08:00"} +{"bytes":2967,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:51+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:52+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:52+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:53+08:00"} +{"bytes":2967,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:53+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:54+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:54+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:55+08:00"} +{"bytes":2967,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:55+08:00"} +{"bytes":2967,"duration_ms":200,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:56+08:00"} +{"bytes":2967,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:56+08:00"} +{"bytes":2967,"duration_ms":203,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:57+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:57+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:58+08:00"} +{"bytes":2967,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:58+08:00"} +{"bytes":2967,"duration_ms":213,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:59+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:23:59+08:00"} +{"bytes":2967,"duration_ms":273,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:00+08:00"} +{"bytes":2967,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:00+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:01+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:01+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:02+08:00"} +{"bytes":2967,"duration_ms":279,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:02+08:00"} +{"bytes":2967,"duration_ms":213,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:03+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:03+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:04+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:04+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:05+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:05+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:06+08:00"} +{"bytes":2967,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:06+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:07+08:00"} +{"bytes":2967,"duration_ms":271,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:07+08:00"} +{"bytes":2967,"duration_ms":203,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:08+08:00"} +{"bytes":2967,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:08+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:09+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:09+08:00"} +{"bytes":2967,"duration_ms":216,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:10+08:00"} +{"bytes":2967,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:10+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:11+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:11+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:12+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:12+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:13+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:13+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:14+08:00"} +{"bytes":2967,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:14+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:15+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:15+08:00"} +{"bytes":2967,"duration_ms":201,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:16+08:00"} +{"bytes":2967,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:16+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:17+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:17+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:18+08:00"} +{"bytes":2967,"duration_ms":355,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:18+08:00"} +{"bytes":2967,"duration_ms":203,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:19+08:00"} +{"bytes":2967,"duration_ms":272,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:19+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:20+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:20+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:21+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:21+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:22+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:22+08:00"} +{"bytes":2967,"duration_ms":213,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:23+08:00"} +{"bytes":2967,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:23+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:24+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:24+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:25+08:00"} +{"bytes":2967,"duration_ms":278,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:25+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:26+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:26+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:27+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:27+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:28+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:28+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:29+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:29+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:30+08:00"} +{"bytes":2967,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:30+08:00"} +{"bytes":2967,"duration_ms":231,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:31+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:31+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:32+08:00"} +{"bytes":2967,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:32+08:00"} +{"bytes":2967,"duration_ms":215,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:33+08:00"} +{"bytes":2967,"duration_ms":283,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:33+08:00"} +{"bytes":2967,"duration_ms":201,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:34+08:00"} +{"bytes":2967,"duration_ms":345,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:34+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:35+08:00"} +{"bytes":2967,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:35+08:00"} +{"bytes":2967,"duration_ms":212,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:36+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:36+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:37+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:37+08:00"} +{"bytes":2967,"duration_ms":217,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:38+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:38+08:00"} +{"bytes":2967,"duration_ms":213,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:39+08:00"} +{"bytes":2967,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:39+08:00"} +{"bytes":2967,"duration_ms":222,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:40+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:40+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:41+08:00"} +{"bytes":2967,"duration_ms":279,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:41+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:42+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:42+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:43+08:00"} +{"bytes":2967,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:43+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:44+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:44+08:00"} +{"bytes":2967,"duration_ms":212,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:45+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:45+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:46+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:46+08:00"} +{"bytes":2967,"duration_ms":202,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:47+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:47+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:48+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:48+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:49+08:00"} +{"bytes":2967,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:49+08:00"} +{"bytes":2967,"duration_ms":213,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:50+08:00"} +{"bytes":2967,"duration_ms":280,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:50+08:00"} +{"bytes":2967,"duration_ms":231,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:51+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:51+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:52+08:00"} +{"bytes":2967,"duration_ms":274,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:52+08:00"} +{"bytes":2967,"duration_ms":242,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:53+08:00"} +{"bytes":2967,"duration_ms":276,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:53+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:54+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:54+08:00"} +{"bytes":2967,"duration_ms":213,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:55+08:00"} +{"bytes":2967,"duration_ms":381,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:55+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:56+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:56+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:57+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:57+08:00"} +{"bytes":2967,"duration_ms":212,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:58+08:00"} +{"bytes":2967,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:58+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:59+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:24:59+08:00"} +{"bytes":2967,"duration_ms":225,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:00+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:00+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:01+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:01+08:00"} +{"bytes":2967,"duration_ms":231,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:02+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:02+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:03+08:00"} +{"bytes":2967,"duration_ms":279,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:03+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:04+08:00"} +{"bytes":2967,"duration_ms":274,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:04+08:00"} +{"bytes":2967,"duration_ms":230,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:05+08:00"} +{"bytes":2967,"duration_ms":274,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:05+08:00"} +{"bytes":2967,"duration_ms":213,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:06+08:00"} +{"bytes":2967,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:06+08:00"} +{"bytes":2967,"duration_ms":296,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:07+08:00"} +{"bytes":2967,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:07+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:08+08:00"} +{"bytes":2967,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:08+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:09+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:09+08:00"} +{"bytes":2967,"duration_ms":214,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:10+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:10+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:11+08:00"} +{"bytes":2967,"duration_ms":269,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:11+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:12+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:12+08:00"} +{"bytes":2967,"duration_ms":203,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:13+08:00"} +{"bytes":2967,"duration_ms":279,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:13+08:00"} +{"bytes":2967,"duration_ms":214,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:14+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:14+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:15+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:15+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:16+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:16+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:17+08:00"} +{"bytes":2967,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:17+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:18+08:00"} +{"bytes":2967,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:18+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:19+08:00"} +{"bytes":2967,"duration_ms":278,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:19+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:20+08:00"} +{"bytes":2967,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:20+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:21+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:21+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:22+08:00"} +{"bytes":2967,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:22+08:00"} +{"bytes":2967,"duration_ms":232,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:23+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:23+08:00"} +{"bytes":2967,"duration_ms":214,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:24+08:00"} +{"bytes":2967,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:24+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:25+08:00"} +{"bytes":2967,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:25+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:26+08:00"} +{"bytes":2967,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:26+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:27+08:00"} +{"bytes":2967,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:27+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:28+08:00"} +{"bytes":2967,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:28+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:29+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:29+08:00"} +{"bytes":2967,"duration_ms":214,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:30+08:00"} +{"bytes":2967,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:30+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:31+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:31+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:32+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:32+08:00"} +{"bytes":2967,"duration_ms":213,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:33+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:33+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:34+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:34+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:35+08:00"} +{"bytes":2967,"duration_ms":305,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:35+08:00"} +{"bytes":2967,"duration_ms":213,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:36+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:36+08:00"} +{"bytes":2967,"duration_ms":244,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:37+08:00"} +{"bytes":2967,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:37+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:38+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:38+08:00"} +{"bytes":2967,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:39+08:00"} +{"bytes":2967,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:39+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:40+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:40+08:00"} +{"bytes":2967,"duration_ms":215,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:41+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:41+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:42+08:00"} +{"bytes":2967,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:42+08:00"} +{"bytes":2967,"duration_ms":218,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:43+08:00"} +{"bytes":2967,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:43+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:44+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:44+08:00"} +{"bytes":2967,"duration_ms":213,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:45+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:45+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:46+08:00"} +{"bytes":2967,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:46+08:00"} +{"bytes":2967,"duration_ms":212,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:47+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:47+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:48+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:48+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:49+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:49+08:00"} +{"bytes":2967,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:50+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:50+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:51+08:00"} +{"bytes":2967,"duration_ms":308,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:51+08:00"} +{"bytes":2967,"duration_ms":216,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:52+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:52+08:00"} +{"bytes":2967,"duration_ms":212,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:53+08:00"} +{"bytes":2967,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:53+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:54+08:00"} +{"bytes":2967,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:54+08:00"} +{"bytes":2967,"duration_ms":220,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:55+08:00"} +{"bytes":2967,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:55+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:56+08:00"} +{"bytes":2967,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:56+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:57+08:00"} +{"bytes":2967,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:57+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:58+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:58+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:59+08:00"} +{"bytes":2967,"duration_ms":279,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:25:59+08:00"} +{"bytes":2967,"duration_ms":225,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:00+08:00"} +{"bytes":2967,"duration_ms":269,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:00+08:00"} +{"bytes":2967,"duration_ms":217,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:01+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:01+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:02+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:02+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:03+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:03+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:04+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:04+08:00"} +{"bytes":2967,"duration_ms":238,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:05+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:05+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:06+08:00"} +{"bytes":2967,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:06+08:00"} +{"bytes":2967,"duration_ms":213,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:07+08:00"} +{"bytes":2967,"duration_ms":304,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:07+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:08+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:08+08:00"} +{"bytes":2967,"duration_ms":218,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:09+08:00"} +{"bytes":2967,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:09+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:10+08:00"} +{"bytes":2967,"duration_ms":280,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:10+08:00"} +{"bytes":2967,"duration_ms":212,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:11+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:11+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:12+08:00"} +{"bytes":2967,"duration_ms":273,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:12+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:13+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:13+08:00"} +{"bytes":2967,"duration_ms":221,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:14+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:14+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:15+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:15+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:16+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:16+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:17+08:00"} +{"bytes":2967,"duration_ms":272,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:17+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:18+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:18+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:19+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:19+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:20+08:00"} +{"bytes":2967,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:20+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:21+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:21+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:22+08:00"} +{"bytes":2967,"duration_ms":271,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:22+08:00"} +{"bytes":2967,"duration_ms":213,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:23+08:00"} +{"bytes":2967,"duration_ms":284,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:23+08:00"} +{"bytes":2967,"duration_ms":218,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:24+08:00"} +{"bytes":2967,"duration_ms":276,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:24+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:25+08:00"} +{"bytes":2967,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:25+08:00"} +{"bytes":2967,"duration_ms":218,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:26+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:26+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:27+08:00"} +{"bytes":2967,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:27+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:28+08:00"} +{"bytes":2967,"duration_ms":276,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:28+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:29+08:00"} +{"bytes":2967,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:29+08:00"} +{"bytes":2967,"duration_ms":282,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:30+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:30+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:31+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:31+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:32+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:32+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:33+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:33+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:34+08:00"} +{"bytes":2967,"duration_ms":272,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:34+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:35+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:35+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:36+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:36+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:37+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:37+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:38+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:38+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:39+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:39+08:00"} +{"bytes":2967,"duration_ms":241,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:40+08:00"} +{"bytes":2967,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:40+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:41+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:41+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:42+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:42+08:00"} +{"bytes":2967,"duration_ms":206,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:43+08:00"} +{"bytes":2967,"duration_ms":279,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:43+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:44+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:44+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:45+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:45+08:00"} +{"bytes":2967,"duration_ms":214,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:46+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:46+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:47+08:00"} +{"bytes":2967,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:47+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:48+08:00"} +{"bytes":2967,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:48+08:00"} +{"bytes":2967,"duration_ms":219,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:49+08:00"} +{"bytes":2967,"duration_ms":292,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:49+08:00"} +{"bytes":2967,"duration_ms":230,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:50+08:00"} +{"bytes":2967,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:50+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:51+08:00"} +{"bytes":2967,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:51+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:52+08:00"} +{"bytes":2967,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:52+08:00"} +{"bytes":2967,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:53+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:53+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:54+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:54+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:55+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:55+08:00"} +{"bytes":2967,"duration_ms":231,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:56+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:56+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:57+08:00"} +{"bytes":2967,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:57+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:58+08:00"} +{"bytes":2967,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:58+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:59+08:00"} +{"bytes":2967,"duration_ms":402,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:26:59+08:00"} +{"bytes":2967,"duration_ms":276,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:00+08:00"} +{"bytes":2967,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:00+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:01+08:00"} +{"bytes":2967,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:01+08:00"} +{"bytes":2967,"duration_ms":203,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:02+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:02+08:00"} +{"bytes":2967,"duration_ms":203,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:03+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:03+08:00"} +{"bytes":2967,"duration_ms":201,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:04+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:04+08:00"} +{"bytes":2967,"duration_ms":214,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:05+08:00"} +{"bytes":2967,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:05+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:06+08:00"} +{"bytes":2967,"duration_ms":246,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:07+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:07+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:08+08:00"} +{"bytes":2967,"duration_ms":200,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:08+08:00"} +{"bytes":2967,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:09+08:00"} +{"bytes":2967,"duration_ms":234,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:09+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:10+08:00"} +{"bytes":2967,"duration_ms":226,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:10+08:00"} +{"bytes":2967,"duration_ms":276,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:11+08:00"} +{"bytes":2967,"duration_ms":202,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:11+08:00"} +{"bytes":2967,"duration_ms":273,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:12+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:12+08:00"} +{"bytes":2967,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:13+08:00"} +{"bytes":2967,"duration_ms":220,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:13+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:14+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:14+08:00"} +{"bytes":2967,"duration_ms":269,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:15+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:15+08:00"} +{"bytes":2967,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:16+08:00"} +{"bytes":2967,"duration_ms":222,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:16+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:17+08:00"} +{"bytes":2967,"duration_ms":201,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:17+08:00"} +{"bytes":2967,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:18+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:18+08:00"} +{"bytes":2967,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:19+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:19+08:00"} +{"bytes":2967,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:20+08:00"} +{"bytes":2967,"duration_ms":203,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:20+08:00"} +{"bytes":2967,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:21+08:00"} +{"bytes":2967,"duration_ms":201,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:21+08:00"} +{"bytes":2967,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:22+08:00"} +{"bytes":2967,"duration_ms":200,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:22+08:00"} +{"bytes":2967,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:23+08:00"} +{"bytes":2967,"duration_ms":198,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:23+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:24+08:00"} +{"bytes":2967,"duration_ms":201,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:24+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:25+08:00"} +{"bytes":2967,"duration_ms":214,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:25+08:00"} +{"bytes":2967,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:26+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:26+08:00"} +{"bytes":2967,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:27+08:00"} +{"bytes":2967,"duration_ms":200,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:27+08:00"} +{"bytes":2967,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:28+08:00"} +{"bytes":2967,"duration_ms":196,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:28+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:29+08:00"} +{"bytes":2967,"duration_ms":201,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:29+08:00"} +{"bytes":2967,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:30+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:30+08:00"} +{"bytes":2967,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:31+08:00"} +{"bytes":2967,"duration_ms":199,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:31+08:00"} +{"bytes":2967,"duration_ms":310,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:32+08:00"} +{"bytes":2967,"duration_ms":199,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:32+08:00"} +{"bytes":2967,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:33+08:00"} +{"bytes":2967,"duration_ms":216,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:33+08:00"} +{"bytes":2967,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:34+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:34+08:00"} +{"bytes":2967,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:35+08:00"} +{"bytes":2967,"duration_ms":292,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:36+08:00"} +{"bytes":2967,"duration_ms":1049,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:36+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:36+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:37+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:37+08:00"} +{"bytes":2967,"duration_ms":277,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:38+08:00"} +{"bytes":2967,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:38+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:39+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:39+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:40+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:40+08:00"} +{"bytes":2967,"duration_ms":288,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:41+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:41+08:00"} +{"bytes":2967,"duration_ms":274,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:42+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:42+08:00"} +{"bytes":2967,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:43+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:43+08:00"} +{"bytes":2967,"duration_ms":277,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:44+08:00"} +{"bytes":2967,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:44+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:45+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:45+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:46+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:46+08:00"} +{"bytes":2967,"duration_ms":301,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:47+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:47+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:48+08:00"} +{"bytes":2967,"duration_ms":209,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:48+08:00"} +{"bytes":2967,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:49+08:00"} +{"bytes":2967,"duration_ms":219,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:49+08:00"} +{"bytes":2967,"duration_ms":298,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:50+08:00"} +{"bytes":2967,"duration_ms":203,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:50+08:00"} +{"bytes":2967,"duration_ms":273,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:51+08:00"} +{"bytes":2967,"duration_ms":211,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:51+08:00"} +{"bytes":2967,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:52+08:00"} +{"bytes":2967,"duration_ms":200,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:52+08:00"} +{"bytes":2967,"duration_ms":273,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:53+08:00"} +{"bytes":2967,"duration_ms":219,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:53+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:54+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:54+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:55+08:00"} +{"bytes":2967,"duration_ms":199,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:55+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:56+08:00"} +{"bytes":2967,"duration_ms":207,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:56+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:57+08:00"} +{"bytes":2967,"duration_ms":203,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:57+08:00"} +{"bytes":2967,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:58+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:58+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:59+08:00"} +{"bytes":2967,"duration_ms":204,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:27:59+08:00"} +{"bytes":2967,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:00+08:00"} +{"bytes":2967,"duration_ms":205,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:00+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:01+08:00"} +{"bytes":2967,"duration_ms":214,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:01+08:00"} +{"bytes":2967,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:02+08:00"} +{"bytes":2967,"duration_ms":208,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:02+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:03+08:00"} +{"bytes":2967,"duration_ms":213,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:03+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:04+08:00"} +{"bytes":2967,"duration_ms":210,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:04+08:00"} +{"bytes":2967,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:05+08:00"} +{"bytes":2967,"duration_ms":203,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:05+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:06+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:07+08:00"} +{"bytes":2967,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:08+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:09+08:00"} +{"bytes":2967,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:10+08:00"} +{"bytes":2967,"duration_ms":273,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:11+08:00"} +{"bytes":2967,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:12+08:00"} +{"bytes":2967,"duration_ms":271,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:13+08:00"} +{"bytes":2967,"duration_ms":273,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:14+08:00"} +{"bytes":2967,"duration_ms":269,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:15+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:16+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:17+08:00"} +{"bytes":2967,"duration_ms":295,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:18+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:19+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:20+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:21+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:22+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:23+08:00"} +{"bytes":2967,"duration_ms":273,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:24+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:25+08:00"} +{"bytes":2967,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:26+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:27+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:28+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:29+08:00"} +{"bytes":2967,"duration_ms":269,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:30+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:31+08:00"} +{"bytes":2967,"duration_ms":297,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:32+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:33+08:00"} +{"bytes":2967,"duration_ms":990,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:34+08:00"} +{"bytes":2967,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:35+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:36+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:37+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:38+08:00"} +{"bytes":2967,"duration_ms":281,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:39+08:00"} +{"bytes":2967,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:40+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:41+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:42+08:00"} +{"bytes":2967,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:43+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:44+08:00"} +{"bytes":2967,"duration_ms":279,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:45+08:00"} +{"bytes":2967,"duration_ms":284,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:46+08:00"} +{"bytes":2967,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:47+08:00"} +{"bytes":2967,"duration_ms":280,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:48+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:49+08:00"} +{"bytes":2967,"duration_ms":295,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:50+08:00"} +{"bytes":2967,"duration_ms":291,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:51+08:00"} +{"bytes":2967,"duration_ms":305,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:52+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:52+08:00"} +{"bytes":2967,"duration_ms":294,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:53+08:00"} +{"bytes":2967,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:54+08:00"} +{"bytes":2967,"duration_ms":281,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:28:55+08:00"} +{"bytes":2967,"duration_ms":287,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:00+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:00+08:00"} +{"bytes":2967,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:01+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:02+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:03+08:00"} +{"bytes":2967,"duration_ms":278,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:04+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:05+08:00"} +{"bytes":2967,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:06+08:00"} +{"bytes":2967,"duration_ms":291,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:07+08:00"} +{"bytes":2967,"duration_ms":269,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:08+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:09+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:10+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:11+08:00"} +{"bytes":2967,"duration_ms":274,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:12+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:13+08:00"} +{"bytes":2967,"duration_ms":283,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:14+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:15+08:00"} +{"bytes":2967,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:16+08:00"} +{"bytes":2967,"duration_ms":306,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:17+08:00"} +{"bytes":2967,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:18+08:00"} +{"bytes":2967,"duration_ms":274,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:19+08:00"} +{"bytes":2967,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:20+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:21+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:22+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:23+08:00"} +{"bytes":2967,"duration_ms":279,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:24+08:00"} +{"bytes":2967,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:25+08:00"} +{"bytes":2967,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:26+08:00"} +{"bytes":2967,"duration_ms":269,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:27+08:00"} +{"bytes":2967,"duration_ms":272,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:28+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:29+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:30+08:00"} +{"bytes":2967,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:31+08:00"} +{"bytes":2967,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:32+08:00"} +{"bytes":2967,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:33+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:34+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:35+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:36+08:00"} +{"bytes":2967,"duration_ms":286,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:37+08:00"} +{"bytes":2967,"duration_ms":269,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:38+08:00"} +{"bytes":2967,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:39+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:40+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:41+08:00"} +{"bytes":2967,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:42+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:43+08:00"} +{"bytes":2967,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:44+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:45+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:46+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:47+08:00"} +{"bytes":2967,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:48+08:00"} +{"bytes":2967,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:49+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:50+08:00"} +{"bytes":2967,"duration_ms":289,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:51+08:00"} +{"bytes":2967,"duration_ms":287,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:52+08:00"} +{"bytes":2967,"duration_ms":670,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:54+08:00"} +{"bytes":2967,"duration_ms":335,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:54+08:00"} +{"bytes":2967,"duration_ms":350,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:55+08:00"} +{"bytes":2967,"duration_ms":329,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:56+08:00"} +{"bytes":2967,"duration_ms":311,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:57+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:58+08:00"} +{"bytes":2967,"duration_ms":308,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:29:59+08:00"} +{"bytes":2967,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:00+08:00"} +{"bytes":2967,"duration_ms":269,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:01+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:02+08:00"} +{"bytes":2967,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:03+08:00"} +{"bytes":2967,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:04+08:00"} +{"bytes":2967,"duration_ms":281,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:05+08:00"} +{"bytes":2967,"duration_ms":291,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:06+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:07+08:00"} +{"bytes":2967,"duration_ms":310,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:08+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:09+08:00"} +{"bytes":2967,"duration_ms":323,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:10+08:00"} +{"bytes":2967,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:11+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:12+08:00"} +{"bytes":2967,"duration_ms":311,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:13+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:14+08:00"} +{"bytes":2967,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:15+08:00"} +{"bytes":2967,"duration_ms":317,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:16+08:00"} +{"bytes":2967,"duration_ms":342,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:17+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:18+08:00"} +{"bytes":2967,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:19+08:00"} +{"bytes":2967,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:20+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:21+08:00"} +{"bytes":2967,"duration_ms":299,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:22+08:00"} +{"bytes":2967,"duration_ms":465,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:23+08:00"} +{"bytes":2967,"duration_ms":456,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:24+08:00"} +{"bytes":2967,"duration_ms":304,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:25+08:00"} +{"bytes":2967,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:26+08:00"} +{"bytes":2967,"duration_ms":275,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:27+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:28+08:00"} +{"bytes":2967,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:29+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:30+08:00"} +{"bytes":2967,"duration_ms":290,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:31+08:00"} +{"bytes":2967,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:32+08:00"} +{"bytes":2967,"duration_ms":269,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:33+08:00"} +{"bytes":2967,"duration_ms":351,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:34+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:35+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:36+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:37+08:00"} +{"bytes":2967,"duration_ms":277,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:38+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:39+08:00"} +{"bytes":2967,"duration_ms":316,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:40+08:00"} +{"bytes":2967,"duration_ms":277,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:41+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:42+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:43+08:00"} +{"bytes":2967,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:44+08:00"} +{"bytes":2967,"duration_ms":280,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:45+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:46+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:47+08:00"} +{"bytes":2967,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:48+08:00"} +{"bytes":2967,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:49+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:50+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:51+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:52+08:00"} +{"bytes":2967,"duration_ms":283,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:53+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:54+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:55+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:56+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:57+08:00"} +{"bytes":2967,"duration_ms":302,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:58+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:30:59+08:00"} +{"bytes":2967,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:00+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:01+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:02+08:00"} +{"bytes":2967,"duration_ms":269,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:03+08:00"} +{"bytes":2967,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:04+08:00"} +{"bytes":2967,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:05+08:00"} +{"bytes":2967,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:06+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:07+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:08+08:00"} +{"bytes":2967,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:09+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:10+08:00"} +{"bytes":2967,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:11+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:12+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:13+08:00"} +{"bytes":2967,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:14+08:00"} +{"bytes":2967,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:15+08:00"} +{"bytes":2967,"duration_ms":273,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:16+08:00"} +{"bytes":2967,"duration_ms":271,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:17+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:18+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:19+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:20+08:00"} +{"bytes":2967,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:21+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:22+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:23+08:00"} +{"bytes":2967,"duration_ms":272,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:24+08:00"} +{"bytes":2967,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:25+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:26+08:00"} +{"bytes":2967,"duration_ms":279,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:27+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:28+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:29+08:00"} +{"bytes":2967,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:30+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:31+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:32+08:00"} +{"bytes":2967,"duration_ms":278,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:33+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:34+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:35+08:00"} +{"bytes":2967,"duration_ms":269,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:36+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:37+08:00"} +{"bytes":2967,"duration_ms":315,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:38+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:39+08:00"} +{"bytes":2967,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:40+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:41+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:42+08:00"} +{"bytes":2967,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:43+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:44+08:00"} +{"bytes":2967,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:45+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:46+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:47+08:00"} +{"bytes":2967,"duration_ms":298,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:48+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:49+08:00"} +{"bytes":2967,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:50+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:51+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:52+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:53+08:00"} +{"bytes":2967,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:54+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:55+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:56+08:00"} +{"bytes":2967,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:57+08:00"} +{"bytes":2967,"duration_ms":256,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:58+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:31:59+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:00+08:00"} +{"bytes":2967,"duration_ms":266,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:01+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:02+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:03+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:04+08:00"} +{"bytes":2967,"duration_ms":280,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:05+08:00"} +{"bytes":2967,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:06+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:07+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:08+08:00"} +{"bytes":2967,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:09+08:00"} +{"bytes":2967,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:10+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:11+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:13+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:14+08:00"} +{"bytes":2967,"duration_ms":273,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:15+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:16+08:00"} +{"bytes":2967,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:17+08:00"} +{"bytes":2967,"duration_ms":272,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:18+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:19+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:20+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:21+08:00"} +{"bytes":2967,"duration_ms":274,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:22+08:00"} +{"bytes":2967,"duration_ms":271,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:23+08:00"} +{"bytes":2967,"duration_ms":274,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:24+08:00"} +{"bytes":2967,"duration_ms":279,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:25+08:00"} +{"bytes":2967,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:26+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:27+08:00"} +{"bytes":2967,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:28+08:00"} +{"bytes":2967,"duration_ms":272,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:29+08:00"} +{"bytes":2967,"duration_ms":296,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:29+08:00"} +{"bytes":2967,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:30+08:00"} +{"bytes":2967,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:31+08:00"} +{"bytes":2967,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:32+08:00"} +{"bytes":2967,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:33+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:34+08:00"} +{"bytes":2967,"duration_ms":265,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:35+08:00"} +{"bytes":2967,"duration_ms":262,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:36+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:37+08:00"} +{"bytes":2967,"duration_ms":240,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:38+08:00"} +{"bytes":2967,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:39+08:00"} +{"bytes":2967,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:40+08:00"} +{"bytes":2967,"duration_ms":272,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:41+08:00"} +{"bytes":2967,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:42+08:00"} +{"bytes":2967,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:43+08:00"} +{"bytes":2967,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:44+08:00"} +{"bytes":2967,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:45+08:00"} +{"bytes":2967,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:46+08:00"} +{"bytes":2967,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:47+08:00"} +{"bytes":2967,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:48+08:00"} +{"bytes":2967,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:49+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:50+08:00"} +{"bytes":2967,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:52+08:00"} +{"bytes":2967,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:53+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:54+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:55+08:00"} +{"bytes":2967,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:56+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:57+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:58+08:00"} +{"bytes":2967,"duration_ms":285,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:32:59+08:00"} +{"bytes":2967,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:00+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:01+08:00"} +{"bytes":2967,"duration_ms":260,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:02+08:00"} +{"bytes":2967,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:03+08:00"} +{"bytes":2967,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:04+08:00"} +{"bytes":2967,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:05+08:00"} +{"bytes":2967,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:06+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:07+08:00"} +{"bytes":2967,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:08+08:00"} +{"bytes":2967,"duration_ms":270,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:09+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:10+08:00"} +{"bytes":2967,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:11+08:00"} +{"bytes":2967,"duration_ms":255,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:12+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:13+08:00"} +{"bytes":2967,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:14+08:00"} +{"bytes":2967,"duration_ms":269,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:15+08:00"} +{"bytes":2967,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:16+08:00"} +{"bytes":2967,"duration_ms":264,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:17+08:00"} +{"bytes":2967,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:18+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:19+08:00"} +{"bytes":2967,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:20+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:21+08:00"} +{"bytes":2967,"duration_ms":246,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:22+08:00"} +{"bytes":2967,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:23+08:00"} +{"bytes":2967,"duration_ms":258,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:24+08:00"} +{"bytes":2967,"duration_ms":263,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:25+08:00"} +{"bytes":2967,"duration_ms":245,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:26+08:00"} +{"bytes":2967,"duration_ms":245,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:27+08:00"} +{"bytes":2967,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:28+08:00"} +{"bytes":2967,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:29+08:00"} +{"bytes":2967,"duration_ms":241,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:30+08:00"} +{"bytes":2967,"duration_ms":261,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:31+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:32+08:00"} +{"bytes":2967,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:33+08:00"} +{"bytes":2967,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:34+08:00"} +{"bytes":2967,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:35+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:36+08:00"} +{"bytes":2967,"duration_ms":244,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:37+08:00"} +{"bytes":2967,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:38+08:00"} +{"bytes":2967,"duration_ms":248,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:39+08:00"} +{"bytes":2967,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:40+08:00"} +{"bytes":2967,"duration_ms":254,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:41+08:00"} +{"bytes":2967,"duration_ms":267,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:42+08:00"} +{"bytes":2967,"duration_ms":259,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:43+08:00"} +{"bytes":2967,"duration_ms":252,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:44+08:00"} +{"bytes":2967,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:45+08:00"} +{"bytes":2967,"duration_ms":279,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:46+08:00"} +{"bytes":2967,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:47+08:00"} +{"bytes":2967,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:48+08:00"} +{"bytes":2967,"duration_ms":257,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:49+08:00"} +{"bytes":2967,"duration_ms":268,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:50+08:00"} +{"bytes":2967,"duration_ms":249,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:33:52+08:00"} +{"bytes":2967,"duration_ms":251,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:34:52+08:00"} +{"bytes":2967,"duration_ms":253,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:35:52+08:00"} +{"bytes":2967,"duration_ms":247,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:36:52+08:00"} +{"bytes":2967,"duration_ms":250,"kind":"access","level":"INFO","method":"","path":"","query":"","remote":"","status":200,"trace_id":"","ts":"2025-12-09T17:37:52+08:00"} +signal: killed diff --git a/tool.tar b/tool.tar deleted file mode 100644 index 8287ecf..0000000 Binary files a/tool.tar and /dev/null differ diff --git a/web/main.js b/web/main.js index 5c34041..9d565e0 100644 --- a/web/main.js +++ b/web/main.js @@ -12,10 +12,20 @@ const app = createApp({ const v = sp.get('userId') || sp.get('userid') || sp.get('user_id'); return v && String(v).trim() ? String(v).trim() : ''; }; + + const getMerchantId = () => { + const sp = new URLSearchParams(window.location.search || ''); + const v = sp.get('merchantId') || sp.get('merchantid') || sp.get('merchant_id'); + return v && String(v).trim() ? String(v).trim() : ''; + }; const qsUser = () => { const uid = getUserId(); - return uid ? ('?userId=' + encodeURIComponent(uid)) : ''; + const mid = getMerchantId(); + const parts = []; + if (uid) parts.push('userId=' + encodeURIComponent(uid)); + if (mid) parts.push('merchantId=' + encodeURIComponent(mid)); + return parts.length ? ('?' + parts.join('&')) : ''; }; const msg = (text, type = 'success') => ElementPlus.ElMessage({ message: text, type });